/* Reset & Base */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    background-color: #f8fafc;
    color: #1e293b;
    line-height: 1.6;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
}

/* Global Transitions */
a, button, input, .product-card, .btn {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Modern Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: #f1f5f9;
}
::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
    background: #94a3b8;
}

/* Header Refinement */
.site-header {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
}

/* Hero Section Modernization */
.hero-section {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    position: relative;
    overflow: hidden;
    padding: 100px 0;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(249, 115, 22, 0.15) 0%, transparent 70%);
    border-radius: 50%;
}

.hero-title {
    font-size: 56px;
    letter-spacing: -0.02em;
    background: linear-gradient(to right, #ffffff, #94a3b8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Modern Card Design */
.product-card {
    border: 1px solid rgba(226, 232, 240, 0.6);
    background: #ffffff;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    border-color: #f97316;
}

.product-image-wrapper {
    background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);
}

.product-badge {
    background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
    box-shadow: 0 4px 6px -1px rgba(249, 115, 22, 0.3);
}

/* Button Refinement */
.btn {
    letter-spacing: 0.01em;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-primary {
    background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
    box-shadow: 0 4px 6px -1px rgba(249, 115, 22, 0.2);
}

.btn-primary:hover {
    box-shadow: 0 10px 15px -3px rgba(249, 115, 22, 0.3);
    transform: translateY(-1px);
}

/* Sidebar & Filters Modernization */
.filter-group {
    border: none;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
    background: #ffffff;
}

.category-header {
    border: none;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}

/* Feature Items Modernization */
.feature-item {
    padding: 30px;
    border-radius: 12px;
    background: #ffffff;
    border: 1px solid #f1f5f9;
    transition: all 0.3s ease;
}

.feature-item:hover {
    border-color: #f97316;
    background: #fff7ed;
}

.feature-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: #fff7ed;
    border-radius: 12px;
    margin-bottom: 20px;
    font-size: 24px;
}

/* Utility Extensions */
.shadow-sm { box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05); }
.shadow-md { box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1); }
.rounded-lg { border-radius: 12px; }


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

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

button {
    cursor: pointer;
    font-family: inherit;
    border: none;
    background: none;
}

/* Utility Classes */
.d-block {
    display: block;
}

.h-100 {
    height: 100%;
}

.text-decoration-none {
    text-decoration: none;
}

/* Layout */
/* Container Refinement */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Section Header Modernization */
.section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 40px;
    border-bottom: 2px solid #f1f5f9;
    padding-bottom: 15px;
}

.section-title {
    font-size: 28px;
    font-weight: 800;
    color: #0f172a;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -17px;
    left: 0;
    width: 60px;
    height: 4px;
    background: #f97316;
    border-radius: 2px;
}

/* Category Detail Page Specifics */
.category-sidebar {
    position: sticky;
    top: 100px;
}

.filter-group {
    border-radius: 16px;
    padding: 24px;
    margin-bottom: 24px;
}

