/* Reset & Base */
:root {
    --primary: #004583;
    --primary-gradient: linear-gradient(90deg, #004583 0%, #7ba3aa 100%);
    --secondary-gradient: linear-gradient(90deg, #004583 0%, #7ba3aa 100%);
    --dark-bg: #111827;
    --text-dark: #333333;
    --text-light: #666666;
    --bg-light: #f4f6f8;
    --white: #ffffff;
    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 16px;
    --shadow-soft: 0 5px 25px rgba(0, 0, 0, 0.03);
}

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

body {
    font-family: 'Poppins', sans-serif;
    background-color: #f8faff;
    /* Biraz daha mavimsi modern bir beyaz */
    color: var(--text-dark);
    line-height: 1.6;
    font-size: 14px;
    /* Fontu biraz büyütelim */
    font-weight: 400;
    /* Biraz daha dolgun font */
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.3s;
}

ul {
    list-style: none;
}

.container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 15px;
    width: 100%;
    /* Emin olmak için */
    box-sizing: border-box;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 18px;
    border-radius: var(--radius-sm);
    font-weight: 500;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    outline: none;
}

.btn-gradient {
    background: var(--primary-gradient);
    color: white;
    box-shadow: 0 3px 10px rgba(0, 69, 131, 0.2);
    padding: 8px 12px;
    font-size: 12px;
}

.btn-gradient:hover {
    transform: translateY(-1px);
    box-shadow: 0 5px 15px rgba(0, 69, 131, 0.3);
}

.btn-outline {
    background: transparent;
    border: 1px solid #ddd;
    color: var(--text-dark);
    padding: 7px 12px;
    font-size: 12px;
}

.btn-outline:hover {
    border-color: var(--text-dark);
}

.btn-orange-gradient {
    background: var(--secondary-gradient);
    color: white;
    padding: 12px 20px;
    border-radius: var(--radius-sm);
    font-weight: 500;
    font-size: 14px;
    box-shadow: 0 4px 15px rgba(0, 69, 131, 0.2);
    width: 100%;
    justify-content: space-between;
}

.btn-orange-gradient:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 69, 131, 0.3);
}

.btn-orange-gradient i {
    font-size: 12px;
}

.btn-orange-gradient-small {
    background: linear-gradient(90deg, #004583 0%, #0056a3 100%);
    color: white;
    padding: 10px 24px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 500;
    box-shadow: 0 3px 10px rgba(0, 69, 131, 0.2);
    min-width: 120px;
}

.btn-orange-gradient-small:hover {
    transform: scale(1.05);
}

.btn-outline-orange {
    border: 1px solid #004583;
    color: #004583;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 500;
    width: 100%;
    justify-content: center;
}

.btn-outline-orange:hover {
    background: #004583;
    color: white;
}

.btn-outline-orange i {
    margin-left: 6px;
}


/* Top Bar */
.top-bar {
    background-color: var(--white);
    padding: 8px 0;
    border-bottom: 1px solid #f0f0f0;
    font-size: 12px;
    color: #777;
    font-weight: 300;
    display: block;
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar-left,
.top-bar-right {
    display: flex;
    align-items: center;
    gap: 15px;
}

.top-bar i {
    margin-right: 5px;
    color: #004583;
}

.top-bar .divider {
    width: 1px;
    height: 12px;
    background-color: #eee;
}

.phone-link {
    font-weight: 500;
    color: #333;
}

.currency {
    font-weight: 500;
    color: #004583;
    background: #e6f0ff;
    padding: 2px 10px;
    border-radius: 4px;
    font-size: 11px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.opportunity {
    color: #004583;
    font-weight: 500;
}

/* Header */
.header {
    background-color: transparent;
    /* Arka planı kaldır, container'a vereceğiz */
    padding: 0;
    /* Padding'i container'a taşıyalım veya margin ile halledelim */
    position: relative;
    z-index: 100;
    box-shadow: none;
    /* Gölgeyi de container'a taşıyalım */
    margin-top: 15px;
    /* Topbar ile boşluk */
    margin-bottom: 15px;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: rgba(255, 255, 255, 0.9);
    /* Hafif transparanlık */
    backdrop-filter: blur(10px);
    /* Buzlu cam efekti */
    padding: 12px 30px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 69, 131, 0.05);
    /* Daha modern gölge */
    width: 100%;
    box-sizing: border-box;
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.header-left {
    display: flex;
    align-items: center;
    gap: 15px;
    /* flex: 1; KALDIRILDI - Sol tarafın genişlemesini engelle */
}

.logo img {
    height: 50px;
    display: block;
}

.navbar {
    flex: 1;
    /* Menü alanını genişlet */
    display: flex;
    justify-content: center;
    /* Menüyü ortala */
}

.navbar .nav-menu {
    display: flex;
    gap: 20px;
    /* Menü öğeleri arası boşluğu biraz artır */
}

.navbar a {
    font-weight: 600;
    color: #444;
    font-size: 12px;
    display: flex;
    align-items: center;
    gap: 4px;
    white-space: nowrap;
}

.navbar a:hover {
    color: #004583;
}

.navbar a:hover {
    color: #004583;
}

.navbar i {
    font-size: 10px;
    opacity: 0.6;
}

.badge-new {
    background-color: #004583;
    color: white;
    font-size: 9px;
    padding: 2px 6px;
    border-radius: 3px;
    position: absolute;
    top: -12px;
    right: 0;
    white-space: nowrap;
    font-weight: 500;
}

.has-dropdown {
    position: relative;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 8px;
    position: relative;
    z-index: 1001;
}

.header-right .btn,
.header-right .btn-gradient,
.header-right .btn-outline-header {
    position: relative;
    z-index: 1001;
    pointer-events: auto !important;
}

/* Header Cart Button - Modern Tasarım */
.header .header-cart-btn,
.header-cart-btn {
    position: relative !important;
    width: 44px !important;
    height: 44px !important;
    background: linear-gradient(145deg, #ffffff, #f0f4f8) !important;
    border: 1px solid #e2e8f0 !important;
    border-radius: 12px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    color: #004583 !important;
    text-decoration: none !important;
    margin-right: 12px !important;
    font-size: 18px !important;
    box-shadow: 0 2px 8px rgba(0, 69, 131, 0.08) !important;
    transition: all 0.3s ease !important;
}

.header .header-cart-btn:hover,
.header-cart-btn:hover {
    background: linear-gradient(145deg, #004583, #0056a8) !important;
    color: white !important;
    border-color: #004583 !important;
    box-shadow: 0 4px 15px rgba(0, 69, 131, 0.25) !important;
    transform: translateY(-1px) !important;
}

.header .header-cart-btn i,
.header-cart-btn i {
    font-size: 18px !important;
    line-height: 1 !important;
}

/* Ensure shopping bag icon displays correctly */
.header .header-cart-btn i.fa-bag-shopping::before,
.header-cart-btn i.fa-bag-shopping::before,
.header .header-cart-btn i.fa-shopping-bag::before,
.header-cart-btn i.fa-shopping-bag::before {
    content: "\f290" !important;
    /* Font Awesome bag-shopping unicode */
    font-family: "Font Awesome 6 Free" !important;
    font-weight: 900 !important;
}

/* Header Cart Count - Sabit Badge (Animasyonsuz) */
.header .header-cart-count,
.header-cart-count {
    position: absolute !important;
    top: -8px !important;
    right: -8px !important;
    background: linear-gradient(145deg, #ef4444, #dc2626) !important;
    color: white !important;
    font-size: 11px !important;
    font-weight: 700 !important;
    min-width: 20px !important;
    height: 20px !important;
    line-height: 20px !important;
    border-radius: 10px !important;
    text-align: center !important;
    border: 2px solid white !important;
    padding: 0 5px !important;
    box-sizing: border-box !important;
    box-shadow: 0 2px 6px rgba(239, 68, 68, 0.4) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    /* Animasyonları devre dışı bırak */
    animation: none !important;
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
}

/* Sepet badge animasyonlarını tamamen kaldır */
.header .header-cart-count::before,
.header .header-cart-count::after,
.header-cart-count::before,
.header-cart-count::after {
    display: none !important;
    animation: none !important;
    content: none !important;
}

@keyframes cartBadgePulse {
    /* Boş - animasyonu devre dışı bırak */
}

@keyframes pulse {
    /* Sadece WhatsApp butonu için */
}

/* Eski cart-btn stilleri (geriye uyumluluk) */
.cart-btn {
    position: relative;
    width: 44px;
    height: 44px;
    background: linear-gradient(145deg, #ffffff, #f0f4f8);
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #004583;
    text-decoration: none;
    margin-right: 12px;
    font-size: 18px;
    box-shadow: 0 2px 8px rgba(0, 69, 131, 0.08);
}

.cart-btn:hover {
    background: linear-gradient(145deg, #004583, #0056a8);
    color: white;
    border-color: #004583;
    box-shadow: 0 4px 15px rgba(0, 69, 131, 0.25);
    transform: translateY(-1px);
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background: linear-gradient(145deg, #ef4444, #dc2626);
    color: white;
    font-size: 11px;
    font-weight: 700;
    min-width: 20px;
    height: 20px;
    line-height: 16px;
    border-radius: 10px;
    text-align: center;
    border: 2px solid white;
    padding: 0 5px;
    box-sizing: border-box;
    box-shadow: 0 2px 6px rgba(239, 68, 68, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    /* Animasyonları devre dışı bırak */
    animation: none !important;
    transition: none !important;
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
}

.cart-count::before,
.cart-count::after {
    display: none !important;
    animation: none !important;
}

.icon-btn {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #eee;
    border-radius: 8px;
    color: #555;
    position: relative;
    transition: all 0.3s;
    font-size: 15px;
}

.icon-btn:hover {
    border-color: #004583;
    color: #004583;
}

.badge-count {
    position: absolute;
    top: -4px;
    right: -4px;
    background: #004583;
    color: white;
    font-size: 10px;
    width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-weight: 600;
}

.menu-toggle {
    display: none;
    font-size: 20px;
    cursor: pointer;
    color: #333;
}

/* Main Content */
.main-content {
    padding: 30px 0;
}

.main-content .container {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 25px;
    align-items: start;
    padding: 0;
    /* Container padding'i zaten var, burada sıfırlayalım */
}

/* Hero Slider Area */
.hero-area {
    background: var(--white);
    border-radius: 20px;
    /* Daha oval köşeler */
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.04);
    /* Daha derin ve modern gölge */
    overflow: hidden;
    position: relative;
    min-height: 380px;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(0, 0, 0, 0.02);
}

.hero-slider-container {
    flex: 1;
    position: relative;
    overflow: hidden;
}

.hero-slide {
    display: none;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    height: 100%;
}

.hero-slide.active {
    display: block;
    opacity: 1;
    animation: fadeIn 0.5s;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-slide-content {
    display: flex;
    flex-direction: row;
    /* Yan yana geri döndür */
    padding: 25px 35px;
    gap: 30px;
    align-items: center;
    text-align: left;
    height: 100%;
    justify-content: space-between;
}

.hero-image {
    flex: 0 0 240px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0;
}

.hero-image img {
    width: 100%;
    height: auto;
    object-fit: contain;
    background: transparent;
}

.hero-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

.hero-price-tag {
    color: #004583;
    font-weight: 500;
    font-size: 12px;
    margin-bottom: 4px;
}

.hero-text h1 {
    font-size: 24px;
    font-weight: 600;
    color: #222;
    margin-bottom: 8px;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

.hero-text p {
    color: #777;
    margin-bottom: 15px;
    font-size: 13px;
    line-height: 1.5;
    max-width: 100%;
}

/* 2x2 Grid for Features + Button */
.hero-features-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    width: 100%;
    justify-content: flex-start;
}

/* Hero Right Offer */
.hero-right-offer {
    flex: 0 0 320px;
    /* Genişletildi */
    margin-left: 15px;
    display: block !important;
    /* Görünürlüğü zorla */
}

.offer-card {
    background: linear-gradient(135deg, #004583 0%, #00284d 100%);
    border-radius: 12px;
    padding: 25px;
    color: #fff;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0, 69, 131, 0.3);
    position: relative;
    overflow: hidden;
}

.offer-card::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 100px;
    height: 100px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.offer-badge {
    display: inline-block;
    background: #fff;
    color: #004583;
    font-weight: 800;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 13px;
    margin-bottom: 15px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.offer-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 10px;
}

.offer-text {
    font-size: 13px;
    margin-bottom: 20px;
    line-height: 1.5;
    opacity: 0.9;
}

.countdown-timer {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
}

.timer-item {
    background: rgba(255, 255, 255, 0.2);
    padding: 8px;
    border-radius: 8px;
    width: 50px;
    display: flex;
    flex-direction: column;
}

.timer-item span {
    font-weight: 700;
    font-size: 18px;
}

.timer-item small {
    font-size: 10px;
    opacity: 0.8;
}

.btn-outline-white-offer {
    border: 2px solid #fff;
    color: #fff;
    padding: 10px 20px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: .3s;
}

.btn-outline-white-offer:hover {
    background: #fff;
    color: #004583;
}

@media (max-width: 992px) {
    .hero-right-offer {
        display: none !important;
    }
}

.h-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #fcfcfc;
    padding: 8px 12px;
    border-radius: 6px;
    transition: 0.3s;
    width: calc(50% - 5px);
    /* Keep features 50% width */
}

.h-feature:hover {
    background: #fff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
    transform: translateY(-2px);
}

.hf-icon {
    width: 32px;
    height: 32px;
    background-color: #e6f0ff;
    color: #004583;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    font-size: 14px;
    flex-shrink: 0;
}

.hf-text {
    display: flex;
    flex-direction: column;
}

.hf-text strong {
    font-size: 13px;
    color: #333;
    font-weight: 600;
}

.hf-text span {
    font-size: 11px;
    color: #888;
}

/* Place the button in the grid */
.hero-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin: 10px 0 0;
    width: auto !important;
    min-width: 0;
    padding: 10px 25px;
    flex-grow: 0;
    align-self: flex-start;
}

.hero-bottom-tabs {
    display: flex;
    background: #f8f9fa;
    padding: 8px 15px;
    gap: 8px;
    border-top: 1px solid #f0f0f0;
    position: relative;
}

.tab-item {
    flex: 1;
    text-align: center;
    padding: 10px 15px;
    border-radius: 6px;
    font-weight: 500;
    color: #777;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.3s;
    background: transparent;
}

.tab-item:hover {
    background: rgba(0, 69, 131, 0.05);
    color: #004583;
}

.tab-item.active {
    background: var(--white);
    color: #004583;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    font-weight: 600;
}

.tab-indicator {
    /* Optional: can be used for sliding underline effect if desired, 
       but buttons look better standalone as requested */
    display: none;
}

.hero-progress-bar {
    height: 4px;
    background: #eee;
    width: 100%;
    position: absolute;
    bottom: 0;
    left: 0;
}

.hero-progress-bar::after {
    content: '';
    display: block;
    height: 100%;
    width: 60%;
    background: #004583;
    border-top-right-radius: 4px;
    border-bottom-right-radius: 4px;
}

/* Sidebar Widgets */
.sidebar-widgets {
    display: flex;
    flex-direction: column;
    gap: 20px;
    height: 100%;
}

.widget {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(0, 0, 0, 0.02);
}

/* Wizard Widget */
.wizard-widget {
    background: #111827;
    padding: 0;
    min-height: 90px;
    background-image: url('https://images.unsplash.com/photo-1550751827-4bd374c3f58b?ixlib=rb-1.2.1&auto=format&fit=crop&w=600&q=80');
    background-size: cover;
    background-position: center;
    position: relative;
    flex: 1;
}

.wizard-widget::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.75);
    z-index: 1;
}

.wizard-widget .widget-content {
    position: relative;
    z-index: 2;
    padding: 15px 25px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    width: 100%;
}

.wizard-widget h3 {
    color: white;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 3px;
}

.wizard-widget p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 11px;
    margin-bottom: 12px;
    line-height: 1.4;
    max-width: 100%;
}

/* Sidebar Bottom Grid - For Pricing and Discount side-by-side */
.sidebar-bottom-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

/* Pricing Widget */
.pricing-widget {
    padding: 15px;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.w-header {
    margin-bottom: 10px;
}

.sub-title {
    font-size: 11px;
    color: #004583;
    font-weight: 600;
    display: block;
    margin-bottom: 3px;
}

.w-header h3 {
    font-size: 15px;
    color: #333;
    font-weight: 700;
}

.price-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex: 1;
}

.p-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 15px;
    background: #f8f9fa;
    border-radius: 8px;
    transition: 0.3s;
    white-space: nowrap;
    /* Prevent wrapping */
}

.p-item:hover {
    background: #fff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transform: translateX(3px);
}

.dot {
    display: inline-block;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    margin-right: 8px;
}

.dot.blue {
    background: #3b82f6;
}

.dot.red {
    background: #ef4444;
}

.dot.orange {
    background: #f97316;
}

.ext {
    font-weight: 600;
    font-size: 12px;
    color: #333;
    display: flex;
    align-items: center;
}

.price {
    font-weight: 600;
    color: #555;
    font-size: 13px;
}

/* Discount Widget */
.discount-widget {
    padding: 15px;
    background: #fff;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.d-content {
    position: relative;
    z-index: 2;
}

.d-content h3 {
    font-size: 15px;
    color: #333;
    font-weight: 700;
    margin-bottom: 8px;
    line-height: 1.2;
}

.big-discount {
    font-size: 24px;
    font-weight: 700;
    color: #004583;
    line-height: 1;
    margin-bottom: 2px;
    letter-spacing: -1px;
}

.discount-label {
    font-size: 11px;
    color: #888;
    display: block;
    margin-bottom: 10px;
}

.d-image {
    position: absolute;
    bottom: -10px;
    right: -10px;
    width: 80px;
    opacity: 0.1;
    transform: rotate(-15deg);
    z-index: 1;
}

.d-image img {
    width: 100%;
    border-radius: 10px;
}

/* Product Cards Section */
/* Showcase Products Section */
.showcase-products {
    padding: 70px 0;
    background: #f9fafb;
}

.showcase-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
}

.showcase-header h3 {
    font-size: 24px;
    font-weight: 700;
    color: #111827;
    white-space: nowrap;
    position: relative;
    padding: 0 10px;
}

.header-line {
    height: 2px;
    flex: 1;
    background: linear-gradient(90deg, transparent, #e5e7eb, transparent);
    max-width: 200px;
}

.showcase-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.showcase-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #f0f0f0;
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
    position: relative;
}

.showcase-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 69, 131, 0.08);
    border-color: rgba(0, 69, 131, 0.2);
}

.sc-image-wrapper {
    height: 180px;
    position: relative;
    overflow: hidden;
    background: #f4f6f8;
}

.sc-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.showcase-card:hover .sc-image-wrapper img {
    transform: scale(1.08);
}

.sc-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--primary);
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 4px;
    z-index: 2;
    text-transform: uppercase;
}