.filter-title {
    font-size: 18px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.category-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 30px 40px;
    margin-bottom: 40px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.category-header-text {
    flex: 1;
    padding-right: 40px;
}

.category-title {
    font-size: 32px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 10px;
}

.category-description {
    font-size: 16px;
    color: #64748b;
    line-height: 1.6;
    max-width: 800px;
}

.category-sorting {
    flex-shrink: 0;
}

/* Footer Glassmorphism */
.site-footer {
    background: #0f172a;
    color: #94a3b8;
    padding-top: 80px;
    margin-top: 80px;
}

.footer-top {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 50px;
}

.footer-widget-title {
    color: #ffffff;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 25px;
}

/* Stats Bar Modernization */
.stats-bar {
    background: linear-gradient(to right, #1e293b, #0f172a);
    border-radius: 20px;
    padding: 40px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
    .stats-bar {
        padding: 20px;
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
}

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

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

.stat-value {
    font-size: 32px;
    font-weight: 800;
    color: #f97316;
    display: block;
}

.stat-label {
    font-size: 14px;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Category Backgrounds (Modern Tones) */
#wordpress-licenses { background-color: #f8fafc; }
#windows-licenses { background-color: #f0f9ff; }
#office-licenses { background-color: #fdf2f8; }
#antivirus-licenses { background-color: #f0fdf4; }

/* Fake Notification Styles - Ultra Modern */
.fake-notification {
    position: fixed;
    bottom: 30px;
    left: 30px; /* Daha az rahatsız edici olması için sola aldık */
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    padding: 12px;
    z-index: 9999;
    transform: translateX(-150%);
    transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    width: 320px;
    border: 1px solid rgba(249, 115, 22, 0.1);
}

.fake-notification.show {
    transform: translateX(0);
}

.notification-content {
    display: flex;
    align-items: center;
    gap: 12px;
    position: relative;
}

.notification-icon {
    font-size: 20px;
    background: linear-gradient(135deg, #f97316, #ea580c);
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    flex-shrink: 0;
    color: white;
    box-shadow: 0 4px 12px rgba(249, 115, 22, 0.3);
}

.notification-text-wrapper {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.notification-text {
    font-size: 13px;
    color: #475569;
    line-height: 1.4;
}

.notification-text strong {
    color: #0f172a;
    font-weight: 700;
}

.notification-time {
    font-size: 11px;
    color: #94a3b8;
    display: block;
}

.notification-close {
    position: absolute;
    top: -8px;
    right: -8px;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    font-size: 14px;
    cursor: pointer;
    color: #64748b;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.notification-close:hover {
    background: #f1f5f9;
    color: #0f172a;
    transform: scale(1.1);
}

/* Progress bar for auto-hide */
.notification-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 3px;
    background: #f97316;
    width: 0%;
    border-radius: 0 0 0 16px;
}

.show .notification-progress {
    animation: progress 5s linear forwards;
}

@keyframes progress {
    from { width: 0%; }
    to { width: 100%; }
}

@media (max-width: 576px) {
    .fake-notification {
        bottom: 20px;
        left: 15px;
        right: 15px;
        width: auto;
        transform: translateY(150%);
    }
    .fake-notification.show {
        transform: translateY(0);
    }
}
/* Authentication Pages Styles */
.auth-page-bg {
    background-color: #f8fafc;
    background-image: radial-gradient(#e2e8f0 1px, transparent 1px);
    background-size: 20px 20px;
    padding: 80px 0;
    min-height: calc(100vh - 400px);
    display: flex;
    align-items: center;
}

.auth-container {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    background: #ffffff;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.08);
}

.auth-card {
    padding: 60px;
}

.auth-header {
    margin-bottom: 40px;
}

.auth-title {
    font-size: 32px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 12px;
}

.auth-subtitle {
    color: #64748b;
    font-size: 16px;
}

.auth-form .form-group {
    margin-bottom: 24px;
}

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

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

.forgot-password {
    font-size: 13px;
    color: #f97316;
    font-weight: 600;
    text-decoration: none;
}

.input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.input-icon {
    position: absolute;
    left: 16px;
    font-size: 18px;
    color: #94a3b8;
}

.form-input {
    width: 100%;
    padding: 14px 16px 14px 48px;
    background: #f1f5f9;
    border: 2px solid transparent;
    border-radius: 12px;
    font-size: 15px;
    color: #0f172a;
    transition: all 0.2s;
}

.form-input:focus {
    background: #ffffff;
    border-color: #f97316;
    box-shadow: 0 0 0 4px rgba(249, 115, 22, 0.1);
    outline: none;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.input-hint {
    font-size: 12px;
    color: #94a3b8;
    margin-top: 6px;
}

.checkbox-group {
    margin-top: -8px;
}

.custom-checkbox {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: #475569;
    cursor: pointer;
}

.btn-auth {
    padding: 16px;
    font-size: 16px;
    font-weight: 700;
    margin-top: 10px;
}

.auth-footer {
    margin-top: 32px;
    text-align: center;    font-size: 14px;
    color: #64748b;
    padding-top: 24px;
    border-top: 1px solid #f1f5f9;
}

.auth-link {
    color: #f97316;
    font-weight: 700;
    text-decoration: none;
}

.auth-info-card {
    background: linear-gradient(135deg, #0f172a, #1e293b);
    padding: 60px;
    color: #ffffff;
    display: flex;
    align-items: center;
}

.info-badge {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(249, 115, 22, 0.2);
    color: #f97316;
    border-radius: 100px;
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 32px;
    border: 1px solid rgba(249, 115, 22, 0.3);
}

.info-list {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.info-list li {
    display: flex;
    gap: 20px;
}

.info-icon {
    font-size: 24px;
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.info-text strong {
    display: block;
    font-size: 18px;
    margin-bottom: 4px;
    color: #f8fafc;
}

.info-text p {
    font-size: 14px;
    color: #94a3b8;
    line-height: 1.6;
}

@media (max-width: 992px) {
    .auth-container {
        grid-template-columns: 1fr;
    }
    .auth-info-card {
        display: none;
    }
    .auth-card {
        padding: 40px 30px;
    }
}

@media (max-width: 576px) {
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
}

/* Header */
.site-header {
    background-color: #ffffff;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 100;
}

.header-main {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 0;
    gap: 20px;
}

.site-logo {
    font-size: 24px;
    font-weight: 700;
    color: #0f172a;
    text-transform: uppercase;
    letter-spacing: -0.5px;
}

.logo-accent {
    color: #f97316;
}

/* Search */
.header-search {
    flex: 1;
    max-width: 500px;
}

.search-form {
    display: flex;
    border: 1px solid #e2e8f0;
    border-radius: 6px;
    overflow: hidden;
    transition: border-color 0.2s;
}

.search-form:focus-within {
    border-color: #f97316;
}

.search-input {
    flex: 1;
    padding: 10px 15px;
    border: none;
    outline: none;
    font-size: 14px;
    color: #334155;
}

.search-button {
    padding: 0 20px;
    background-color: #f1f5f9;
    color: #64748b;
    font-weight: 500;
    font-size: 14px;
    transition: background-color 0.2s;
}

.search-button:hover {
    background-color: #e2e8f0;
    color: #0f172a;
}

/* Header Actions */
.register-link {
    background-color: #f97316;
    color: white !important;
    border-radius: 8px;
    padding: 8px 16px;
    transition: all 0.2s;
}

.register-link:hover {
    background-color: #ea580c;
    transform: translateY(-2px);
}

.action-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #475569;
    font-weight: 600;
    font-size: 14px;
    transition: color 0.2s;
}

.action-link:hover {
    color: #f97316;
}

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

.action-link {
    font-size: 14px;
    font-weight: 500;
    color: #475569;
}

.action-link:hover {
    color: #f97316;
}

.cart-wrapper {
    position: relative;
}

.cart-button {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background-color: #fff7ed;
    color: #f97316;
    border-radius: 6px;
    font-weight: 600;
    font-size: 14px;
    transition: background-color 0.2s;
}

.cart-button:hover {
    background-color: #ffedd5;
}

.cart-count {
    background-color: #f97316;
    color: #ffffff;
    font-size: 12px;
    padding: 2px 6px;
    border-radius: 10px;
    line-height: 1;
}

.mini-cart-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    margin-top: 10px;
    width: 300px;
    background-color: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    padding: 20px;
    display: none;
    z-index: 101;
}

.mini-cart-dropdown.active {
    display: block;
}

.empty-cart-message {
    text-align: center;
    color: #64748b;
    font-size: 14px;
}

/* Navigation */
.main-navigation {
    border-top: 1px solid #f1f5f9;
}

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

.nav-link {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 15px 0;
    font-size: 14px;
    font-weight: 500;
    color: #475569;
    border-bottom: 2px solid transparent;
}

.nav-link:hover {
    color: #f97316;
    border-bottom-color: #f97316;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 10px;
    background: #f1f5f9;
    border-radius: 8px;
    cursor: pointer;
    border: none;
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
        order: 0;
        margin-right: 10px;
    }
}

.menu-icon-line {
    width: 24px;
    height: 2px;
    background-color: #334155;
    border-radius: 2px;
}

.mobile-menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 90;
}

.mobile-menu-overlay.active {
    display: block;
}

/* Hero Section */
.hero-section {
    background-color: #0f172a;
    color: #ffffff;
    padding: 80px 0;
    text-align: center;
}

.hero-title {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.1;
}

.hero-description {
    font-size: 18px;
    color: #cbd5e1;
    max-width: 600px;
    margin: 0 auto 40px;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 6px;
    font-weight: 600;
    text-align: center;
    transition: all 0.2s;
    font-size: 16px;
}

.btn-primary {
    background-color: #f97316;
    color: #ffffff;
}

.btn-primary:hover {
    background-color: #ea580c;
}

.btn-sm {
    padding: 8px 16px;
    font-size: 14px;
}

.btn-outline {
    border: 1px solid #e2e8f0;
    color: #f97316;
    background-color: #ffffff;
}

.btn-outline:hover {
    border-color: #f97316;
    background-color: #fff7ed;
}

/* Features */
.features-section {
    padding: 60px 0;
    background-color: #ffffff;
    border-bottom: 1px solid #e2e8f0;
}

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

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

.feature-icon {
    font-size: 32px;
    margin-bottom: 15px;
}

.feature-title {
    font-size: 16px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 10px;
}

.feature-text {
    font-size: 14px;
    color: #64748b;
}

/* Products */
.products-section {
    padding: 60px 0;
}

#wordpress-licenses {
    background-color: #ffffff;
}

#windows-licenses {
    background-color: #f0f9ff; /* Light Sky Blue */
}

#office-licenses {
    background-color: #fff7ed; /* Light Orange */
}

#antivirus-licenses {
    background-color: #f0fdf4; /* Light Green */
}

.section-header {
    margin-bottom: 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.section-title {
    font-size: 24px;
    font-weight: 700;
    color: #0f172a;
}

.view-all {
    font-size: 14px;
    font-weight: 600;
    color: #f97316;
    transition: color 0.2s;
}

.view-all:hover {
    color: #ea580c;
    text-decoration: underline;
}

/* Category Page Layout */
.category-page-bg {
    background-image: url('../../bg.svg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
    min-height: 100vh;
}

.category-page-section {
    padding: 60px 0;
}

.category-layout {
    display: block;
}

.category-sidebar {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.filter-group {
    background-color: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 20px;
}

.filter-title {
    font-size: 16px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid #f1f5f9;
}

.filter-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.filter-list li a {
    font-size: 14px;
    color: #475569;
    display: block;
    transition: all 0.2s;
}

.filter-list li a:hover,
.filter-list li a.active {
    color: #f97316;
    padding-left: 5px;
}

.filter-checkbox {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: #475569;
    cursor: pointer;
}

.price-range-inputs {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.price-input {
    width: 100%;
    padding: 8px 12px;
    border: 1px solid #e2e8f0;
    border-radius: 4px;
    font-size: 14px;
}

.price-sep {
    color: #94a3b8;
}

.category-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    background-color: #ffffff;
    padding: 20px;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
}

.category-title {
    font-size: 24px;
    font-weight: 700;
    color: #0f172a;
}

.sort-select {
    padding: 8px 12px;
    border: 1px solid #e2e8f0;
    border-radius: 4px;
    font-size: 14px;
    color: #475569;
    outline: none;
}

.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 40px;
}

.page-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    color: #475569;
    transition: all 0.2s;
}

.page-link:hover,
.page-link.active {
    background-color: #f97316;
    border-color: #f97316;
    color: #ffffff;
}

.page-dots {
    color: #94a3b8;
}

.mt-10 { margin-top: 10px; }
.w-100 { width: 100%; }

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

/* Mobile Responsive Adjustments */
@media (max-width: 1024px) {
    .product-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .header-main {
        padding: 15px 0;
        flex-wrap: wrap;
    }

    .header-logo {
        order: 1;
    }

    .header-actions {
        order: 2;
    }

    .header-search {
        order: 3;
        flex: 0 0 100%;
        max-width: 100%;
        margin: 15px 0 0 0;
    }

    .main-navigation {
        display: none; /* Mobile menu will be handled by JS/Off-canvas */
        position: fixed;
        top: 0;
        left: -100%;
        width: 80%;
        height: 100%;
        background-color: #ffffff;
        z-index: 1000;
        transition: all 0.3s ease;
        padding-top: 60px;
        box-shadow: 10px 0 30px rgba(0,0,0,0.1);
    }

    .main-navigation.active {
        display: block;
        left: 0;
    }

    .nav-list {
        flex-direction: column;
        padding: 20px;
    }

    .nav-list li {
        margin: 10px 0;
    }

    .hero-title {
        font-size: 2rem;
    }

    .product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

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

    .footer-row {
        flex-direction: column;
        gap: 30px;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .large-stat {
        grid-column: span 1;
    }

    /* Product Detail Mobile */
    .product-detail-grid {
        grid-template-columns: 1fr;
    }

    .product-tabs-nav {
        overflow-x: auto;
        white-space: nowrap;
        justify-content: flex-start;
        padding-bottom: 5px;
    }

    .tab-btn {
        padding: 10px 15px;
        font-size: 14px;
    }
}

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

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

    .hero-title {
        font-size: 1.75rem;
    }

    .section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
}

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

.product-card {
    background-color: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.2s, box-shadow 0.2s;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.product-image-wrapper {
    height: 200px;
    background-color: #f1f5f9;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.product-image-placeholder {
    color: #94a3b8;
    font-weight: 600;
    font-size: 18px;
}

.product-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background-color: #f97316;
    color: #ffffff;
    font-size: 12px;
    font-weight: 700;
    padding: 4px 8px;
    border-radius: 4px;
}

.product-info {
    padding: 20px;
}

.product-category {
    display: block;
    font-size: 12px;
    color: #64748b;
    margin-bottom: 5px;
}

.product-title {
    font-size: 16px;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 15px;
    height: 44px; /* Limit to 2 lines */
    overflow: hidden;
}

.product-title a:hover {
    color: #f97316;
}

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

.old-price {
    font-size: 14px;
    color: #94a3b8;
    text-decoration: line-through;
}

.current-price {
    font-size: 18px;
    font-weight: 700;
    color: #0f172a;
}

.btn-add-cart {
    width: 100%;
}

/* New Footer Design */
.site-footer {
    background-color: #ffffff;
    color: #475569;
    border-top: 1px solid #e2e8f0;
    margin-top: 60px;
    font-size: 14px;
}

/* Stats Section */
.footer-stats-section {
    padding: 30px 0;
    background-color: #f8fafc;
    border-bottom: 1px solid #e2e8f0;
}

.stats-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    gap: 20px;
    align-items: center;
}

.stat-card {
    background-color: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 6px;
    padding: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
    min-height: 80px;
}

.large-stat {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-right: 20px;
}

.stat-icon-wrapper {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f1f5f9;
    border-radius: 8px;
    color: #64748b;
}

.stat-icon-wrapper .text-blue { color: #3b82f6; }
.stat-icon-wrapper .text-gray { color: #64748b; }

.stat-info {
    display: flex;
    flex-direction: column;
    line-height: 1.4;
}

.stat-label {
    font-size: 12px;
    color: #64748b;
}

.stat-value {
    font-size: 14px;
    font-weight: 700;
    color: #0f172a;
    display: flex;
    align-items: center;
    gap: 5px;
}

.user-link {
    color: #10b981;
}

.info-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background-color: #cbd5e1;
    color: #fff;
    font-size: 10px;
    cursor: help;
}

.btn-members-online {
    background-color: #f97316;
    color: #ffffff;
    font-size: 12px;
    font-weight: 600;
    padding: 8px 16px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
    transition: background-color 0.2s;
}

.btn-members-online:hover {
    background-color: #ea580c;
    color: #ffffff;
}

/* Main Footer Content */
.footer-main-content {
    padding: 50px 0;
}

.footer-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 60px;
}

.footer-logo-wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.footer-logo-icon {
    color: #f97316;
}

.footer-brand-name {
    font-size: 20px;
    font-weight: 800;
    color: #0f172a;
    letter-spacing: -0.5px;
}

.footer-description {
    font-size: 14px;
    color: #475569;
    line-height: 1.6;
    margin-bottom: 20px;
}

.footer-disclaimer-text {
    font-size: 12px;
    color: #94a3b8;
    font-style: italic;
}

.footer-heading {
    font-size: 16px;
    font-weight: 600;
    color: #0f172a;
    margin-bottom: 20px;
}

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

.footer-menu a {
    color: #475569;
    transition: color 0.2s;
}

.footer-menu a:hover {
    color: #f97316;
    text-decoration: underline;
}

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

.contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    color: #475569;
}

.contact-icon {
    color: #64748b;
    font-weight: 600;
    min-width: 20px;
}

/* Bottom Bar */
.footer-bottom-bar {
    border-top: 1px solid #e2e8f0;
    padding: 20px 0;
    background-color: #ffffff;
}

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

.bottom-left {
    display: flex;
    gap: 20px;
}

.bottom-link {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: #64748b;
    font-weight: 500;
}

.bottom-link:hover {
    color: #0f172a;
}

.bottom-right {
    display: flex;
    gap: 20px;
}

.bottom-right a {
    font-size: 13px;
    color: #64748b;
}

.bottom-right a:hover {
    color: #f97316;
    text-decoration: underline;
}

/* Responsive Footer */
@media (max-width: 1200px) {
    .stats-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .large-stat {
        grid-column: span 3;
    }
}

@media (max-width: 992px) {
    .footer-row {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .large-stat {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    .bottom-bar-inner {
        flex-direction: column;
        gap: 20px;
        align-items: flex-start;
    }

    .bottom-right {
        flex-wrap: wrap;
        gap: 15px;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .large-stat {
        grid-column: span 1;
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    
    .btn-members-online {
        width: 100%;
        justify-content: center;
    }
}

/* Purchases Page Styles */
.page-section {
    padding: 40px 0;
}

.section-header {
    margin-bottom: 40px;
    text-align: center;
}

.page-title {
    font-size: 32px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 10px;
}

.page-subtitle {
    font-size: 16px;
    color: #64748b;
}

.purchases-table-wrapper {
    background-color: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

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

.purchases-table th {
    background-color: #f8fafc;
    padding: 16px 24px;
    text-align: left;
    font-size: 14px;
    font-weight: 600;
    color: #475569;
    border-bottom: 1px solid #e2e8f0;
}

.purchases-table td {
    padding: 16px 24px;
    border-bottom: 1px solid #e2e8f0;
    font-size: 14px;
    color: #1e293b;
}

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

.purchases-table tr:hover {
    background-color: #f8fafc;
}

.user-cell {
    display: flex;
    align-items: center;
    gap: 12px;
}

.user-avatar-placeholder {
    width: 32px;
    height: 32px;
    background-color: #e0f2fe;
    color: #0284c7;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 14px;
}

.username {
    font-weight: 500;
}

.product-link {
    color: #2563eb;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}

.product-link:hover {
    color: #1d4ed8;
    text-decoration: underline;
}

.quantity-badge {
    background-color: #f1f5f9;
    color: #475569;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.time-text {
    color: #64748b;
    font-size: 13px;
}

@media (max-width: 768px) {
    .purchases-table-wrapper {
        overflow-x: auto;
    }
    
    .purchases-table th, 
    .purchases-table td {
        white-space: nowrap;
        padding: 12px 16px;
    }
}

/* Product Detail Page */
.breadcrumb-section {
    background-color: #f8fafc;
    padding: 15px 0;
    border-bottom: 1px solid #e2e8f0;
    margin-bottom: 30px;
}

.breadcrumb {
    display: flex;
    gap: 10px;
    font-size: 14px;
    color: #64748b;
}

.breadcrumb a {
    color: #64748b;
}

.breadcrumb a:hover {
    color: #f97316;
}

.breadcrumb li:not(:last-child)::after {
    content: "/";
    margin-left: 10px;
    color: #cbd5e1;
}

.product-detail-section {
    padding-bottom: 60px;
}

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

.product-gallery {
    background-color: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 20px;
}

.main-image {
    position: relative;
    aspect-ratio: 1/1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-image-placeholder.big {
    width: 100%;
    height: 100%;
    font-size: 24px;
}

.detail-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    padding: 6px 12px;
    font-size: 14px;
}

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

.product-title-large {
    font-size: 32px;
    font-weight: 700;
    color: #1e293b;
    line-height: 1.2;
}

.product-meta-detail {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #e2e8f0;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    color: #475569;
    font-weight: 500;
}

.product-price-detail {
    display: flex;
    align-items: baseline;
    gap: 15px;
}

.detail-old-price {
    font-size: 18px;
    color: #94a3b8;
    text-decoration: line-through;
}

.detail-current-price {
    font-size: 36px;
    font-weight: 800;
    color: #f97316;
}

.product-description-short {
    color: #475569;
    line-height: 1.6;
}

.feature-list {
    margin-top: 15px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
}

.feature-list li::before {
    content: "✓";
    color: #f97316;
    font-weight: 700;
}

.product-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 10px;
}

.quantity-selector {
    display: flex;
    align-items: center;
    border: 1px solid #e2e8f0;
    border-radius: 6px;
    overflow: hidden;
}

.qty-btn {
    width: 40px;
    height: 48px;
    background-color: #f8fafc;
    color: #1e293b;
    font-weight: 600;
    cursor: pointer;
}

.qty-btn:hover {
    background-color: #e2e8f0;
}

.qty-input {
    width: 50px;
    height: 48px;
    text-align: center;
    border: none;
    font-weight: 600;
    color: #1e293b;
}

.btn-lg {
    padding: 12px 30px;
    font-size: 16px;
}

.lm-puan-badge {
    background-color: #f0f9ff;
    color: #0369a1;
    padding: 4px 10px;
    border-radius: 6px;
    border: 1px solid #bae6fd;
    font-weight: 700;
}

.lm-puan-badge .icon {
    filter: drop-shadow(0 0 2px rgba(3, 105, 161, 0.2));
}

.payment-methods {
    margin-top: 10px;
    padding: 15px;
    background-color: #f8fafc;
    border-radius: 6px;
}

.payment-title {
    font-size: 13px;
    font-weight: 600;
    color: #64748b;
    margin-bottom: 10px;
}

.payment-icons-row {
    display: flex;
    gap: 10px;
}

.payment-icons-row span {
    font-size: 12px;
    background-color: #fff;
    border: 1px solid #e2e8f0;
    padding: 4px 8px;
    border-radius: 4px;
    color: #475569;
}

.product-tabs-wrapper {
    margin-top: 40px;
}

.product-tabs {
    display: flex;
    border-bottom: 2px solid #e2e8f0;
    margin-bottom: 30px;
}

.tab-item {
    padding: 15px 30px;
    font-weight: 600;
    color: #64748b;
    cursor: pointer;
    border-bottom: 2px solid transparent;
    margin-bottom: -2px;
    transition: all 0.2s;
}

.tab-item:hover {
    color: #f97316;
}

.tab-item.active {
    color: #f97316;
    border-bottom-color: #f97316;
}

.tab-content {
    display: none;
    color: #475569;
    line-height: 1.7;
}

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

.tab-content h3 {
    font-size: 20px;
    color: #1e293b;
    margin-bottom: 15px;
}

/* Specs Styles */
.specs-container {
    background-color: #f8fafc;
    padding: 25px;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
}

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

.specs-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #e2e8f0;
    padding-bottom: 12px;
}

.specs-list li:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.spec-label {
    font-weight: 700;
    color: #1e293b;
    font-size: 15px;
}

.spec-value {
    color: #475569;
    font-size: 15px;
}

/* Activation Steps Styles */
.activation-steps {
    margin-top: 25px;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.step-item {
    background: #ffffff;
    padding: 20px;
    border-radius: 12px;
    border: 1px solid #f1f5f9;
    box-shadow: 0 1px 3px rgba(0,0,0,0.02);
}

.step-title {
    font-size: 17px;
    font-weight: 700;
    color: #f97316;
    margin-bottom: 10px;
}

.step-desc {
    font-size: 14px;
    color: #475569;
    line-height: 1.6;
}

.activation-note {
    background-color: #fff7ed;
    padding: 20px;
    border-left: 5px solid #f97316;
    border-radius: 8px;
}

.activation-note p {
    font-size: 14px;
    color: #c2410c;
    margin: 0;
}

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

    .product-title-large {
        font-size: 28px;
    }
}

@media (max-width: 576px) {
    .product-actions {
        flex-direction: column;
    }
    
    .btn-add-cart {
        width: 100%;
        justify-content: center;
    }

    .product-tabs {
        overflow-x: auto;
        white-space: nowrap;
    }

    .tab-item {
        padding: 15px 20px;
    }
}

/* Footer Responsive Fix */
@media (max-width: 992px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .product-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 16px;
    }

    .header-main {
        padding: 15px 0;
        flex-wrap: wrap;
    }

    .site-logo {
        font-size: 20px;
    }

    .header-search {
        order: 3;
        max-width: 100%;
        margin-top: 15px;
    }

    .search-form {
        background: #f8fafc;
    }

    .header-actions {
        gap: 12px;
    }

    .action-text {
        display: none;
    }

    .register-link {
        padding: 8px 12px;
    }

    .main-navigation {
        display: none;
        position: fixed;
        top: 0;
        left: -100%;
        width: 80%;
        height: 100%;
        background-color: #ffffff;
        z-index: 1000;
        transition: all 0.3s ease;
        padding-top: 60px;
        box-shadow: 10px 0 30px rgba(0,0,0,0.1);
    }

    .main-navigation.active {
        display: block;
        left: 0;
    }

    .nav-list {
        flex-direction: column;
        gap: 0;
    }

    .nav-link {
        padding: 15px 24px;
        font-size: 16px;
        border-bottom: 1px solid #f1f5f9;
        width: 100%;
    }

    .mobile-menu-toggle {
        display: flex;
        z-index: 1001;
    }

    .hero-title {
        font-size: 32px;
    }
    
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    /* Stats Grid Fix for 768px */
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .large-stat {
        grid-column: span 1;
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
}

@media (max-width: 576px) {
    .hero-section {
        padding: 40px 0;
    }

    .hero-title {
        font-size: 28px;
    }

    .hero-description {
        font-size: 15px;
    }

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

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

    .section-title {
        font-size: 22px;
    }

    .product-card {
        max-width: 100%;
    }

    .footer-main-content {
        padding: 40px 0;
    }

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

    .footer-logo-wrapper {
        justify-content: center;
    }

    .contact-list li {
        justify-content: center;
    }

    .bottom-bar-inner {
        text-align: center;
        align-items: center;
    }

    .bottom-left, .bottom-right {
        justify-content: center;
        width: 100%;
    }
}