.sc-badge.new {
    background: #10b981;
}

.sc-badge.sale {
    background: #f59e0b;
}

.sc-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: 0.3s;
}

.showcase-card:hover .sc-overlay {
    opacity: 1;
}

.sc-action-btn {
    background: #fff;
    color: #111827;
    padding: 10px 20px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 600;
    transform: translateY(10px);
    transition: 0.3s;
}

.showcase-card:hover .sc-action-btn {
    transform: translateY(0);
}

.sc-action-btn:hover {
    background: var(--primary);
    color: #fff;
}

.sc-content {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.sc-top-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.sc-cat {
    font-size: 11px;
    font-weight: 600;
    color: #9ca3af;
    text-transform: uppercase;
}

.sc-stars {
    color: #f59e0b;
    font-size: 10px;
    letter-spacing: 1px;
}

.sc-content h4 {
    margin-bottom: 12px;
    line-height: 1.4;
}

.sc-content h4 a {
    color: #1f2937;
    font-size: 15px;
    font-weight: 700;
    transition: 0.2s;
}

.sc-content h4 a:hover {
    color: var(--primary);
}

.sc-features {
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.sc-features li {
    font-size: 12px;
    color: #6b7280;
    display: flex;
    align-items: center;
    gap: 8px;
}

.sc-features i {
    color: #10b981;
    font-size: 11px;
}

.sc-footer {
    margin-top: auto;
    padding-top: 15px;
    border-top: 1px solid #f3f4f6;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.sc-price-block {
    display: flex;
    flex-direction: column;
}

.sc-old-price {
    font-size: 11px;
    text-decoration: line-through;
    color: #9ca3af;
}

.sc-price {
    font-size: 16px;
    font-weight: 800;
    color: var(--primary);
}

.sc-cart-btn {
    width: auto;
    height: 32px;
    padding: 0 12px;
    border-radius: 6px;
    background: #f3f4f6;
    color: #4b5563;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 600;
    gap: 6px;
    transition: 0.3s;
}

.sc-cart-btn:hover {
    background: var(--primary);
    color: #fff;
}

@media (max-width: 1200px) {
    .showcase-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

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

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

    .header-line {
        display: none;
    }
}

/* Floating Help */
.help-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    align-items: center;
    gap: 15px;
    z-index: 1000;
    animation: helpFloat 3s ease-in-out infinite;
}

@keyframes helpFloat {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-5px);
    }
}

.help-text {
    background: white;
    padding: 12px 20px;
    border-radius: 50px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
    font-size: 13px;
    color: #333;
    font-weight: 500;
    position: relative;
    opacity: 0;
    transform: translateX(20px);
    transition: all 0.3s ease;
}

.help-float:hover .help-text {
    opacity: 1;
    transform: translateX(0);
}

.help-text::after {
    content: '';
    position: absolute;
    right: -6px;
    top: 50%;
    transform: translateY(-50%);
    border-width: 6px;
    border-style: solid;
    border-color: transparent transparent transparent white;
}

.help-icon {
    width: 55px;
    height: 55px;
    background: #25d366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    position: relative;
}

.help-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 50%;
    background: #25d366;
    animation: pulse 2s infinite;
    z-index: -1;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    100% {
        transform: scale(1.3);
        opacity: 0;
    }
}

.help-icon:hover {
    transform: scale(1.1);
    color: white;
    text-decoration: none;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

.help-icon:visited {
    color: white;
}

/* Responsive */
@media (max-width: 1200px) {
    .main-content .container {
        grid-template-columns: 1fr;
    }

    .hero-area {
        min-height: auto;
    }

    .hero-slide-content {
        padding: 30px;
    }

    .hero-right-offer {
        display: block !important;
        flex: 0 0 100% !important;
        margin-left: 0 !important;
        margin-top: 20px;
    }

    /* Mobil uyumluluk */
    .sidebar-widgets {
        display: grid;
        grid-template-columns: 1fr 1fr 1fr;
    }
}

@media (max-width: 992px) {
    .navbar {
        display: none;
    }

    .header-left {
        gap: 0;
    }

    .menu-toggle {
        display: block;
    }

    .hero-slide-content {
        flex-direction: column-reverse;
        text-align: center;
    }

    .hero-right-offer {
        display: block !important;
    }

    /* Tekrar görünür yap */
    .hero-features {
        text-align: left;
    }

    .hero-features-grid {
        grid-template-columns: 1fr;
    }

    .sidebar-widgets {
        grid-template-columns: 1fr 1fr;
    }

    .header-right .btn {
        display: none;
    }

    .sidebar-bottom-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .top-bar {
        display: none;
    }

    .sidebar-widgets {
        grid-template-columns: 1fr;
    }

    .hero-features {
        grid-template-columns: 1fr;
    }

    .help-float {
        display: none;
    }
}

/* Authentication Pages - Modern Split Design */
.auth-section {
    padding: 60px 0;
    background: #f8faff;
    min-height: calc(100vh - 200px);
    /* Adjust based on header/footer height */
    display: flex;
    align-items: center;
}

.wide-auth .container {
    max-width: 1100px;
}

.auth-box-split {
    display: flex;
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.05);
    min-height: 600px;
    border: 1px solid rgba(0, 0, 0, 0.02);
}

/* Left Side: Form */
.auth-form-side {
    flex: 1;
    padding: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.auth-header-left {
    margin-bottom: 35px;
}

.auth-header-left h2 {
    font-size: 28px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 10px;
}

.auth-header-left p {
    color: #6b7280;
    font-size: 15px;
}

/* Modern Input Styles */
.modern-form .form-group {
    margin-bottom: 20px;
}

.modern-form label {
    font-size: 13px;
    font-weight: 600;
    color: #374151;
    margin-bottom: 8px;
    display: block;
}

.input-wrapper {
    position: relative;
}

.input-icon-left {
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: #9ca3af;
    font-size: 16px;
    transition: 0.3s;
}

.form-input {
    width: 100%;
    padding: 14px 18px 14px 50px;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    font-size: 14px;
    color: #1f2937;
    background: #f9fafb;
    transition: all 0.3s ease;
    outline: none;
    font-family: inherit;
}

.form-input:focus {
    background: #fff;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(0, 69, 131, 0.05);
}

.form-input:focus+.input-icon-left {
    color: var(--primary);
}

.btn-primary-wide {
    width: 100%;
    padding: 16px;
    background: var(--primary);
    color: #fff;
    border: none;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
    box-shadow: 0 4px 12px rgba(0, 69, 131, 0.2);
}

.btn-primary-wide:hover {
    background: #003566;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 69, 131, 0.3);
}

.auth-footer-text {
    text-align: center;
    margin-top: 30px;
    font-size: 14px;
    color: #6b7280;
}

.auth-footer-text a {
    color: var(--primary);
    font-weight: 600;
}

/* Right Side: Banner */
.auth-banner-side {
    flex: 1;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
}

.banner-overlay {
    background: linear-gradient(135deg, rgba(0, 69, 131, 0.85) 0%, rgba(0, 30, 60, 0.9) 100%);
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 50px;
    backdrop-filter: blur(2px);
}

.banner-content {
    position: relative;
    z-index: 2;
    max-width: 400px;
    margin: 0 auto;
}

.banner-content h3 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 15px;
}

.banner-content p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 30px;
    opacity: 0.9;
}

.banner-features {
    text-align: left;
    display: inline-block;
    margin-bottom: 30px;
}

.banner-features li {
    margin-bottom: 12px;
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.banner-features li i {
    color: #4ade80;
}

.btn-outline-light {
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: #fff;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-outline-light:hover {
    background: #fff;
    color: var(--primary);
    border-color: #fff;
}

/* Responsive Auth */
@media (max-width: 992px) {
    .auth-box-split {
        flex-direction: column;
    }

    .auth-banner-side {
        display: none;
    }

    /* Hide banner on smaller screens */
    .auth-form-side {
        padding: 40px 20px;
    }
}

.alert {
    padding: 12px 15px;
    border-radius: 8px;
    font-size: 13px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.alert-danger {
    background: #fef2f2;
    color: #ef4444;
    border: 1px solid #fecaca;
}

.alert-success {
    background: #ecfdf5;
    color: #10b981;
    border: 1px solid #a7f3d0;
}

.form-row {
    display: flex;
    gap: 15px;
}

.form-row .half {
    flex: 1;
}

/* Admin Panel Styles */
.admin-body {
    background: #f3f4f6;
    min-height: 100vh;
}

.admin-layout {
    display: flex;
    min-height: 100vh;
}

.admin-sidebar {
    width: 260px;
    background: #111827;
    color: #fff;
    display: flex;
    flex-direction: column;
    flex-shrink: 0;
}

.sidebar-header {
    padding: 20px;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.admin-logo img {
    height: 40px;
}

.sidebar-nav {
    flex: 1;
    padding: 20px 0;
    overflow-y: auto;
}

.nav-item {
    display: flex;
    align-items: center;
    padding: 12px 25px;
    color: #9ca3af;
    font-size: 14px;
    font-weight: 500;
    transition: 0.3s;
    border-left: 3px solid transparent;
}

.nav-item i {
    width: 20px;
    margin-right: 10px;
    font-size: 16px;
    text-align: center;
}

.nav-item:hover,
.nav-item.active {
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    border-left-color: var(--primary);
}

.sidebar-footer {
    padding: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.logout-btn {
    display: flex;
    align-items: center;
    color: #ef4444;
    font-size: 14px;
    font-weight: 500;
}

.logout-btn i {
    margin-right: 8px;
}

.admin-main {
    flex: 1;
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
}

.admin-header {
    background: #fff;
    padding: 15px 30px;
    border-bottom: 1px solid #e5e7eb;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-title h1 {
    font-size: 20px;
    color: #111827;
    font-weight: 700;
    margin-bottom: 2px;
}

.header-title span {
    font-size: 13px;
    color: #6b7280;
}

.admin-content {
    padding: 30px;
    flex: 1;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

.stat-card {
    background: #fff;
    border-radius: 12px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 20px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.stat-icon {
    width: 50px;
    height: 50px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.stat-card.blue .stat-icon {
    background: #eff6ff;
    color: #3b82f6;
}

.stat-card.green .stat-icon {
    background: #ecfdf5;
    color: #10b981;
}

.stat-card.orange .stat-icon {
    background: #fff7ed;
    color: #f97316;
}

.stat-card.purple .stat-icon {
    background: #f5f3ff;
    color: #8b5cf6;
}

.stat-info h3 {
    font-size: 24px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 2px;
}

.stat-info span {
    font-size: 13px;
    color: #6b7280;
}

.content-row {
    margin-bottom: 30px;
}

.content-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.card-header {
    padding: 20px 25px;
    border-bottom: 1px solid #f3f4f6;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.card-header h3 {
    font-size: 16px;
    font-weight: 600;
    color: #374151;
}

.card-body {
    padding: 0;
}

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

.admin-table th {
    background: #f9fafb;
    padding: 12px 25px;
    text-align: left;
    font-size: 12px;
    font-weight: 600;
    color: #6b7280;
    text-transform: uppercase;
    border-bottom: 1px solid #e5e7eb;
}

.admin-table td {
    padding: 15px 25px;
    border-bottom: 1px solid #f3f4f6;
    font-size: 14px;
    color: #4b5563;
}

.text-center {
    text-align: center;
}

.btn-sm {
    font-size: 12px;
    color: var(--primary);
    font-weight: 500;
}

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

    .admin-sidebar {
        width: 70px;
    }

    .admin-logo,
    .sidebar-footer span,
    .nav-item span {
        display: none;
    }

    .nav-item {
        justify-content: center;
        padding: 15px;
    }

    .nav-item i {
        margin: 0;
    }

    .sidebar-footer {
        text-align: center;
    }
}

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

    .admin-sidebar {
        display: none;
    }

    /* Hide sidebar for simplicity on mobile for now */
}

/* Footer */
.footer {
    background-color: var(--white);
    border-top: 1px solid #f0f0f0;
    margin-top: 50px;
    color: #666;
    font-size: 13px;
}

.footer-top {
    padding: 60px 0 40px;
}

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

.footer-logo img {
    height: 45px;
    margin-bottom: 20px;
}

.brand-desc {
    color: #777;
    margin-bottom: 20px;
    line-height: 1.6;
}

.social-links {
    display: flex;
    gap: 10px;
}

.social-links a {
    width: 36px;
    height: 36px;
    background: #f5f7fa;
    color: #555;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
}

.social-links a:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-2px);
}

.footer-widget h3 {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-widget h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--primary);
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a {
    color: #666;
    transition: 0.2s;
    display: flex;
    align-items: center;
}

.footer-links a:hover {
    color: var(--primary);
    transform: translateX(3px);
}

.contact-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

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

.contact-list i {
    color: var(--primary);
    font-size: 18px;
    background: #eff6ff;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    flex-shrink: 0;
}

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

.c-info span {
    font-size: 11px;
    color: #999;
    font-weight: 500;
    text-transform: uppercase;
    margin-bottom: 2px;
}

.c-info a,
.c-info p {
    color: #333;
    font-weight: 500;
    font-size: 13px;
}

.footer-bottom {
    background: #fcfcfc;
    border-top: 1px solid #f0f0f0;
    padding: 20px 0;
}

.fb-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.payment-methods {
    display: flex;
    gap: 10px;
    font-size: 24px;
    color: #888;
}

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

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

    .fb-content {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}


/* ==================== */
/* Product Detail Page */
/* ==================== */
.product-detail-section {
    padding: 40px 0 80px;
    background: #f8faff;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 30px;
    font-size: 13px;
    color: #6b7280;
}

.breadcrumb a {
    color: #6b7280;
    transition: 0.2s;
}

.breadcrumb a:hover {
    color: var(--primary);
}

.breadcrumb .current {
    color: var(--primary);
    font-weight: 500;
}

.product-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 50px;
}

.product-gallery {
    position: sticky;
    top: 20px;
}

.main-image {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
}

.main-image img {
    width: 100%;
    height: auto;
    display: block;
}

.discount-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: linear-gradient(135deg, #ef4444, #dc2626);
    color: #fff;
    padding: 8px 16px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 600;
}

.product-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.product-meta {
    display: flex;
    gap: 10px;
}

.category-tag {
    background: #e0e7ff;
    color: #4338ca;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.version-tag {
    background: #d1fae5;
    color: #059669;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.product-title {
    font-size: 28px;
    font-weight: 700;
    color: #111827;
    line-height: 1.3;
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 10px;
}

.product-rating .stars {
    color: #f59e0b;
    font-size: 14px;
}

.rating-text {
    color: #6b7280;
    font-size: 13px;
}

.product-short-desc {
    color: #4b5563;
    font-size: 15px;
    line-height: 1.7;
}

.product-price-box {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: linear-gradient(135deg, #f0f9ff, #e0f2fe);
    border-radius: 12px;
}

.product-price-box .old-price {
    font-size: 18px;
    color: #9ca3af;
    text-decoration: line-through;
}

.product-price-box .current-price {
    font-size: 32px;
    font-weight: 800;
    color: var(--primary);
}

.product-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    background: #fff;
    border-radius: 10px;
    border: 1px solid #e5e7eb;
}

.feature-item i {
    color: #10b981;
    font-size: 16px;
}

.feature-item span {
    font-size: 13px;
    color: #374151;
    font-weight: 500;
}

.product-actions {
    display: flex;
    gap: 15px;
}

.btn-buy {
    flex: 1;
    padding: 16px 30px;
    background: var(--primary);
    color: #fff;
    border: none;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(0, 69, 131, 0.3);
}

.btn-buy:hover {
    background: #003566;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 69, 131, 0.4);
}

.btn-demo {
    padding: 16px 30px;
    background: #fff;
    color: var(--primary);
    border: 2px solid var(--primary);
    border-radius: 12px;
    font-size: 15px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s;
}

.btn-demo:hover {
    background: var(--primary);
    color: #fff;
}

.product-guarantee {
    display: flex;
    gap: 20px;
    padding: 20px;
    background: #fff;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
}

.guarantee-item {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1;
}

.guarantee-item i {
    font-size: 24px;
    color: var(--primary);
}

.guarantee-item strong {
    display: block;
    font-size: 13px;
    color: #111827;
}

.guarantee-item span {
    font-size: 11px;
    color: #6b7280;
}

/* Product Tabs */
.product-tabs {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    margin-bottom: 50px;
}

.tabs-header {
    display: flex;
    border-bottom: 1px solid #e5e7eb;
    background: #f9fafb;
}

.tab-btn {
    flex: 1;
    padding: 18px 25px;
    background: none;
    border: none;
    font-size: 14px;
    font-weight: 600;
    color: #6b7280;
    cursor: pointer;
    transition: all 0.3s;
    position: relative;
}

.tab-btn:hover {
    color: var(--primary);
}

.tab-btn.active {
    color: var(--primary);
    background: #fff;
}

.tab-btn.active::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--primary);
}

.tabs-content {
    padding: 30px;
}

.tab-pane {
    display: none;
}

.tab-pane.active {
    display: block;
}

.description-content {
    color: #4b5563;
    line-height: 1.8;
    font-size: 14px;
}

.features-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.features-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    background: #f9fafb;
    border-radius: 8px;
    font-size: 14px;
    color: #374151;
}

.features-list li i {
    color: #10b981;
}

.no-reviews {
    text-align: center;
    color: #9ca3af;
    padding: 40px;
}

/* Related Products */
.related-products {
    margin-top: 50px;
}

.related-products h2 {
    font-size: 22px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 25px;
    text-align: center;
}

/* Responsive Product Detail */
@media (max-width: 992px) {
    .product-detail-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .product-gallery {
        position: static;
    }

    .product-title {
        font-size: 24px;
    }

    .product-features {
        grid-template-columns: 1fr;
    }

    .product-actions {
        flex-direction: column;
    }

    .product-guarantee {
        flex-direction: column;
        gap: 15px;
    }

    .features-list {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .product-price-box .current-price {
        font-size: 26px;
    }

    .tabs-header {
        flex-direction: column;
    }

    .tab-btn {
        border-bottom: 1px solid #e5e7eb;
    }

    .tab-btn.active::after {
        display: none;
    }
}


/* License Tag */
.license-tag {
    background: #fef3c7;
    color: #d97706;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

/* License Notice */
.license-notice {
    background: #fef3c7;
    border: 1px solid #fcd34d;
    color: #92400e;
    padding: 12px 16px;
    border-radius: 10px;
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.license-notice i {
    font-size: 16px;
    color: #d97706;
}

/* Product Actions - Updated */
.product-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.btn-buy {
    flex: 1;
    min-width: 140px;
    padding: 14px 24px;
    background: #004583;
    color: #fff;
    border: none;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s;
    text-decoration: none;
}

.btn-buy:hover {
    background: #003566;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 69, 131, 0.3);
}

.btn-demo {
    padding: 14px 24px;
    background: #fff;
    color: #004583;
    border: 2px solid #004583;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s;
    text-decoration: none;
}

.btn-demo:hover {
    background: #004583;
    color: #fff;
}

.btn-admin-demo {
    padding: 14px 24px;
    background: #f3f4f6;
    color: #374151;
    border: 2px solid #e5e7eb;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s;
    text-decoration: none;
}

.btn-admin-demo:hover {
    background: #374151;
    color: #fff;
    border-color: #374151;
}

@media (max-width: 576px) {
    .product-actions {
        flex-direction: column;
    }

    .btn-buy,
    .btn-demo,
    .btn-admin-demo {
        width: 100%;
    }
}


/* ============================================
   KAPSAMLI MOBİL RESPONSIVE KURALLAR
   ============================================ */

/* Tablet (768px - 1024px) */
@media (max-width: 1024px) {
    .container {
        padding: 0 20px;
    }

    /* İçerik Kartları - Tablet */
    [style*="display: flex"][style*="gap: 60px"] {
        gap: 30px !important;
    }

    [style*="font-size: 24px"] {
        font-size: 20px !important;
    }
}

/* Mobil (768px ve altı) */
@media (max-width: 768px) {

    /* Genel */
    .container {
        padding: 0 15px;
    }

    body {
        font-size: 13px;
    }

    /* Header */
    .header .container {
        padding: 10px 15px;
        border-radius: 12px;
    }

    .logo img {
        height: 35px;
        margin-left: 0 !important;
    }

    .header-right .btn {
        display: none;
    }

    .icon-btn {
        width: 36px;
        height: 36px;
        font-size: 14px;
    }

    /* Hero Slider */
    .hero-area {
        border-radius: 12px;
        min-height: auto;
    }

    .hero-slide-content {
        flex-direction: column !important;
        padding: 20px !important;
        text-align: center !important;
    }

    .hero-image {
        display: none !important;
        /* Mobilde slider resimlerini gizle */
    }

    .hero-text {
        text-align: center;
    }

    .hero-text h1 {
        font-size: 18px !important;
        line-height: 1.3;
    }

    .hero-text p {
        font-size: 12px !important;
    }

    .hero-features-grid {
        justify-content: center !important;
    }

    .h-feature {
        width: 100% !important;
    }

    .hero-btn {
        width: 100% !important;
        justify-content: center;
    }

    .hero-bottom-tabs {
        flex-wrap: wrap;
        padding: 8px 10px;
    }

    .tab-item {
        flex: 1 1 45%;
        font-size: 11px;
        padding: 8px 10px;
    }

    /* Sidebar Widgets */
    .sidebar-widgets {
        grid-template-columns: 1fr !important;
    }

    .sidebar-bottom-grid {
        grid-template-columns: 1fr !important;
    }

    /* Entegrasyon Şeridi */
    [style*="gap: 32px"][style*="flex-wrap: wrap"] {
        gap: 15px !important;
        justify-content: center !important;
    }

    [style*="gap: 32px"] span {
        font-size: 11px !important;
    }

    /* Özellikler Grid */
    [style*="grid-template-columns: repeat(2, 1fr)"][style*="gap: 32px"] {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }

    /* İçerik Kartları - Mobil */
    [style*="display: flex"][style*="align-items: center"][style*="gap: 60px"] {
        flex-direction: column !important;
        gap: 25px !important;
        text-align: center !important;
    }

    [style*="flex-direction: row-reverse"] {
        flex-direction: column !important;
    }

    [style*="flex: 1;"] {
        flex: none !important;
        width: 100% !important;
    }

    [style*="font-size: 24px"] {
        font-size: 18px !important;
    }

    [style*="font-size: 22px"] {
        font-size: 17px !important;
    }

    [style*="margin-bottom: 80px"] {
        margin-bottom: 40px !important;
    }

    /* İstatistikler */
    [style*="grid-template-columns: repeat(4, 1fr)"][style*="gap: 40px"] {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 20px !important;
    }

    [style*="font-size: 28px"] {
        font-size: 22px !important;
    }

    /* Showcase Products */
    .showcase-products {
        padding: 40px 0;
    }

    .showcase-header h3 {
        font-size: 18px;
    }

    .showcase-grid {
        grid-template-columns: 1fr !important;
        gap: 15px;
    }

    /* Footer */
    .footer-grid {
        grid-template-columns: 1fr 1fr !important;
        /* İlk satırda 2 kolon yan yana */
        gap: 20px;
        text-align: left;
    }

    /* İlk kolon (logo) tam genişlik */
    .footer-grid .footer-col:first-child {
        grid-column: 1 / -1;
        text-align: center;
    }

    /* Son kolon (kurumsal) tam genişlik */
    .footer-grid .footer-col:last-child {
        grid-column: 1 / -1;
        text-align: center;
    }

    .footer-col ul {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-grid .footer-col:first-child ul,
    .footer-grid .footer-col:last-child ul {
        align-items: center;
    }

    .footer-widget h3::after {
        left: 0;
        transform: none;
    }

    .footer-grid .footer-col:first-child .footer-widget h3::after,
    .footer-grid .footer-col:last-child .footer-widget h3::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    /* Sayfa İçerikleri */
    .page-header {
        padding: 30px 0 !important;
    }

    .page-header h1 {
        font-size: 22px !important;
    }

    /* Fiyat Kartları */
    [style*="grid-template-columns: repeat(3, 1fr)"] {
        grid-template-columns: 1fr !important;
    }

    /* Özellik Gridleri */
    [style*="grid-template-columns: repeat(4, 1fr)"] {
        grid-template-columns: repeat(2, 1fr) !important;
    }

    [style*="grid-template-columns: repeat(6, 1fr)"] {
        grid-template-columns: repeat(2, 1fr) !important;
    }

    /* Padding Ayarları */
    [style*="padding: 60px 0"] {
        padding: 35px 0 !important;
    }

    [style*="padding: 50px 0"] {
        padding: 30px 0 !important;
    }

    [style*="padding: 80px 0"] {
        padding: 40px 0 !important;
    }

    /* Auth Sayfaları */
    .auth-form-side {
        padding: 30px 20px;
    }

    .auth-header-left h2 {
        font-size: 22px;
    }

    /* Floating Help */
    .help-float {
        bottom: 15px;
        right: 15px;
        gap: 10px;
    }

    .help-icon {
        width: 50px;
        height: 50px;
        font-size: 24px;
    }

    .help-text {
        font-size: 12px;
        padding: 10px 15px;
        display: none;
        /* Mobilde sadece ikon göster */
    }

    .help-text {
        display: none;
    }

    .help-icon {
        width: 50px;
        height: 50px;
        font-size: 24px;
    }
}

/* Küçük Mobil (480px ve altı) */
@media (max-width: 480px) {
    .container {
        padding: 0 12px;
    }

    /* Header */
    .header {
        margin: 10px 0;
    }

    .header .container {
        padding: 8px 12px;
    }

    .logo img {
        height: 30px;
    }

    /* Hero */
    .hero-text h1 {
        font-size: 16px !important;
    }

    .hero-text p {
        font-size: 11px !important;
    }

    .tab-item {
        flex: 1 1 100%;
        font-size: 10px;
    }

    /* İstatistikler */
    [style*="grid-template-columns: repeat(4, 1fr)"][style*="gap: 40px"] {
        grid-template-columns: 1fr !important;
    }

    /* Özellik Gridleri */
    [style*="grid-template-columns: repeat(4, 1fr)"] {
        grid-template-columns: 1fr !important;
    }

    [style*="grid-template-columns: repeat(2, 1fr)"] {
        grid-template-columns: 1fr !important;
    }

    /* Butonlar */
    [style*="display: flex"][style*="gap: 12px"][style*="justify-content: center"] {
        flex-direction: column !important;
    }

    [style*="padding: 12px 28px"] {
        padding: 12px 20px !important;
        width: 100% !important;
        text-align: center !important;
    }

    /* Font Boyutları */
    [style*="font-size: 20px"] {
        font-size: 16px !important;
    }

    [style*="font-size: 18px"] {
        font-size: 15px !important;
    }

    /* Showcase */
    .showcase-header h3 {
        font-size: 16px;
    }

    .sc-content {
        padding: 15px;
    }

    .sc-content h4 a {
        font-size: 14px;
    }

    /* Sayfa Başlıkları */
    .page-header h1 {
        font-size: 18px !important;
    }

    .page-header p {
        font-size: 12px !important;
    }
}

/* Mobil Menü Stili */
@media (max-width: 992px) {
    .mobile-menu {
        position: fixed;
        top: 0;
        left: -100%;
        width: 280px;
        height: 100vh;
        background: #fff;
        z-index: 9999;
        transition: 0.3s;
        box-shadow: 5px 0 30px rgba(0, 0, 0, 0.1);
        overflow-y: auto;
    }

    .mobile-menu.active {
        left: 0;
    }

    .mobile-menu-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        z-index: 9998;
        opacity: 0;
        visibility: hidden;
        transition: 0.3s;
    }

    .mobile-menu-overlay.active {
        opacity: 1;
        visibility: visible;
    }

    .mobile-menu-header {
        padding: 20px;
        border-bottom: 1px solid #f0f0f0;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .mobile-menu-close {
        font-size: 24px;
        cursor: pointer;
        color: #333;
    }

    .mobile-menu-nav {
        padding: 20px;
    }

    .mobile-menu-nav a {
        display: block;
        padding: 12px 0;
        font-size: 14px;
        font-weight: 500;
        color: #333;
        border-bottom: 1px solid #f5f5f5;
    }

    .mobile-menu-nav a:hover {
        color: #004583;
    }
}

/* Tablo Responsive */
@media (max-width: 768px) {
    .admin-table {
        display: block;
        overflow-x: auto;
        white-space: nowrap;
    }

    .admin-table th,
    .admin-table td {
        min-width: 100px;
    }
}

/* Form Responsive */
@media (max-width: 576px) {
    .form-row {
        flex-direction: column;
    }

    .form-row .half {
        width: 100%;
    }

    .form-input {
        padding: 12px 15px 12px 45px;
        font-size: 14px;
    }

    .btn-primary-wide {
        padding: 14px;
        font-size: 14px;
    }
}

/* İçerik Kartları Özel Mobil Düzeltmeleri */
@media (max-width: 768px) {

    /* Resim container */
    [style*="border-radius: 16px"][style*="overflow: hidden"][style*="box-shadow"] {
        border-radius: 12px !important;
    }

    /* Resimler */
    [style*="border-radius: 16px"] img {
        border-radius: 12px !important;
    }

    /* Badge'ler */
    [style*="position: absolute"][style*="top: 16px"] {
        top: 10px !important;
        right: 10px !important;
        left: auto !important;
        padding: 6px 12px !important;
        font-size: 10px !important;
    }

    /* Link butonları */
    [style*="display: inline-flex"][style*="align-items: center"][style*="gap: 8px"][style*="color: #004583"] {
        justify-content: center !important;
        width: 100% !important;
    }

    /* Kategori etiketleri */
    [style*="text-transform: uppercase"][style*="letter-spacing: 1px"] {
        font-size: 10px !important;
    }

    /* İkon kutuları */
    [style*="width: 50px"][style*="height: 50px"][style*="border-radius: 12px"] {
        width: 40px !important;
        height: 40px !important;
    }

    [style*="width: 50px"] i {
        font-size: 18px !important;
    }
}

/* Print Styles */
@media print {

    .header,
    .footer,
    .help-float,
    .mobile-menu {
        display: none !important;
    }

    body {
        font-size: 12pt;
        color: #000;
        background: #fff;
    }

    .container {
        max-width: 100%;
        padding: 0;
    }
}


/* ============================================
   İÇERİK KARTLARI MOBİL DÜZELTMELER
   ============================================ */

/* İçerik Kartları Container */
.content-card-row {
    display: flex;
    align-items: center;
    gap: 60px;
    margin-bottom: 80px;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}

.content-card-row.reverse {
    flex-direction: row-reverse;
}

.content-card-text,
.content-card-image {
    flex: 1;
}

@media (max-width: 768px) {

    .content-card-row,
    .content-card-row.reverse {
        flex-direction: column !important;
        gap: 30px !important;
        margin-bottom: 50px !important;
        text-align: center;
    }

    .content-card-text,
    .content-card-image {
        width: 100% !important;
    }

    .content-card-text h3 {
        font-size: 20px !important;
    }

    .content-card-text p {
        font-size: 13px !important;
    }
}

/* Özellikler Grid Mobil */
.features-grid-2x2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    max-width: 1000px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .features-grid-2x2 {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }
}

/* İstatistikler Grid Mobil */
.stats-grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    text-align: center;
}

@media (max-width: 768px) {
    .stats-grid-4 {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 25px !important;
    }
}

@media (max-width: 480px) {
    .stats-grid-4 {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }
}

/* Entegrasyon Şeridi Mobil */
.integration-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
}

@media (max-width: 768px) {
    .integration-bar {
        gap: 15px !important;
    }

    .integration-bar span {
        font-size: 11px !important;
    }
}

/* Sayfa Header Mobil */
.page-hero {
    padding: 40px 0;
    text-align: center;
}

.page-hero h1 {
    font-size: 28px;
    margin-bottom: 10px;
}

.page-hero p {
    font-size: 14px;
    color: #64748b;
}

@media (max-width: 768px) {
    .page-hero {
        padding: 25px 0 !important;
    }

    .page-hero h1 {
        font-size: 20px !important;
    }

    .page-hero p {
        font-size: 12px !important;
    }
}

/* Fiyat Kartları Mobil */
.pricing-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

@media (max-width: 992px) {
    .pricing-cards {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

@media (max-width: 768px) {
    .pricing-cards {
        grid-template-columns: 1fr !important;
        max-width: 400px;
        margin: 0 auto;
    }
}

/* Özellik Kartları Grid Mobil */
.feature-cards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

@media (max-width: 992px) {
    .feature-cards-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

@media (max-width: 576px) {
    .feature-cards-grid {
        grid-template-columns: 1fr !important;
    }
}

/* Genel Section Padding Mobil */
.section-padding {
    padding: 60px 0;
}

@media (max-width: 768px) {
    .section-padding {
        padding: 40px 0 !important;
    }
}

/* Buton Grupları Mobil */
.btn-group-center {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

@media (max-width: 480px) {
    .btn-group-center {
        flex-direction: column !important;
    }

    .btn-group-center a,
    .btn-group-center button {
        width: 100% !important;
        text-align: center !important;
    }
}

/* Resim Container Mobil */
.img-container-rounded {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
}

@media (max-width: 768px) {
    .img-container-rounded {
        border-radius: 12px !important;
    }
}

/* Text Alignment Mobil */
@media (max-width: 768px) {
    .text-center-mobile {
        text-align: center !important;
    }

    .flex-center-mobile {
        justify-content: center !important;
    }
}


/* ============================================
   MOBİL MENÜ DÜZELTMELERİ
   ============================================ */

/* Mobil menü sadece mobilde görünsün */
.mobile-menu,
.mobile-menu-overlay {
    display: none;
}

@media (max-width: 992px) {
    .mobile-menu {
        display: block;
        position: fixed;
        top: 0;
        left: -100%;
        width: 280px;
        height: 100vh;
        background: #fff;
        z-index: 9999;
        transition: 0.3s;
        box-shadow: 5px 0 30px rgba(0, 0, 0, 0.1);
        overflow-y: auto;
    }

    .mobile-menu.active {
        left: 0;
    }

    .mobile-menu-overlay {
        display: block;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        z-index: 9998;
        opacity: 0;
        visibility: hidden;
        transition: 0.3s;
    }

    .mobile-menu-overlay.active {
        opacity: 1;
        visibility: visible;
    }

    .mobile-menu-header {
        padding: 20px;
        border-bottom: 1px solid #f0f0f0;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .mobile-menu-close {
        font-size: 24px;
        cursor: pointer;
        color: #333;
        width: 40px;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .mobile-menu-nav {
        padding: 15px 20px;
    }

    .mobile-menu-nav a {
        display: flex;
        align-items: center;
        gap: 10px;
        padding: 12px 0;
        font-size: 14px;
        font-weight: 500;
        color: #333;
        border-bottom: 1px solid #f5f5f5;
        text-decoration: none;
    }

    .mobile-menu-nav a i {
        width: 20px;
        color: #004583;
    }

    .mobile-menu-nav a:hover {
        color: #004583;
    }
}

/* Desktop'ta mobil menü gizli */
@media (min-width: 993px) {

    .mobile-menu,
    .mobile-menu-overlay {
        display: none !important;
    }
}


/* ============================================
   MOBİL DÜZELTMELER - TOP BAR, FİYAT KARTLARI
   ============================================ */

/* Top Bar Mobilde Görünsün */
@media (max-width: 768px) {
    .top-bar {
        display: block !important;
        padding: 6px 0;
        font-size: 11px;
    }

    .top-bar .container {
        flex-direction: column;
        gap: 5px;
        text-align: center;
    }

    .top-bar-left,
    .top-bar-right {
        justify-content: center;
        gap: 10px;
    }

    .top-bar .divider {
        display: none;
    }

    .top-bar-left a,
    .top-bar-right a {
        font-size: 10px;
    }
}

/* Fiyat Kartları Mobil - Kayma Sorunu Düzeltme */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 1100px;
    margin: 0 auto;
}

@media (max-width: 992px) {
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

@media (max-width: 768px) {
    .pricing-grid {
        grid-template-columns: 1fr !important;
        max-width: 350px;
        gap: 15px;
    }

    /* Fiyat kartları scroll engelle */
    .pricing-section,
    [class*="pricing"] {
        overflow-x: hidden !important;
    }

    /* Fiyat kartı içi */
    .pricing-card,
    [class*="pricing-card"] {
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 !important;
    }
}

/* Butonlar Mobilde Küçük */
@media (max-width: 768px) {

    /* Genel butonlar */
    .btn,
    [class*="btn"] {
        padding: 8px 14px !important;
        font-size: 11px !important;
    }

    /* Bilgi Al butonları */
    a[href*="iletisim"],
    button[type="submit"],
    .cta-btn,
    [style*="padding: 12px 28px"],
    [style*="padding: 14px 24px"] {
        padding: 8px 16px !important;
        font-size: 11px !important;
    }

    /* İçerik kartlarındaki linkler */
    [style*="display: inline-flex"][style*="gap: 8px"][style*="font-size: 13px"] {
        font-size: 11px !important;
    }
}

/* Header Mobil Düzeltmeleri */
@media (max-width: 992px) {
    .header {
        margin: 8px 0;
    }

    .header .container {
        padding: 8px 12px;
        border-radius: 10px;
    }

    .logo img {
        height: 32px !important;
        margin-left: 0 !important;
    }

    .menu-toggle {
        display: flex !important;
        align-items: center;
        justify-content: center;
        width: 36px;
        height: 36px;
        font-size: 18px;
    }

    .navbar {
        display: none !important;
    }

    .header-right .btn,
    .header-right .btn-gradient,
    .header-right .btn-outline-header {
        display: none !important;
    }
}

/* İçerik Kartları Mobil */
@media (max-width: 768px) {

    /* Kart container */
    [style*="display: flex"][style*="gap: 60px"][style*="margin-bottom: 80px"] {
        flex-direction: column !important;
        gap: 20px !important;
        margin-bottom: 40px !important;
        padding: 0 10px;
    }

    /* Kart başlıkları */
    [style*="font-size: 24px"][style*="font-weight: 600"] {
        font-size: 18px !important;
    }

    /* Kart açıklamaları */
    [style*="font-size: 13px"][style*="line-height: 1.7"] {
        font-size: 12px !important;
    }

    /* Resim container */
    [style*="border-radius: 16px"][style*="box-shadow"] {
        border-radius: 10px !important;
    }

    /* Badge'ler */
    [style*="position: absolute"][style*="padding: 8px 16px"] {
        padding: 5px 10px !important;
        font-size: 9px !important;
    }
}

/* Sayfa İçerikleri Mobil */
@media (max-width: 768px) {

    /* Section padding */
    section[style*="padding: 60px"],
    section[style*="padding: 50px"],
    section[style*="padding: 80px"] {
        padding: 30px 0 !important;
    }

    /* Container padding */
    .container {
        padding: 0 12px !important;
    }

    /* Başlıklar */
    h1[style*="font-size: 28px"],
    h1[style*="font-size: 32px"] {
        font-size: 20px !important;
    }

    h2[style*="font-size: 24px"],
    h2[style*="font-size: 22px"] {
        font-size: 18px !important;
    }

    h3[style*="font-size: 20px"],
    h3[style*="font-size: 18px"] {
        font-size: 16px !important;
    }
}

/* Overflow Engelleme */
html,
body {
    overflow-x: hidden;
}

@media (max-width: 768px) {
    * {
        max-width: 100vw;
    }

    .container {
        max-width: 100% !important;
        overflow-x: hidden !important;
    }

    img {
        max-width: 100% !important;
        height: auto !important;
    }
}


/* ============================================
   MOBİL HEADER VE PAKET DÜZELTMELERİ
   ============================================ */

/* Mobil Header Büyütme */
@media (max-width: 992px) {
    .header {
        margin: 10px 12px !important;
    }

    .header .container {
        padding: 12px 16px !important;
        border-radius: 12px !important;
    }

    .logo img {
        height: 38px !important;
        margin-left: 0 !important;
    }

    .menu-toggle {
        width: 42px !important;
        height: 42px !important;
        font-size: 20px !important;
        background: #f8fafc;
        border-radius: 10px;
        border: 1px solid #e2e8f0;
    }

    /* Hesabım butonu mobilde gizle */
    .header-right .btn,
    .header-right .btn-gradient,
    .header-right .btn-outline-header {
        display: none !important;
    }

    .header-right {
        gap: 10px !important;
    }

    .icon-btn {
        width: 42px !important;
        height: 42px !important;
        font-size: 16px !important;
        border-radius: 10px !important;
    }
}

/* Mobil Menü İyileştirme */
@media (max-width: 992px) {
    .mobile-menu {
        width: 300px !important;
    }

    .mobile-menu-header {
        padding: 20px !important;
        background: #f8fafc;
    }

    .mobile-menu-header img {
        height: 36px !important;
    }

    .mobile-menu-nav {
        padding: 15px !important;
    }

    .mobile-menu-nav a {
        padding: 14px 15px !important;
        font-size: 14px !important;
        border-radius: 8px;
        margin-bottom: 4px;
        background: #f8fafc;
        border: none !important;
    }

    .mobile-menu-nav a:hover {
        background: #e2e8f0;
    }

    .mobile-menu-nav a i {
        width: 24px !important;
        font-size: 14px !important;
    }
}

/* Mobilde Paketler - Tam Ekran Tek Görünüm */
@media (max-width: 768px) {
    /* Bu kurallar artık ana mobil düzeltmeler bölümünde */
}

/* Bilgi Al Butonları Tek Satır */
@media (max-width: 768px) {

    /* İçerik kartlarındaki butonlar */
    [style*="display: inline-flex"][style*="align-items: center"][style*="gap: 8px"] {
        white-space: nowrap !important;
        font-size: 12px !important;
    }

    /* Genel CTA butonları */
    .btn-pricing,
    .price-btn,
    a[href*="iletisim"] {
        white-space: nowrap !important;
        padding: 10px 16px !important;
        font-size: 12px !important;
    }

    /* İçerik kartları butonları */
    a[style*="display: inline-flex"][style*="color: #004583"] {
        font-size: 12px !important;
        white-space: nowrap !important;
    }
}

/* Top Bar Mobil Görünüm */
@media (max-width: 768px) {
    .top-bar {
        display: block !important;
        padding: 8px 0 !important;
    }

    .top-bar .container {
        flex-direction: row !important;
        justify-content: center !important;
        gap: 15px !important;
    }

    .top-bar-left {
        display: flex !important;
        gap: 12px !important;
    }

    .top-bar-right {
        display: none !important;
    }

    .top-bar .divider {
        display: none !important;
    }

    .top-bar a {
        font-size: 11px !important;
    }
}

/* Entegrasyon Logoları Mobil */
@media (max-width: 768px) {
    [style*="gap: 30px"][style*="opacity: 0.7"] {
        gap: 20px !important;
    }

    [style*="gap: 30px"][style*="opacity: 0.7"] img {
        height: 14px !important;
    }
}


/* ============================================
   MOBİL FİNAL DÜZELTMELERİ
   ============================================ */

/* 1. Logo Sola Çekme */
@media (max-width: 992px) {
    .header-left {
        margin-left: -8px;
    }

    .logo img {
        margin-left: -5px !important;
    }
}

/* 2. Mobil Menü - Küçük ve Sıkı Yazılar */
@media (max-width: 992px) {
    .mobile-menu-nav a {
        padding: 10px 12px !important;
        font-size: 13px !important;
        margin-bottom: 2px !important;
        gap: 8px !important;
    }

    .mobile-menu-nav a i {
        width: 18px !important;
        font-size: 12px !important;
    }

    .mobile-menu-nav>div {
        padding-top: 15px !important;
        margin-top: 10px !important;
    }

    .mobile-menu-nav>div a {
        padding: 10px 15px !important;
        font-size: 12px !important;
    }
}

/* 3. Bilgi Al Butonları - Tek Satır */
@media (max-width: 768px) {
    .btn-info-modern {
        padding: 8px 14px !important;
        font-size: 11px !important;
        white-space: nowrap !important;
    }

    .action-card-modern {
        padding: 12px 15px !important;
        min-height: 65px !important;
    }

    .acm-text h4 {
        font-size: 12px !important;
        white-space: normal !important;
        line-height: 1.3 !important;
    }

    .acm-icon {
        width: 38px !important;
        height: 38px !important;
        font-size: 14px !important;
    }
}

/* 4. Fiyat Kartları - Tam Ekran Tek Görünüm */
@media (max-width: 768px) {
    .pricing-section .container {
        padding: 0 !important;
        overflow: hidden !important;
    }

    .pricing-header {
        padding: 0 15px !important;
    }

    .scroll-hint {
        display: block !important;
    }

    .pricing-grid {
        display: flex !important;
        flex-direction: row !important;
        overflow-x: auto !important;
        scroll-snap-type: x mandatory !important;
        gap: 0 !important;
        padding: 0 !important;
        margin: 0 !important;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

    .pricing-grid::-webkit-scrollbar {
        display: none !important;
    }

    .pricing-card {
        flex: 0 0 100vw !important;
        min-width: 100vw !important;
        max-width: 100vw !important;
        width: 100vw !important;
        scroll-snap-align: start !important;
        margin: 0 !important;
        padding: 25px 20px !important;
        border-radius: 0 !important;
        box-shadow: none !important;
        border-left: none !important;
        border-right: none !important;
        box-sizing: border-box !important;
    }

    .pricing-card.featured {
        margin-top: 0 !important;
        padding-top: 45px !important;
    }
}

/* 5. Footer Mobil - Yan Yana Linkler */
@media (max-width: 768px) {
    .footer-links-wrapper {
        flex-direction: row !important;
        flex-wrap: wrap !important;
        gap: 15px !important;
        justify-content: center !important;
    }

    .footer-col {
        flex: 0 0 auto !important;
        min-width: 100px !important;
    }

    .footer-col h4 {
        font-size: 11px !important;
        margin-bottom: 8px !important;
    }

    .footer-links-inline {
        gap: 4px !important;
    }

    .footer-links-inline a {
        font-size: 10px !important;
        padding: 3px 8px !important;
    }
}

/* ============================================
   PROFESSIONAL GRADIENT DASHBOARD
   ============================================ */

/* Wrapper & Layout */
.dashboard-wrapper {
    background-color: #f4f7fa;
    /* Slightly cooler grey for contrast */
    padding: 40px 0 80px;
    min-height: calc(100vh - 350px);
}

.dashboard-container {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 30px;
    align-items: start;
}

/* Sidebar Navigation */
.flat-sidebar {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    overflow: hidden;
    position: sticky;
    top: 20px;
    border: 1px solid rgba(0, 0, 0, 0.02);
}

.flat-user-profile {
    padding: 30px 20px;
    text-align: center;
    background: linear-gradient(180deg, #f9fafb 0%, #ffffff 100%);
    border-bottom: 1px solid #f0f0f0;
}

.flat-avatar {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #004583 0%, #7ba3aa 100%);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 600;
    margin: 0 auto 15px;
    box-shadow: 0 8px 20px rgba(0, 69, 131, 0.25);
    border: 4px solid #fff;
}

.flat-user-info {
    text-align: center;
}

.flat-user-info h3 {
    font-size: 16px;
    font-weight: 700;
    color: #1e293b;
    margin: 0 0 4px 0;
}

.flat-user-info span {
    font-size: 12px;
    color: #64748b;
    font-weight: 500;
}

.flat-menu {
    list-style: none;
    padding: 15px 0;
    margin: 0;
    display: flex;
    flex-direction: column;
}

.flat-menu li a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 25px;
    color: #475569;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

.flat-menu li a:hover {
    background-color: #f8fbff;
    color: #004583;
    padding-left: 28px;
}

.flat-menu li a.active {
    background-color: #eff6ff;
    color: #004583;
    border-left-color: #004583;
    font-weight: 600;
}

.flat-menu li a i {
    width: 20px;
    text-align: center;
    font-size: 16px;
    opacity: 0.8;
}

.flat-menu-divider {
    height: 1px;
    background: #f1f5f9;
    margin: 10px 25px;
}

.text-danger {
    color: #dc2626 !important;
}

.flat-menu li a.text-danger:hover {
    background: #fef2f2;
    color: #b91c1c !important;
}


/* Main Content Area */
.flat-content {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.flat-page-header {
    margin-bottom: 5px;
}

.flat-page-header h2 {
    font-size: 24px;
    font-weight: 700;
    color: #1e293b;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.flat-page-header h2::before {
    content: '';
    width: 4px;
    height: 24px;
    background: linear-gradient(180deg, #004583 0%, #7ba3aa 100%);
    border-radius: 4px;
    display: inline-block;
}

/* Stats Overview */
.flat-stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.flat-stat-card {
    background: #fff;
    border-radius: 12px;
    padding: 25px;
    display: flex;
    align-items: center;
    gap: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
    border: 1px solid #eff6ff;
    transition: transform 0.3s;
    position: relative;
    overflow: hidden;
}

.flat-stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.06);
}

/* Gradient line at bottom of stat card */
.flat-stat-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #004583 0%, #7ba3aa 100%);
    opacity: 0;
    transition: 0.3s;
}

.flat-stat-card:hover::after {
    opacity: 1;
}

.stat-icon-wrapper {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    flex-shrink: 0;
    background: linear-gradient(135deg, #eff6ff 0%, #ffffff 100%);
    color: #004583;
    box-shadow: 0 4px 10px rgba(0, 69, 131, 0.1);
}

.flat-stat-info {
    display: flex;
    flex-direction: column;
}

.flat-stat-label {
    font-size: 13px;
    color: #64748b;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}

.flat-stat-value {
    font-size: 28px;
    font-weight: 800;
    color: #1e293b;
    line-height: 1;
}

/* Content Cards */
.flat-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
    border: 1px solid #eff6ff;
    overflow: hidden;
}

.flat-card-header {
    padding: 20px 30px;
    border-bottom: 1px solid #f1f5f9;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #fff;
}

.flat-card-header h3 {
    font-size: 16px;
    font-weight: 700;
    color: #1e293b;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.flat-btn-text {
    font-size: 13px;
    font-weight: 600;
    color: #004583;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    background: #eff6ff;
    border-radius: 6px;
    transition: 0.2s;
}

.flat-btn-text:hover {
    background: #004583;
    color: #fff;
}

/* Table Styling */
.flat-table-responsive {
    width: 100%;
    overflow-x: auto;
}

.flat-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
}

.flat-table th {
    text-align: left;
    padding: 16px 30px;
    font-size: 12px;
    font-weight: 700;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    background: #f8fafc;
    border-bottom: 1px solid #e2e8f0;
}

.flat-table td {
    padding: 20px 30px;
    border-bottom: 1px solid #f1f5f9;
    font-size: 14px;
    color: #334155;
    vertical-align: middle;
}

.flat-table tr:last-child td {
    border-bottom: none;
}

.flat-table tr:hover td {
    background-color: #f8fbff;
}

/* Status Badges - Gradient Pill Style */
.status-pill {
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.status-pill::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: currentColor;
    opacity: 0.6;
}

.status-success {
    background: #dcfce7;
    color: #166534;
}

.status-warning {
    background: #fff7ed;
    color: #9a3412;
}

.status-danger {
    background: #fee2e2;
    color: #991b1b;
}

.status-neutral {
    background: #f1f5f9;
    color: #475569;
}

.btn-table-action {
    font-size: 12px;
    font-weight: 600;
    color: #fff;
    padding: 8px 16px;
    background: linear-gradient(90deg, #004583 0%, #0056a3 100%);
    border-radius: 6px;
    text-decoration: none;
    transition: 0.2s;
    box-shadow: 0 3px 8px rgba(0, 69, 131, 0.2);
    display: inline-block;
}

.btn-table-action:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 12px rgba(0, 69, 131, 0.3);
}

/* License List */
.flat-license-item {
    padding: 25px 30px;
    border-bottom: 1px solid #f1f5f9;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    transition: 0.2s;
}

.flat-license-item:hover {
    background: #fcfcfc;
}

.flat-license-item:last-child {
    border-bottom: none;
}

.license-meta h4 {
    font-size: 16px;
    font-weight: 700;
    color: #1e293b;
    margin: 0 0 6px 0;
}

.license-meta span {
    font-size: 13px;
    color: #64748b;
    font-weight: 500;
}

.license-code {
    font-family: 'Monaco', 'Courier New', monospace;
    background: #f8fbff;
    padding: 10px 20px;
    border-radius: 8px;
    color: #004583;
    font-size: 14px;
    font-weight: 600;
    border: 1px dashed #bfdbfe;
    letter-spacing: 1px;
}

.btn-download-flat {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: linear-gradient(135deg, #004583 0%, #7ba3aa 100%);
    color: #fff;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s;
    box-shadow: 0 4px 12px rgba(0, 69, 131, 0.2);
}

.btn-download-flat:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0, 69, 131, 0.3);
}

/* Empty State */
.flat-empty-state {
    text-align: center;
    padding: 60px 20px;
}

.flat-empty-state i {
    font-size: 48px;
    color: #cbd5e1;
    margin-bottom: 20px;
    display: inline-block;
}

.flat-empty-state h3 {
    font-size: 18px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 10px;
}

.flat-empty-state p {
    font-size: 14px;
    color: #64748b;
    margin-bottom: 25px;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

.flat-btn-primary {
    background: linear-gradient(90deg, #004583 0%, #7ba3aa 100%);
    color: #fff;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    display: inline-block;
    box-shadow: 0 4px 15px rgba(0, 69, 131, 0.25);
    transition: 0.3s;
}

.flat-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 69, 131, 0.35);
}


/* Responsive Design - Mobile Optimized */
@media (max-width: 1200px) {
    .dashboard-container {
        padding: 0 15px;
    }
}

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

    .flat-sidebar {
        position: static;
        margin-bottom: 10px;
    }

    .flat-user-profile {
        display: flex;
        flex-direction: row;
        /* Keep side-by-side on mobile sidebar */
        align-items: center;
        text-align: left;
        gap: 15px;
        padding: 20px;
    }

    .flat-avatar {
        margin: 0;
        width: 60px;
        height: 60px;
        font-size: 24px;
    }

    .flat-user-info {
        text-align: left;
    }

    .flat-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .dashboard-wrapper {
        padding: 20px 0 60px;
    }

    .flat-stats-grid {
        grid-template-columns: 1fr;
        /* Stack stats on mobile */
        gap: 15px;
    }

    .flat-stat-card {
        padding: 20px;
        align-items: flex-start;
        /* Align left */
    }

    .stat-icon-wrapper {
        margin-bottom: 5px;
    }

    .flat-stat-card {
        flex-direction: row;
        align-items: center;
    }

    .flat-card-header {
        padding: 15px 20px;
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .flat-btn-text {
        width: 100%;
        justify-content: center;
    }

    .flat-table th,
    .flat-table td {
        padding: 15px 20px;
        white-space: nowrap;
        /* Allow scroll for tables */
    }

    /* License Mobile */
    .flat-license-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
        padding: 20px;
    }

    .license-code {
        width: 100%;
        text-align: center;
        font-size: 13px;
        padding: 12px;
    }

    .btn-download-flat {
        width: 100%;
        justify-content: center;
    }

    /* Page Header Mobile */
    .flat-page-header h2 {
        font-size: 20px;
    }
}