/* ==========================================================================
   MODERN E-TİCARET STYLE.CSS - HAYSIFACOM
   ========================================================================== */

/* Material Icons Fallback System */
@import url('https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@24,400,0,0');
@import url('https://fonts.googleapis.com/icon?family=Material+Icons');

/* Fallback for Material Icons */
.material-symbols-outlined {
    font-family: 'Material Symbols Outlined', 'Material Icons', sans-serif;
    font-weight: normal;
    font-style: normal;
    font-size: 24px;
    line-height: 1;
    letter-spacing: normal;
    text-transform: none;
    display: inline-block;
    white-space: nowrap;
    word-wrap: normal;
    direction: ltr;
    -webkit-font-feature-settings: 'liga';
    -webkit-font-smoothing: antialiased;
}

/* Fallback for old Material Icons */
.material-icons {
    font-family: 'Material Icons', 'Material Symbols Outlined', sans-serif;
    font-weight: normal;
    font-style: normal;
    font-size: 24px;
    line-height: 1;
    letter-spacing: normal;
    text-transform: none;
    display: inline-block;
    white-space: nowrap;
    word-wrap: normal;
    direction: ltr;
    -webkit-font-feature-settings: 'liga';
    -webkit-font-smoothing: antialiased;
}

/* Son Gelen Siparişler Tablosu */
#recent-orders-body .data-table {
    font-size: 0.9em;
}

#recent-orders-body td {
    padding: 8px 12px;
    vertical-align: top;
}

#recent-orders-body td:nth-child(4) {
    max-width: 200px;
    word-wrap: break-word;
}

/* E-mail Doğrulama Stilleri */
.verification-status {
    text-align: center;
    padding: var(--space-8);
    background: var(--bg-primary);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
    margin-bottom: var(--space-6);
}

.loading-spinner {
    margin-bottom: var(--space-6);
}

.loading-spinner .material-symbols-outlined {
    font-size: 3rem;
    color: var(--primary-color);
}

.rotating {
    animation: rotate 2s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.success-icon .material-symbols-outlined {
    font-size: 4rem;
    color: var(--success-color);
    margin-bottom: var(--space-4);
}

.error-icon .material-symbols-outlined {
    font-size: 4rem;
    color: var(--error-color);
    margin-bottom: var(--space-4);
}

.verification-status h2 {
    color: var(--text-primary);
    font-size: var(--font-size-2xl);
    font-weight: 600;
    margin-bottom: var(--space-4);
}

.verification-status p {
    color: var(--text-secondary);
    font-size: var(--font-size-lg);
    margin-bottom: var(--space-6);
    line-height: 1.6;
}

.verification-status .btn {
    margin: var(--space-2);
    min-width: 200px;
}

.verification-status .btn .material-symbols-outlined {
    margin-right: var(--space-2);
}

/* Responsive */
@media (max-width: 768px) {
    .verification-status {
        padding: var(--space-6);
        margin: var(--space-4);
    }
    
    .verification-status h2 {
        font-size: var(--font-size-xl);
    }
    
    .verification-status p {
        font-size: var(--font-size-base);
    }
    
    .verification-status .btn {
        min-width: 100%;
        margin: var(--space-2) 0;
    }
}

/* 1. GOOGLE FONTS & ICONS - Moved to top of file */

/* 2. CSS CUSTOM PROPERTIES */
:root {
    /* Colors */
    --primary-color: #2d5016;
    --primary-light: #4a7c29;
    --primary-dark: #1e3a0f;
    --secondary-color: #f39c12;
    --success-color: #27ae60;
    --warning-color: #f39c12;
    --error-color: #e74c3c;
    --info-color: #3498db;
    
    /* Grays */
    --gray-50: #f8f9fa;
    --gray-100: #e9ecef;
    --gray-200: #dee2e6;
    --gray-300: #ced4da;
    --gray-400: #adb5bd;
    --gray-500: #6c757d;
    --gray-600: #495057;
    --gray-700: #343a40;
    --gray-800: #212529;
    --gray-900: #121212;
    
    /* Text Colors */
    --text-primary: #212529;
    --text-secondary: #6c757d;
    --text-muted: #adb5bd;
    --text-white: #ffffff;
    
    /* Background Colors */
    --bg-primary: #ffffff;
    --bg-secondary: #f8f9fa;
    --bg-dark: #343a40;
    --bg-overlay: rgba(0, 0, 0, 0.5);
    
    /* Border & Shadow */
    --border-color: #dee2e6;
    --border-radius: 12px;
    --border-radius-sm: 8px;
    --border-radius-lg: 16px;
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 8px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.15);
    --shadow-xl: 0 16px 32px rgba(0, 0, 0, 0.2);
    
    /* Typography */
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-size-xs: 0.75rem;
    --font-size-sm: 0.875rem;
    --font-size-base: 1rem;
    --font-size-lg: 1.125rem;
    --font-size-xl: 1.25rem;
    --font-size-2xl: 1.5rem;
    --font-size-3xl: 1.875rem;
    --font-size-4xl: 2.25rem;
    
    /* Spacing */
    --space-1: 0.25rem;
    --space-2: 0.5rem;
    --space-3: 0.75rem;
    --space-4: 1rem;
    --space-5: 1.25rem;
    --space-6: 1.5rem;
    --space-8: 2rem;
    --space-10: 2.5rem;
    --space-12: 3rem;
    --space-16: 4rem;
    --space-20: 5rem;
    
    /* Transitions */
    --transition: all 0.2s ease;
    --transition-fast: all 0.1s ease;
    --transition-slow: all 0.3s ease;
    
    /* Z-index */
    --z-dropdown: 1000;
    --z-sticky: 1020;
    --z-modal: 1050;
}

/* 3. RESET & BASE STYLES */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family);
    font-size: var(--font-size-base);
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--bg-primary);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

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

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
    transition: var(--transition);
}

input, textarea, select {
    font-family: inherit;
    font-size: inherit;
}

/* 4. UTILITY CLASSES */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-4);
}

.desktop-only {
    display: none;
}

.mobile-only {
    display: block;
}

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

.fw-300 { font-weight: 300; }
.fw-400 { font-weight: 400; }
.fw-500 { font-weight: 500; }
.fw-600 { font-weight: 600; }
.fw-700 { font-weight: 700; }

.text-primary { color: var(--primary-color); }
.text-secondary { color: var(--text-secondary); }
.text-muted { color: var(--text-muted); }
.text-white { color: var(--text-white); }

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

.d-none { display: none; }
.d-block { display: block; }
.d-flex { display: flex; }
.d-grid { display: grid; }

.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.justify-around { justify-content: space-around; }
.align-center { align-items: center; }
.align-start { align-items: flex-start; }
.align-end { align-items: flex-end; }

.gap-1 { gap: var(--space-1); }
.gap-2 { gap: var(--space-2); }
.gap-3 { gap: var(--space-3); }
.gap-4 { gap: var(--space-4); }
.gap-6 { gap: var(--space-6); }
.gap-8 { gap: var(--space-8); }

.mt-0 { margin-top: 0; }
.mt-2 { margin-top: var(--space-2); }
.mt-4 { margin-top: var(--space-4); }
.mt-6 { margin-top: var(--space-6); }
.mt-8 { margin-top: var(--space-8); }
.mb-0 { margin-bottom: 0; }
.mb-2 { margin-bottom: var(--space-2); }
.mb-4 { margin-bottom: var(--space-4); }
.mb-6 { margin-bottom: var(--space-6); }
.mb-8 { margin-bottom: var(--space-8); }

.p-2 { padding: var(--space-2); }
.p-4 { padding: var(--space-4); }
.p-6 { padding: var(--space-6); }
.p-8 { padding: var(--space-8); }

.rounded { border-radius: var(--border-radius); }
.rounded-sm { border-radius: var(--border-radius-sm); }
.rounded-lg { border-radius: var(--border-radius-lg); }
.rounded-full { border-radius: 9999px; }

.shadow { box-shadow: var(--shadow-md); }
.shadow-sm { box-shadow: var(--shadow-sm); }
.shadow-lg { box-shadow: var(--shadow-lg); }

/* 5. LOADING SCREEN */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--bg-primary);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.3s ease;
}

.loading-screen.hidden {
    opacity: 0;
    pointer-events: none;
}

.loading-spinner {
    width: 48px;
    height: 48px;
    border: 4px solid var(--gray-200);
    border-top: 4px solid var(--primary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-bottom: var(--space-4);
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* 6. TOPBAR */
.topbar {
    background-color: var(--primary-color);
    color: var(--text-white);
    padding: var(--space-2) 0;
    font-size: var(--font-size-sm);
}

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

.topbar-left,
.topbar-right {
    display: flex;
    align-items: center;
    gap: var(--space-2);
}

.topbar .material-symbols-outlined {
    font-size: 18px;
}

/* 7. HEADER */
.headbar {
    background-color: var(--bg-primary);
    border-bottom: 1px solid var(--border-color);
    padding: var(--space-3) 0;
    position: sticky;
    top: 0;
    z-index: var(--z-sticky);
}

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

.hamburger-icon {
    padding: var(--space-2);
    color: var(--text-primary);
}

.user-actions {
    display: flex;
    align-items: center;
    gap: var(--space-4);
}

.search-toggle,
.user-dropdown {
    position: relative;
    cursor: pointer;
    padding: var(--space-2);
    border-radius: var(--border-radius);
    transition: var(--transition);
}

/* Masaüstünde search-toggle'ı gizle */
@media (min-width: 769px) {
    .search-toggle {
        display: none;
    }
}

.search-toggle:hover,
.user-dropdown:hover {
    background-color: var(--bg-secondary);
}

.dropdown-content {
    position: absolute;
    top: 100%;
    right: 0;
    background-color: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
    min-width: 200px;
    max-width: 250px;
    z-index: var(--z-dropdown);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: var(--transition);
}

/* User dropdown için responsive positioning */
.user-dropdown .dropdown-content {
    right: auto;
    left: 50%;
    transform: translateX(-50%) translateY(-10px);
    min-width: 180px;
}

.user-dropdown.active .dropdown-content {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

/* Mobile'da dropdown'ı ekran içinde tut */
@media (max-width: 768px) {
    .user-dropdown .dropdown-content {
        right: 0;
        left: auto;
        transform: translateY(-10px);
        min-width: 160px;
        max-width: 200px;
    }
    
    .user-dropdown.active .dropdown-content {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
}


.dropdown-content a {
    display: block;
    padding: var(--space-3) var(--space-4);
    color: var(--text-primary);
    border-bottom: 1px solid var(--border-color);
    transition: var(--transition);
}

.dropdown-content a:last-child {
    border-bottom: none;
}

.dropdown-content a:hover {
    background-color: var(--bg-secondary);
}

.cart-container {
    position: relative;
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background-color: var(--error-color);
    color: var(--text-white);
    font-size: var(--font-size-xs);
    font-weight: 600;
    padding: 2px 6px;
    border-radius: 10px;
    min-width: 18px;
    text-align: center;
}

/* 8. SITE HEADER */
.site-header {
    background-color: var(--bg-primary);
    padding: var(--space-6) 0;
    border-bottom: 1px solid var(--border-color);
}

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

.logo-container img {
    height: 60px;
    width: auto;
}

.header-search {
    flex: 1;
    max-width: 600px;
    margin: 0 var(--space-8);
    position: relative;
}

/* Modern search styles are now in search.css */

.header-info {
    display: flex;
    gap: var(--space-6);
}

.info-item {
    display: flex;
    align-items: center;
    gap: var(--space-2);
}

.info-item .material-symbols-outlined {
    color: var(--primary-color);
    font-size: 24px;
}

.info-item div {
    display: flex;
    flex-direction: column;
}

.info-item strong {
    font-weight: 600;
    font-size: var(--font-size-sm);
}

.info-item small {
    color: var(--text-secondary);
    font-size: var(--font-size-xs);
}

/* 9. MAIN NAVIGATION */
.main-nav {
    background-color: var(--bg-primary);
    border-bottom: 1px solid var(--border-color);
    padding: var(--space-3) 0;
}

.nav-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: var(--space-6);
}

.nav-link {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    padding: var(--space-3) var(--space-4);
    color: var(--text-primary);
    font-weight: 500;
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.nav-link:hover {
    background-color: var(--bg-secondary);
    color: var(--primary-color);
}

.nav-link.active {
    background-color: var(--primary-color);
    color: var(--text-white);
}

.nav-link .material-symbols-outlined {
    font-size: 20px;
}

.nav-dropdown {
    position: relative;
}

.nav-dropdown .dropdown-content {
    left: 0;
    right: auto;
    min-width: 250px;
}

.button-special {
    background-color: var(--primary-color);
    color: var(--text-white);
}

.button-special:hover {
    background-color: var(--primary-dark);
    color: var(--text-white);
}

/* 10. MOBILE SEARCH */
/* Modern mobile search styles are now in search.css */

/* 11. HERO SECTION */
.hero-section {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: var(--text-white);
    padding: var(--space-20) 0;
    position: relative;
    overflow: hidden;
}

.hero-slider {
    position: relative;
    min-height: 400px;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    opacity: 0;
    transition: opacity 0.8s ease;
}

.hero-slide.active {
    opacity: 1;
}

.hero-content {
    flex: 1;
    padding-right: var(--space-8);
}

.hero-content h1 {
    font-size: var(--font-size-4xl);
    font-weight: 700;
    margin-bottom: var(--space-6);
    line-height: 1.2;
}

.hero-content p {
    font-size: var(--font-size-xl);
    margin-bottom: var(--space-8);
    opacity: 0.9;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    padding: var(--space-4) var(--space-8);
    background-color: var(--text-white);
    color: var(--primary-color);
    font-weight: 600;
    border-radius: var(--border-radius);
    transition: var(--transition);
    box-shadow: var(--shadow-lg);
}

.cta-button .material-symbols-outlined {
    font-size: 20px;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl);
    background-color: var(--primary-light);
    color: var(--text-white);
}

/* Hero button styles */
.hero-btn {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    padding: var(--space-4) var(--space-8);
    background-color: var(--text-white);
    color: var(--primary-color);
    font-weight: 600;
    border-radius: var(--border-radius);
    transition: var(--transition);
    box-shadow: var(--shadow-lg);
    border: none;
    cursor: pointer;
    text-decoration: none;
}

.hero-btn .material-symbols-outlined {
    font-size: 20px;
}

.hero-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl);
    background-color: var(--primary-light);
    color: var(--text-white);
}

.hero-image {
    flex: 1;
    text-align: center;
    position: relative;
}

.hero-image-container {
    position: relative;
    display: inline-block;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    transition: transform 0.3s ease;
}

.hero-image-container:hover {
    transform: translateY(-5px);
}

.hero-main-image {
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: var(--border-radius-lg);
    transition: transform 0.3s ease;
}

/* Floating elements removed for cleaner look */

.hero-indicators {
    display: flex;
    justify-content: center;
    gap: var(--space-2);
    margin-top: var(--space-8);
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    transition: var(--transition);
}

.indicator.active {
    background-color: var(--text-white);
}

/* 12. CATEGORIES SECTION */
.categories-section {
    padding: var(--space-20) 0;
    background-color: var(--bg-secondary);
}

.categories-section h2 {
    text-align: center;
    font-size: var(--font-size-3xl);
    font-weight: 700;
    margin-bottom: var(--space-12);
    color: var(--text-primary);
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-8);
}

.category-card {
    background-color: var(--bg-primary);
    padding: var(--space-8);
    border-radius: var(--border-radius-lg);
    text-align: center;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.category-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.category-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto var(--space-6);
    background-color: var(--bg-secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.category-card:hover .category-icon {
    background-color: var(--primary-color);
    color: var(--text-white);
}

.category-icon .material-symbols-outlined {
    font-size: 36px;
    color: var(--primary-color);
    transition: var(--transition);
}

.category-card:hover .category-icon .material-symbols-outlined {
    color: var(--text-white);
}

.category-card h3 {
    font-size: var(--font-size-xl);
    font-weight: 600;
    margin-bottom: var(--space-3);
    color: var(--text-primary);
}

.category-card p {
    color: var(--text-secondary);
    margin-bottom: var(--space-6);
}

.category-link {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    color: var(--primary-color);
    font-weight: 500;
    transition: var(--transition);
}

.category-link:hover {
    color: var(--primary-dark);
}

/* 13. PRODUCT SECTIONS */
.scrolling-menu-section,
.product-section {
    padding: var(--space-20) 0;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--space-12);
}

.section-header h2 {
    font-size: var(--font-size-3xl);
    font-weight: 700;
    color: var(--text-primary);
}

.view-all {
    color: var(--primary-color);
    font-weight: 500;
    transition: var(--transition);
}

.view-all:hover {
    color: var(--primary-dark);
}

.scrolling-wrapper {
    display: flex;
    gap: var(--space-6);
    overflow-x: auto;
    padding-bottom: var(--space-4);
    scrollbar-width: thin;
    scrollbar-color: var(--gray-300) transparent;
}

.scrolling-wrapper::-webkit-scrollbar {
    height: 8px;
}

.scrolling-wrapper::-webkit-scrollbar-track {
    background: transparent;
}

.scrolling-wrapper::-webkit-scrollbar-thumb {
    background-color: var(--gray-300);
    border-radius: 4px;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: var(--space-8);
}

.product-card {
    background-color: var(--bg-primary);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    flex: 0 0 280px;
}

.product-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.product-card-image {
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

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

.product-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: var(--transition);
}

.product-card .card-content {
    padding: var(--space-6);
}

.product-card h3 {
    font-size: var(--font-size-lg);
    font-weight: 600;
    margin-bottom: var(--space-2);
    color: var(--text-primary);
    transition: var(--transition);
}

.product-card h3:hover {
    color: var(--primary-color);
}

.product-card p {
    color: var(--text-secondary);
    margin-bottom: var(--space-4);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2; /* Standard property for compatibility */
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-card .price {
    font-size: var(--font-size-xl);
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: var(--space-3);
}

.product-card .stock-info {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    margin-bottom: var(--space-4);
    color: var(--text-secondary);
    font-size: var(--font-size-sm);
}

.product-card .stock-info .material-symbols-outlined {
    font-size: 16px;
    color: var(--success-color);
}

.product-card .add-to-cart {
    width: 100%;
    padding: var(--space-3) var(--space-4);
    background-color: var(--primary-color);
    color: var(--text-white);
    border-radius: var(--border-radius);
    font-weight: 500;
    transition: var(--transition);
}

.product-card .add-to-cart:hover {
    background-color: var(--primary-dark);
}

/* 14. SKELETON LOADER */
.skeleton-loader {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: loading 1.5s infinite;
    height: 100%;
    min-height: 200px;
    border-radius: var(--border-radius);
}

@keyframes loading {
    0% {
        background-position: 200% 0;
    }
    100% {
        background-position: -200% 0;
    }
}

.product-card.loading {
    height: 400px;
}

.product-card.loading .skeleton-loader {
    height: 100%;
}

/* 15. FEATURES SECTION */
.features-section {
    padding: var(--space-20) 0;
    background-color: var(--bg-secondary);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-8);
}

.feature-card {
    text-align: center;
    padding: var(--space-8);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto var(--space-6);
    background-color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* 16. PRODUCTS PAGE SPECIFIC STYLES */
.products-page-content {
    min-height: 60vh;
    padding: var(--space-16) 0;
}

.products-page-content .container {
    display: flex;
    gap: var(--space-8);
    align-items: flex-start;
}

/* Page Header - Modern Design */
.page-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    padding: var(--space-16) 0;
    color: var(--text-white);
    position: relative;
    overflow: hidden;
    margin-bottom: var(--space-8);
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="50" cy="10" r="0.5" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.page-header-content {
    position: relative;
    z-index: 1;
    text-align: center;
}

.page-header h1 {
    font-size: var(--font-size-4xl);
    font-weight: 700;
    margin-bottom: var(--space-4);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    letter-spacing: -0.02em;
}

.page-header .breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-2);
    font-size: var(--font-size-sm);
    opacity: 0.9;
    margin-top: var(--space-4);
}

.page-header .breadcrumb a {
    color: var(--text-white);
    text-decoration: none;
    transition: var(--transition);
    padding: var(--space-1) var(--space-2);
    border-radius: var(--border-radius-sm);
}

.page-header .breadcrumb a:hover {
    background-color: rgba(255, 255, 255, 0.1);
    opacity: 1;
}

.page-header .breadcrumb .material-symbols-outlined {
    font-size: 16px;
    opacity: 0.7;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .page-header {
        padding: var(--space-12) 0;
    }
    
    .page-header h1 {
        font-size: var(--font-size-3xl);
    }
    
    .page-header .breadcrumb {
        font-size: var(--font-size-xs);
    }
}

/* Mobile Filter Toggle */
.mobile-filter-toggle {
    display: none;
    background-color: var(--bg-primary);
    border-bottom: 1px solid var(--border-color);
    padding: var(--space-4) 0;
}

.filter-toggle-btn {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    padding: var(--space-3) var(--space-4);
    background-color: var(--primary-color);
    color: var(--text-white);
    border-radius: var(--border-radius);
    font-weight: 500;
    transition: var(--transition);
}

.filter-toggle-btn:hover {
    background-color: var(--primary-dark);
}

/* Filters Sidebar */
.filters-sidebar {
    flex: 0 0 280px;
    background-color: var(--bg-primary);
    border-radius: var(--border-radius-lg);
    padding: var(--space-6);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    position: sticky;
    top: 100px;
    max-height: calc(100vh - 120px);
    overflow-y: auto;
}

.sidebar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--space-6);
    padding-bottom: var(--space-4);
    border-bottom: 1px solid var(--border-color);
}

.sidebar-header h3 {
    font-size: var(--font-size-xl);
    font-weight: 600;
    color: var(--text-primary);
    margin: 0;
}

.close-filters {
    display: none;
    padding: var(--space-2);
    color: var(--text-secondary);
    border-radius: var(--border-radius-sm);
    transition: var(--transition);
}

.close-filters:hover {
    background-color: var(--bg-secondary);
    color: var(--text-primary);
}

.filter-group {
    margin-bottom: var(--space-8);
}

.filter-group h4 {
    font-size: var(--font-size-lg);
    font-weight: 600;
    margin-bottom: var(--space-4);
    color: var(--text-primary);
}

.filter-options {
    display: flex;
    flex-direction: column;
    gap: var(--space-2);
}

.filter-option {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    padding: var(--space-2) var(--space-3);
    border-radius: var(--border-radius-sm);
    cursor: pointer;
    transition: var(--transition);
    position: relative;
}

.filter-option:hover {
    background-color: var(--bg-secondary);
    transform: translateX(4px);
}

.filter-option input[type="radio"] {
    display: none;
}

.checkmark {
    width: 18px;
    height: 18px;
    border: 2px solid var(--border-color);
    border-radius: 50%;
    position: relative;
    transition: var(--transition);
}

.filter-option input[type="radio"]:checked + .checkmark {
    border-color: var(--primary-color);
    background-color: var(--primary-color);
    transform: scale(1.1);
}

.filter-option input[type="radio"]:checked + .checkmark::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 6px;
    height: 6px;
    background-color: var(--text-white);
    border-radius: 50%;
}

.option-text {
    font-size: var(--font-size-sm);
    color: var(--text-primary);
    flex: 1;
}

/* Price Range Filter */
.price-range {
    display: flex;
    flex-direction: column;
    gap: var(--space-3);
}

.price-inputs {
    display: flex;
    align-items: center;
    gap: var(--space-2);
}

.price-inputs input {
    flex: 1;
    padding: var(--space-2) var(--space-3);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-sm);
    font-size: var(--font-size-sm);
    transition: var(--transition);
}

.price-inputs input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(45, 80, 22, 0.1);
}

.price-inputs span {
    color: var(--text-secondary);
    font-weight: 500;
}

.apply-filter-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-2);
    padding: var(--space-2) var(--space-4);
    background-color: var(--primary-color);
    color: var(--text-white);
    border-radius: var(--border-radius-sm);
    font-size: var(--font-size-sm);
    font-weight: 500;
    transition: var(--transition);
}

.apply-filter-btn:hover {
    background-color: var(--primary-dark);
}

/* Filter Actions */
.filter-actions {
    margin-top: var(--space-8);
    padding-top: var(--space-6);
    border-top: 1px solid var(--border-color);
}

.clear-filters-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-2);
    padding: var(--space-3) var(--space-4);
    background-color: var(--bg-secondary);
    color: var(--text-secondary);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    font-size: var(--font-size-sm);
    font-weight: 500;
    transition: var(--transition);
}

.clear-filters-btn:hover {
    background-color: var(--gray-200);
    color: var(--text-primary);
}

/* Products Main Area */
.products-main {
    flex: 1;
}

.products-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--space-8);
    padding-bottom: var(--space-4);
    border-bottom: 1px solid var(--border-color);
}

.products-info {
    display: flex;
    align-items: center;
    gap: var(--space-6);
}

.products-info p {
    color: var(--text-secondary);
    font-size: var(--font-size-sm);
    margin: 0;
}

.view-options {
    display: flex;
    gap: var(--space-1);
}

.view-btn {
    padding: var(--space-2);
    border: 1px solid var(--border-color);
    background-color: var(--bg-primary);
    color: var(--text-secondary);
    border-radius: var(--border-radius-sm);
    transition: var(--transition);
}

.view-btn:hover,
.view-btn.active {
    background-color: var(--primary-color);
    color: var(--text-white);
    border-color: var(--primary-color);
}

.sorting-controls {
    display: flex;
    align-items: center;
    gap: var(--space-4);
}

.sorting-controls select {
    padding: var(--space-2) var(--space-4);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-sm);
    background-color: var(--bg-primary);
    color: var(--text-primary);
    font-size: var(--font-size-sm);
    cursor: pointer;
    transition: var(--transition);
}

.sorting-controls select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(45, 80, 22, 0.1);
}

/* Product Grid */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: var(--space-6);
    margin-bottom: var(--space-12);
}

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

.product-grid.list-view .product-card {
    display: flex;
    gap: var(--space-6);
}

.product-grid.list-view .product-card img {
    width: 200px;
    height: 150px;
    flex-shrink: 0;
}

.product-grid.list-view .card-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    margin-top: var(--space-12);
}

.pagination ul {
    display: flex;
    gap: var(--space-2);
    list-style: none;
    margin: 0;
    padding: 0;
}

.pagination-btn {
    padding: var(--space-3) var(--space-4);
    border: 1px solid var(--border-color);
    background-color: var(--bg-primary);
    color: var(--text-primary);
    border-radius: var(--border-radius-sm);
    cursor: pointer;
    transition: var(--transition);
    font-size: var(--font-size-sm);
    font-weight: 500;
}

.pagination-btn:hover {
    background-color: var(--bg-secondary);
    border-color: var(--primary-color);
}

.pagination-btn.active {
    background-color: var(--primary-color);
    color: var(--text-white);
    border-color: var(--primary-color);
}

/* Responsive adjustments for products page */
@media (max-width: 768px) {
    .products-page-content .container {
        flex-direction: column;
    }
    
    .filters-sidebar {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: var(--z-modal);
        transform: translateX(-100%);
        transition: transform 0.3s ease;
        max-height: none;
        border-radius: 0;
    }
    
    .filters-sidebar.active {
        transform: translateX(0);
    }
    
    .close-filters {
        display: block;
    }
    
    .mobile-filter-toggle {
        display: block;
    }
    
    .products-header {
        flex-direction: column;
        gap: var(--space-4);
        align-items: stretch;
    }
    
    .products-info {
        justify-content: space-between;
    }
    
    .sorting-controls {
        justify-content: center;
    }
    
    .product-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: var(--space-4);
    }
    
    .product-grid.list-view .product-card {
        flex-direction: column;
    }
    
    .product-grid.list-view .product-card img {
        width: 100%;
        height: 200px;
    }
}

/* 17. PRODUCT DETAIL PAGE SPECIFIC STYLES */
.product-detail-section {
    padding: var(--space-16) 0;
}

.product-detail-skeleton {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-12);
    align-items: start;
}

.product-detail-skeleton .skeleton-loader {
    height: 400px;
    border-radius: var(--border-radius-lg);
}

.skeleton-content {
    display: flex;
    flex-direction: column;
    gap: var(--space-6);
}

.skeleton-content .skeleton-loader {
    height: 40px;
    width: 80%;
}

.skeleton-content .skeleton-loader:nth-child(2) {
    width: 40%;
}

.skeleton-content .skeleton-loader:nth-child(3) {
    height: 100px;
    width: 100%;
}

.skeleton-content .skeleton-loader:nth-child(4) {
    height: 50px;
    width: 60%;
}

/* Product Detail Layout */
.product-detail-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-12);
    align-items: start;
}

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

.product-gallery img {
    width: 100%;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.product-gallery img:hover {
    transform: scale(1.02);
}

.product-info {
    display: flex;
    flex-direction: column;
    gap: var(--space-6);
}

.product-info h1 {
    font-size: var(--font-size-3xl);
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.2;
}

.product-price {
    font-size: var(--font-size-2xl);
    font-weight: 600;
    color: var(--primary-color);
}

.product-description {
    color: var(--text-secondary);
    line-height: 1.8;
    font-size: var(--font-size-base);
}

/* Add to Cart Form */
.add-to-cart-form {
    display: flex;
    gap: var(--space-4);
    align-items: center;
    margin-top: var(--space-6);
}

.quantity-selector {
    display: flex;
    align-items: center;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    overflow: hidden;
}

.quantity-btn {
    padding: var(--space-3) var(--space-4);
    background-color: var(--bg-secondary);
    color: var(--text-primary);
    border: none;
    font-size: var(--font-size-lg);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.quantity-btn:hover {
    background-color: var(--gray-200);
}

#quantity-input {
    width: 60px;
    text-align: center;
    border: none;
    font-size: var(--font-size-lg);
    font-weight: 500;
    padding: var(--space-3) 0;
    -moz-appearance: textfield;
}

#quantity-input::-webkit-outer-spin-button,
#quantity-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

#add-to-cart-btn {
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-2);
    padding: var(--space-4) var(--space-8);
    background-color: var(--primary-color);
    color: var(--text-white);
    border-radius: var(--border-radius);
    font-weight: 600;
    font-size: var(--font-size-base);
    transition: var(--transition);
}

#add-to-cart-btn:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
}

/* Product Tabs */
.product-tabs-section {
    padding: var(--space-16) 0;
    background-color: var(--bg-secondary);
}

.product-tabs {
    display: flex;
    gap: var(--space-2);
    margin-bottom: var(--space-8);
    border-bottom: 1px solid var(--border-color);
}

.tab-btn {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    padding: var(--space-4) var(--space-6);
    background-color: transparent;
    color: var(--text-secondary);
    border: none;
    border-bottom: 3px solid transparent;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
}

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

.tab-btn.active {
    color: var(--primary-color);
    border-bottom-color: var(--primary-color);
    background-color: var(--bg-primary);
}

.tab-content {
    background-color: var(--bg-primary);
    border-radius: var(--border-radius-lg);
    padding: var(--space-8);
    box-shadow: var(--shadow-sm);
}

.tab-pane {
    display: none;
}

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

.tab-pane h3 {
    font-size: var(--font-size-xl);
    font-weight: 600;
    margin-bottom: var(--space-6);
    color: var(--text-primary);
}

.tab-pane p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: var(--space-4);
}

/* Related Products Section */
.related-products-section {
    padding: var(--space-16) 0;
    background-color: var(--bg-secondary);
}

.related-products-section .scrolling-wrapper {
    margin-top: var(--space-8);
}

/* Responsive Product Detail */
@media (max-width: 768px) {
    .product-detail-skeleton {
        grid-template-columns: 1fr;
        gap: var(--space-6);
    }
    
    .product-detail-layout {
        grid-template-columns: 1fr;
        gap: var(--space-8);
    }
    
    .product-gallery {
        position: static;
    }
    
    .product-info h1 {
        font-size: var(--font-size-2xl);
    }
    
    .product-price {
        font-size: var(--font-size-xl);
    }
    
    .add-to-cart-form {
        flex-direction: column;
        align-items: stretch;
    }
    
    .quantity-selector {
        justify-content: center;
    }
    
    .product-tabs {
        flex-wrap: wrap;
    }
    
    .tab-btn {
        flex: 1;
        min-width: 120px;
        justify-content: center;
    }
    
    .tab-content {
        padding: var(--space-6);
    }
}

/* Product Meta Information */
.product-meta {
    display: flex;
    flex-direction: column;
    gap: var(--space-3);
    margin-bottom: var(--space-6);
    padding: var(--space-4);
    background-color: var(--bg-secondary);
    border-radius: var(--border-radius);
}

.meta-item {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    color: var(--text-secondary);
    font-size: var(--font-size-sm);
}

.meta-item .material-symbols-outlined {
    font-size: 18px;
    color: var(--primary-color);
}

/* Product Actions */
.product-actions {
    display: flex;
    gap: var(--space-3);
    margin-top: var(--space-6);
}

.action-btn {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    padding: var(--space-3) var(--space-4);
    background-color: var(--bg-secondary);
    color: var(--text-secondary);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    font-size: var(--font-size-sm);
    font-weight: 500;
    transition: var(--transition);
}

.action-btn:hover {
    background-color: var(--primary-color);
    color: var(--text-white);
    border-color: var(--primary-color);
}

/* Özel action button stilleri */
.action-btn.edit-btn {
    background-color: var(--info-color);
    color: var(--text-white);
    border-color: var(--info-color);
}

.action-btn.edit-btn:hover {
    background-color: #2980b9;
    border-color: #2980b9;
}

.action-btn.delete-btn {
    background-color: var(--error-color);
    color: var(--text-white);
    border-color: var(--error-color);
}

.action-btn.delete-btn:hover {
    background-color: #c0392b;
    border-color: #c0392b;
}

.action-btn.payment-btn {
    background-color: var(--success-color);
    color: var(--text-white);
    border-color: var(--success-color);
}

.action-btn.payment-btn:hover {
    background-color: #229954;
    border-color: #229954;
}

/* Tab Content Styles */
.specs-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-3);
}

.spec-item {
    display: flex;
    justify-content: space-between;
    padding: var(--space-3);
    background-color: var(--bg-secondary);
    border-radius: var(--border-radius-sm);
}

.spec-label {
    font-weight: 600;
    color: var(--text-primary);
}

.spec-value {
    color: var(--text-secondary);
}

.reviews-container {
    text-align: center;
    padding: var(--space-8);
}

.write-review-btn {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    padding: var(--space-3) var(--space-6);
    background-color: var(--primary-color);
    color: var(--text-white);
    border-radius: var(--border-radius);
    font-weight: 500;
    transition: var(--transition);
    margin-top: var(--space-4);
}

.write-review-btn:hover {
    background-color: var(--primary-dark);
}

/* Responsive adjustments for product actions */
@media (max-width: 768px) {
    .product-actions {
        flex-direction: column;
    }
    
    .action-btn {
        justify-content: center;
    }
    
    .spec-item {
        flex-direction: column;
        gap: var(--space-2);
        text-align: center;
    }
}

/* Düzenleme modal'ı stilleri */
.shipment-item-edit {
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-sm);
    padding: var(--space-4);
    margin-bottom: var(--space-3);
    background-color: var(--bg-secondary);
}

.item-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr auto;
    gap: var(--space-3);
    align-items: center;
}

.item-row .product-select {
    width: 100%;
    padding: var(--space-2) var(--space-3);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-sm);
    font-size: var(--font-size-sm);
}

.item-row .quantity-input {
    width: 100%;
    padding: var(--space-2) var(--space-3);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-sm);
    font-size: var(--font-size-sm);
    text-align: center;
}

.item-row .unit-price,
.item-row .item-total {
    font-weight: 600;
    color: var(--text-primary);
    text-align: center;
}

.remove-item-btn {
    background-color: var(--error-color);
    color: var(--text-white);
    border: none;
    border-radius: var(--border-radius-sm);
    padding: var(--space-2) var(--space-3);
    font-size: var(--font-size-sm);
    cursor: pointer;
    transition: var(--transition);
}

.remove-item-btn:hover {
    background-color: #c0392b;
}

.add-item-btn {
    background-color: var(--success-color);
    color: var(--text-white);
    border: none;
    border-radius: var(--border-radius-sm);
    padding: var(--space-3) var(--space-4);
    font-size: var(--font-size-sm);
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    margin-top: var(--space-3);
}

.add-item-btn:hover {
    background-color: #229954;
}

/* Responsive düzenleme modal'ı */
@media (max-width: 768px) {
    .item-row {
        grid-template-columns: 1fr;
        gap: var(--space-2);
    }
    
    .item-row .unit-price,
    .item-row .item-total {
        text-align: left;
    }
}

/* Sevkiyat ürün satırı stilleri */
.shipment-item-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr auto;
    gap: var(--space-3);
    align-items: center;
    margin-bottom: var(--space-3);
    padding: var(--space-3);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-sm);
    background-color: var(--bg-secondary);
}

.shipment-item-row .shipment-product-select {
    width: 100%;
    padding: var(--space-2) var(--space-3);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-sm);
    font-size: var(--font-size-sm);
}

.shipment-item-row .shipment-quantity {
    width: 100%;
    padding: var(--space-2) var(--space-3);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-sm);
    font-size: var(--font-size-sm);
    text-align: center;
}

.shipment-item-row .shipment-unit-price,
.shipment-item-row .shipment-item-total {
    font-weight: 600;
    color: var(--text-primary);
    text-align: center;
    font-size: var(--font-size-sm);
}

.shipment-total {
    margin-top: var(--space-4);
    padding: var(--space-3);
    background-color: var(--primary-color);
    color: var(--text-white);
    border-radius: var(--border-radius-sm);
    text-align: center;
}

/* Responsive sevkiyat ürün satırı */
@media (max-width: 768px) {
    .shipment-item-row {
        grid-template-columns: 1fr;
        gap: var(--space-2);
    }
    
    .shipment-item-row .shipment-unit-price,
    .shipment-item-row .shipment-item-total {
        text-align: left;
    }
}

.feature-icon .material-symbols-outlined {
    font-size: 36px;
    color: var(--text-white);
}

.feature-card h3 {
    font-size: var(--font-size-xl);
    font-weight: 600;
    margin-bottom: var(--space-3);
    color: var(--text-primary);
}

.feature-card p {
    color: var(--text-secondary);
}

/* 16. NEWSLETTER SECTION */
.newsletter-section {
    padding: var(--space-20) 0;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: var(--text-white);
    text-align: center;
}

.newsletter-content h2 {
    font-size: var(--font-size-3xl);
    font-weight: 700;
    margin-bottom: var(--space-4);
}

.newsletter-content p {
    font-size: var(--font-size-lg);
    margin-bottom: var(--space-8);
    opacity: 0.9;
}

.newsletter-form {
    display: flex;
    max-width: 500px;
    margin: 0 auto;
    gap: var(--space-3);
}

.newsletter-form input {
    flex: 1;
    padding: var(--space-4);
    border: 2px solid transparent;
    border-radius: var(--border-radius);
    font-size: var(--font-size-base);
    transition: var(--transition);
}

.newsletter-form input:focus {
    outline: none;
    border-color: var(--text-white);
}

.newsletter-form button {
    padding: var(--space-4) var(--space-8);
    background-color: var(--text-white);
    color: var(--primary-color);
    border-radius: var(--border-radius);
    font-weight: 600;
    transition: var(--transition);
}

.newsletter-form button:hover {
    background-color: var(--gray-100);
}

/* 17. FOOTER */
.site-footer {
    background-color: var(--gray-800);
    color: var(--text-white);
    padding: var(--space-20) 0 var(--space-8);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-8);
    margin-bottom: var(--space-16);
}

.footer-section h3 {
    font-size: var(--font-size-xl);
    font-weight: 600;
    margin-bottom: var(--space-6);
    color: var(--text-white);
}

.footer-section h4 {
    font-size: var(--font-size-lg);
    font-weight: 500;
    margin-bottom: var(--space-4);
    color: var(--text-white);
}

.footer-section p {
    color: var(--gray-300);
    line-height: 1.6;
    margin-bottom: var(--space-6);
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: var(--space-3);
}

.footer-section ul li a {
    color: var(--gray-300);
    transition: var(--transition);
}

.footer-section ul li a:hover {
    color: var(--text-white);
}

.social-links {
    display: flex;
    gap: var(--space-4);
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: var(--gray-700);
    border-radius: 50%;
    color: var(--text-white);
    transition: var(--transition);
}

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

.contact-info {
    display: flex;
    flex-direction: column;
    gap: var(--space-4);
}

.contact-info p {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    margin-bottom: 0;
}

.contact-info .material-symbols-outlined {
    font-size: 20px;
    color: var(--primary-color);
}

.footer-bottom {
    border-top: 1px solid var(--gray-700);
    padding-top: var(--space-8);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--space-4);
}

.footer-bottom p {
    color: var(--gray-400);
    margin: 0;
}

.payment-methods {
    display: flex;
    align-items: center;
    gap: var(--space-3);
}

.payment-methods span {
    color: var(--gray-400);
    font-size: var(--font-size-sm);
}

.payment-methods img {
    height: 24px;
    width: auto;
}

/* 18. BACK TO TOP BUTTON */
.back-to-top {
    position: fixed;
    bottom: var(--space-8);
    right: var(--space-8);
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    color: var(--text-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    z-index: var(--z-sticky);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
}











/* 20. FORM STYLES */
.form-container {
    max-width: 500px;
    margin: var(--space-20) auto;
    padding: var(--space-12);
    background-color: var(--bg-primary);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
}

.form-container h1 {
    font-size: var(--font-size-3xl);
    font-weight: 700;
    text-align: center;
    margin-bottom: var(--space-3);
    color: var(--text-primary);
}

.form-container .subtitle {
    text-align: center;
    color: var(--text-secondary);
    margin-bottom: var(--space-12);
}

.form-group {
    margin-bottom: var(--space-6);
}

.form-group label {
    display: block;
    font-weight: 500;
    margin-bottom: var(--space-2);
    color: var(--text-primary);
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: var(--space-4);
    border: 2px solid var(--border-color);
    border-radius: var(--border-radius);
    font-size: var(--font-size-base);
    transition: var(--transition);
    background: #ffffff;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(45, 80, 22, 0.1), 0 2px 6px rgba(0, 0, 0, 0.15);
    transform: translateY(-1px);
}

.form-group input.error,
.form-group textarea.error,
.form-group select.error {
    border-color: var(--error-color);
}

.form-error {
    color: var(--error-color);
    font-size: var(--font-size-sm);
    margin-top: var(--space-2);
}

.form-button {
    width: 100%;
    padding: var(--space-4);
    background-color: var(--primary-color);
    color: var(--text-white);
    border-radius: var(--border-radius);
    font-size: var(--font-size-base);
    font-weight: 600;
    transition: var(--transition);
    margin-top: var(--space-6);
}

.form-button:hover {
    background-color: var(--primary-dark);
}

.form-button:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.form-link {
    text-align: center;
    margin-top: var(--space-6);
}

.form-link a {
    color: var(--primary-color);
    font-weight: 500;
}

.form-link a:hover {
    color: var(--primary-dark);
}

/* 21. MOBILE NAVIGATION */
.mobile-nav {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--bg-overlay);
    z-index: var(--z-modal);
}

.mobile-nav.active {
    display: block;
}

.mobile-nav-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 80%;
    max-width: 300px;
    height: 100%;
    background-color: var(--bg-primary);
    transform: translateX(-100%);
    transition: transform 0.3s ease;
}

.mobile-nav.active .mobile-nav-content {
    transform: translateX(0);
}

.mobile-nav-header {
    padding: var(--space-6);
    border-bottom: 1px solid var(--border-color);
}

.mobile-nav-links {
    padding: var(--space-4) 0;
}

.mobile-nav-links a {
    display: block;
    padding: var(--space-4) var(--space-6);
    color: var(--text-primary);
    border-bottom: 1px solid var(--border-color);
    transition: var(--transition);
}

.mobile-nav-links a:hover {
    background-color: var(--bg-secondary);
}

.mobile-nav-close {
    position: absolute;
    top: var(--space-4);
    right: var(--space-4);
    background: none;
    border: none;
    font-size: 24px;
    color: var(--text-secondary);
    cursor: pointer;
}

/* MOBILE MENU OVERLAY - HAMBURGER MENU */
#nav-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 80%;
    max-width: 300px;
    height: 100%;
    background-color: var(--bg-primary);
    z-index: var(--z-modal);
    border-right: 1px solid var(--border-color);
    box-shadow: var(--shadow-xl);
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    flex-direction: column;
    padding-top: 0;
    overflow-y: auto;
}

#nav-menu.is-active {
    display: flex;
    transform: translateX(0);
}

/* MOBILE MENU HEADER */
#nav-menu::before {
    content: 'HAYSIFACOM';
    display: block;
    padding: var(--space-6);
    border-bottom: 1px solid var(--border-color);
    font-size: var(--font-size-lg);
    font-weight: 600;
    color: var(--primary-color);
    text-align: center;
    background-color: var(--bg-secondary);
    flex-shrink: 0;
}

/* MOBILE MENU LINKS - TÜM A TAGLERİ */
#nav-menu a {
    padding: var(--space-5) var(--space-6) !important;
    border-bottom: 1px solid var(--border-color) !important;
    color: var(--text-primary) !important;
    font-weight: 500 !important;
    transition: var(--transition) !important;
    display: flex !important;
    align-items: center !important;
    gap: var(--space-3) !important;
    text-decoration: none !important;
    margin: 0 !important;
    border-radius: 0 !important;
    background: none !important;
    min-height: 50px;
    box-sizing: border-box;
}

#nav-menu a:hover {
    background-color: var(--bg-secondary) !important;
    color: var(--primary-color) !important;
}

#nav-menu a.active {
    background-color: var(--primary-color) !important;
    color: var(--text-white) !important;
}

#nav-menu a .material-symbols-outlined {
    font-size: 20px !important;
    margin-right: var(--space-2);
}

/* MOBILE MENU SPECIAL BUTTON */
#nav-menu a.button-special {
    background-color: var(--primary-color) !important;
    color: var(--text-white) !important;
    margin: var(--space-4) var(--space-6) !important;
    border-radius: var(--border-radius) !important;
    border-bottom: none !important;
    text-align: center !important;
    justify-content: center !important;
}

#nav-menu a.button-special:hover {
    background-color: var(--primary-dark) !important;
    color: var(--text-white) !important;
}

/* MOBILE MENU CONTAINER */
#nav-menu .container {
    display: flex !important;
    flex-direction: column !important;
    padding: 0 !important;
    margin: 0 !important;
    width: 100% !important;
    max-width: none !important;
}

#nav-menu .nav-links {
    display: flex !important;
    flex-direction: column !important;
    gap: 0 !important;
    padding: 0 !important;
    margin: 0 !important;
    justify-content: flex-start !important;
    align-items: stretch !important;
}

/* MOBILE MENU DROPDOWN */
#nav-menu .nav-dropdown {
    position: relative;
}

#nav-menu .nav-dropdown .nav-link {
    position: relative !important;
    justify-content: space-between !important;
}

/* Default state - dropdown hidden in mobile */
#nav-menu .nav-dropdown .dropdown-content {
    position: static !important;
    display: none !important;
    background: var(--bg-secondary) !important;
    border: none !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    margin: 0 !important;
    min-width: auto !important;
    overflow: hidden !important;
    transition: all 0.3s ease !important;
}

/* Active state - dropdown visible */
#nav-menu .nav-dropdown.active .dropdown-content {
    display: block !important;
    background: var(--bg-secondary) !important;
    color: var(--text-primary) !important;
    max-height: 500px !important;
    overflow: visible !important;
    opacity: 1 !important;
    visibility: visible !important;
}

#nav-menu .dropdown-content a {
    padding: var(--space-3) var(--space-8) !important;
    border-bottom: 1px solid var(--border-color) !important;
    font-size: var(--font-size-sm) !important;
    background-color: var(--bg-secondary) !important;
    margin-left: var(--space-4) !important;
    position: relative !important;
}

#nav-menu .dropdown-content a::before {
    content: '→' !important;
    margin-right: var(--space-2) !important;
    color: var(--primary-color) !important;
}

#nav-menu .dropdown-content a:hover {
    background-color: var(--gray-200) !important;
    padding-left: var(--space-10) !important;
    transition: padding-left 0.2s ease !important;
}

#nav-menu .dropdown-content a:last-child {
    border-bottom: none !important;
}

/* MOBILE MENU BACKDROP */
body.menu-open::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--bg-overlay);
    z-index: calc(var(--z-modal) - 1);
}

/* MOBILE RESPONSIVE BREAKPOINTS */
@media (max-width: 768px) {
    .topbar {
        display: none;
    }
    
    .container {
        padding: 0 var(--space-4);
    }
    
    /* HEADER MOBILE */
    .site-header .container {
        flex-direction: column;
        gap: var(--space-4);
    }
    
    .header-search {
        display: none;
    }
    
    .header-info {
        display: none;
    }
    
    .logo-container img {
        height: 40px;
    }
    
    /* NAVIGATION - MOBILE */
    .main-nav {
        display: none;
    }
    
    .nav-links {
        display: none;
    }
    
    /* HERO MOBILE */
    .hero-section {
        padding: var(--space-16) 0;
    }
    
    .hero-slide {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-content {
        padding-right: 0;
        margin-bottom: var(--space-8);
    }
    
    .hero-content h1 {
        font-size: var(--font-size-2xl);
    }
    
    .hero-content p {
        font-size: var(--font-size-base);
    }
    
    /* Floating elements removed */
    
    /* CATEGORIES MOBILE */
    .categories-section {
        padding: var(--space-12) 0;
    }
    
    .categories-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: var(--space-4);
    }
    
    .category-card {
        padding: var(--space-6);
    }
    
    .category-icon {
        width: 60px;
        height: 60px;
        margin-bottom: var(--space-4);
    }
    
    .category-icon .material-symbols-outlined {
        font-size: 28px;
    }
    
    /* PRODUCTS MOBILE */
    .scrolling-menu-section,
    .product-section {
        padding: var(--space-12) 0;
    }
    
    .section-header {
        flex-direction: column;
        gap: var(--space-4);
        text-align: center;
    }
    
    .section-header h2 {
        font-size: var(--font-size-2xl);
    }
    
    .product-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: var(--space-4);
    }
    
    .product-card {
        flex: 0 0 250px;
    }
    
    .product-card-image {
        cursor: pointer;
    }
    
    .product-card img {
        height: 180px;
    }
    
    .product-card .card-content {
        padding: var(--space-4);
    }
    
    .product-card h3 {
        font-size: var(--font-size-base);
    }
    
    .product-card .price {
        font-size: var(--font-size-lg);
    }
    
    /* FEATURES MOBILE */
    .features-section {
        padding: var(--space-12) 0;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: var(--space-6);
    }
    
    .feature-card {
        padding: var(--space-6);
    }
    
    .feature-icon {
        width: 60px;
        height: 60px;
        margin-bottom: var(--space-4);
    }
    
    .feature-icon .material-symbols-outlined {
        font-size: 28px;
    }
    
    /* NEWSLETTER MOBILE */
    .newsletter-section {
        padding: var(--space-12) 0;
    }
    
    .newsletter-content h2 {
        font-size: var(--font-size-2xl);
    }
    
    .newsletter-content p {
        font-size: var(--font-size-base);
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .newsletter-form input {
        margin-bottom: var(--space-3);
    }
    
    /* FOOTER MOBILE */
    .site-footer {
        padding: var(--space-12) 0 var(--space-8);
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: var(--space-6);
    }
    
    .footer-section h3 {
        font-size: var(--font-size-lg);
    }
    
    .footer-section h4 {
        font-size: var(--font-size-base);
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: var(--space-6);
    }
    
    .payment-methods {
        justify-content: center;
    }
    
    /* FORM MOBILE */
    .form-container {
        margin: var(--space-8) auto;
        padding: var(--space-8);
    }
    
    .form-container h1 {
        font-size: var(--font-size-2xl);
    }
    
    
    /* BACK TO TOP MOBILE */
    .back-to-top {
        bottom: var(--space-6);
        right: var(--space-6);
        width: 45px;
        height: 45px;
    }
    
    .back-to-top .material-symbols-outlined {
        font-size: 20px;
    }
    
    /* MOBILE SEARCH ACTIVE */
    /* Modern mobile search styles are now in search.css */
    
    /* MOBILE UTILITY CLASSES */
    .mobile-only {
        display: block;
    }
    
    .desktop-only {
        display: none;
    }
    
    /* MOBILE SPACING */
    .mt-mobile-4 { margin-top: var(--space-4); }
    .mb-mobile-4 { margin-bottom: var(--space-4); }
    .p-mobile-4 { padding: var(--space-4); }
    
    /* MOBILE TYPOGRAPHY */
    .text-mobile-center { text-align: center; }
    .text-mobile-left { text-align: left; }
    
    /* MOBILE GRID ADJUSTMENTS */
    .grid-mobile-1 { grid-template-columns: 1fr; }
    .grid-mobile-2 { grid-template-columns: repeat(2, 1fr); }
    
    /* MOBILE FLEX ADJUSTMENTS */
    .flex-mobile-col { flex-direction: column; }
    .flex-mobile-center { justify-content: center; }
}

/* TABLET RESPONSIVE */
@media (min-width: 769px) and (max-width: 1023px) {
    .categories-grid {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    }
    
    .product-grid {
        grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* DESKTOP RESPONSIVE */
@media (min-width: 769px) {
    .desktop-only {
        display: block;
    }
    
    .mobile-only {
        display: none;
    }
    
    /* HIDE MOBILE ELEMENTS */
    .hamburger-icon {
        display: none;
    }
    
    /* Modern mobile search styles are now in search.css */
    
    #nav-menu {
        display: none !important; /* Hide mobile menu */
    }
    
    /* DESKTOP NAVIGATION */
    .main-nav {
        display: block;
    }
    
    .nav-links {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: var(--space-6);
        flex-wrap: wrap;
    }
    
    .nav-link {
        display: flex;
        align-items: center;
        gap: var(--space-2);
        padding: var(--space-3) var(--space-4);
        color: var(--text-primary);
        font-weight: 500;
        border-radius: var(--border-radius);
        transition: var(--transition);
        white-space: nowrap;
    }
    
    .nav-link:hover {
        background-color: var(--bg-secondary);
        color: var(--primary-color);
    }
    
    .nav-link.active {
        background-color: var(--primary-color);
        color: var(--text-white);
    }
    
    .nav-link .material-symbols-outlined {
        font-size: 20px;
    }
    
    .nav-dropdown {
        position: relative;
    }
    
    .nav-dropdown:hover .dropdown-content {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
    
    .button-special {
        background-color: var(--primary-color);
        color: var(--text-white);
    }
    
    .button-special:hover {
        background-color: var(--primary-dark);
        color: var(--text-white);
    }
    
    /* DESKTOP HEADER */
    .site-header .container {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
    
    .header-search {
        display: block;
    }
    
    .header-info {
        display: flex;
    }
    
    .logo-container img {
        height: 120px;
    }
    
    /* DESKTOP LAYOUT */
    .hero-slide {
        flex-direction: row;
        text-align: left;
    }
    
    .hero-content {
        padding-right: var(--space-8);
        margin-bottom: 0;
    }
    
    .hero-content h1 {
        font-size: var(--font-size-4xl);
    }
    
    .hero-content p {
        font-size: var(--font-size-xl);
    }
    
    .section-header {
        flex-direction: row;
        text-align: left;
    }
    
    .section-header h2 {
        font-size: var(--font-size-3xl);
    }
    
    .newsletter-form {
        flex-direction: row;
    }
    
    .newsletter-form input {
        margin-bottom: 0;
    }
    
    .footer-bottom {
        flex-direction: row;
        text-align: left;
    }
    
    
    .back-to-top {
        bottom: var(--space-8);
        right: var(--space-8);
        width: 50px;
        height: 50px;
    }
    
    .back-to-top .material-symbols-outlined {
        font-size: 24px;
    }
}

/* LARGE DESKTOP */
@media (min-width: 1024px) {
    .container {
        padding: 0 var(--space-6);
    }
    
    .hero-content h1 {
        font-size: var(--font-size-4xl);
    }
    
    .product-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
    
    .categories-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
    
    .features-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .footer-content {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* 22. MODAL STYLES */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--bg-overlay);
    z-index: var(--z-modal);
    justify-content: center;
    align-items: center;
}

.modal.show {
    display: flex;
}

.modal-content {
    background-color: var(--bg-primary);
    border-radius: var(--border-radius-lg);
    padding: var(--space-8);
    max-width: 500px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    position: relative;
    animation: modalSlideIn 0.3s ease;
}

.modal-close {
    position: absolute;
    top: var(--space-4);
    right: var(--space-4);
    background: none;
    border: none;
    font-size: 24px;
    color: var(--text-secondary);
    cursor: pointer;
    padding: var(--space-2);
    border-radius: var(--border-radius-sm);
    transition: var(--transition);
}

.modal-close:hover {
    background-color: var(--bg-secondary);
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* 23. RESPONSIVE DESIGN */
@media (max-width: 768px) {
    .topbar {
        display: none;
    }
    
    .hero-slide {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-content {
        padding-right: 0;
        margin-bottom: var(--space-8);
    }
    
    .hero-content h1 {
        font-size: var(--font-size-2xl);
    }
    
    .hero-content p {
        font-size: var(--font-size-base);
    }
    
    .categories-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: var(--space-4);
    }
    
    .product-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: var(--space-4);
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: var(--space-6);
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: var(--space-6);
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
}

@media (min-width: 769px) {
    .desktop-only {
        display: block;
    }
    
    .mobile-only {
        display: none;
    }
    
    .hamburger-icon {
        display: none;
    }
    
    .nav-links {
        display: flex;
    }
    
    /* Modern mobile search styles are now in search.css */
}

@media (min-width: 1024px) {
    .container {
        padding: 0 var(--space-6);
    }
    
    .hero-content h1 {
        font-size: var(--font-size-4xl);
    }
    
    .product-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
}

/* 24. ACCESSIBILITY */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Focus styles for keyboard navigation */
button:focus,
input:focus,
textarea:focus,
select:focus,
a:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    :root {
        --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.3);
        --shadow-md: 0 4px 8px rgba(0, 0, 0, 0.4);
        --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.5);
    }
}

/* Print styles */
@media print {
    .topbar,
    .headbar,
    .main-nav,
    .back-to-top,
    
    body {
        background: white !important;
        color: black !important;
    }
    
    .hero-section {
        background: white !important;
        color: black !important;
    }
}
/* ====================================================== */
/* HAY ŞİFA ASİSTAN - ÖZELLEŞTİRİLMİŞ STİLLER (v2)      */
/* ====================================================== */

/* Sağ alttaki sohbet balonu ikonu */
.chatbot-ikon {
    position: fixed;
    bottom: var(--space-8);
    right: var(--space-8);
    width: 60px;
    height: 60px;
    background-color: var(--primary-color);
    color: var(--text-white);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    box-shadow: var(--shadow-lg);
    transition: var(--transition-slow);
    z-index: var(--z-sticky); /* Diğer elementlerin üzerinde kalması için */
}

.chatbot-ikon:hover {
    transform: translateY(-4px) scale(1.1);
    box-shadow: var(--shadow-xl);
    background-color: var(--primary-light);
}

.chatbot-ikon .material-symbols-outlined {
    font-size: 32px;
}

/* Sohbet penceresinin kendisi */
.chatbot-penceresi {
    position: fixed;
    bottom: calc(var(--space-8) + 75px); /* İkonun 15px üstünde */
    right: var(--space-8);
    width: 370px;
    height: 550px;
    max-height: 80vh;
    background-color: var(--bg-primary);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-xl);
    display: none; /* Başlangıçta gizli */
    flex-direction: column;
    overflow: hidden;
    font-family: var(--font-family);
    z-index: var(--z-modal);
    transform: translateY(20px);
    opacity: 0;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.chatbot-penceresi.aktif {
    display: flex;
    transform: translateY(0);
    opacity: 1;
}

/* Pencere Başlığı */
.chatbot-baslik {
    background-color: var(--primary-color);
    color: var(--text-white);
    padding: var(--space-4) var(--space-5);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-shrink: 0;
}

.baslik-sol {
    display: flex;
    align-items: center;
    gap: var(--space-3);
}

.chatbot-baslik h3 {
    margin: 0;
    font-size: var(--font-size-lg);
    font-weight: 600;
}

.kapat-btn {
    color: var(--text-white);
    opacity: 0.8;
}
.kapat-btn:hover {
    opacity: 1;
}

/* Mesajların olduğu ana gövde */
.chatbot-govde {
    flex-grow: 1;
    padding: var(--space-5);
    overflow-y: auto;
    background-color: var(--bg-secondary);
    display: flex;
    flex-direction: column;
    gap: var(--space-4);
}

.mesaj {
    max-width: 85%;
    padding: var(--space-3) var(--space-4);
    border-radius: var(--border-radius);
    line-height: 1.5;
}

.mesaj p {
    margin: 0;
    white-space: pre-wrap; /* Satır sonlarını korumak için */
}

.bot-mesaji {
    background-color: var(--gray-100);
    color: var(--text-primary);
    align-self: flex-start;
    border-bottom-left-radius: var(--space-1);
}

.kullanici-mesaji {
    background-color: var(--primary-color);
    color: var(--text-white);
    align-self: flex-end;
    border-bottom-right-radius: var(--space-1);
}

/* Mesaj yazma alanı */
.chatbot-altbilgi {
    padding: var(--space-3);
    background-color: var(--bg-primary);
    border-top: 1px solid var(--border-color);
    flex-shrink: 0;
}

.mesaj-formu {
    display: flex;
    align-items: center;
    gap: var(--space-3);
}

.mesaj-formu input {
    flex-grow: 1;
    padding: var(--space-3) var(--space-4);
    border: 2px solid var(--border-color);
    border-radius: var(--border-radius);
    font-size: var(--font-size-base);
    transition: var(--transition);
}

.mesaj-formu input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(45, 80, 22, 0.1);
}

.mesaj-formu button {
    width: 44px;
    height: 44px;
    flex-shrink: 0;
    background-color: var(--primary-color);
    color: var(--text-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mesaj-formu button:hover {
    background-color: var(--primary-dark);
}

/* ====================================================== */
/* BAYİ DESTEK ASİSTANI - ÖZELLEŞTİRİLMİŞ STİLLER        */
/* ====================================================== */

/* Bayi chatbot ikonu - farklı renk teması */
.dealer-chatbot-ikon {
    position: fixed;
    bottom: var(--space-8);
    right: var(--space-8);
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #2d5016, #4a7c29);
    color: var(--text-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: var(--shadow-lg);
    transition: var(--transition-slow);
    z-index: 2147483000; /* ultra high to ensure visible above admin UI */
    pointer-events: auto; /* only clickable within the circle */
    overflow: visible;
}

.dealer-chatbot-ikon:hover {
    transform: translateY(-4px) scale(1.1);
    box-shadow: var(--shadow-xl);
    background: linear-gradient(135deg, #4a7c29, #5a8a35);
}

.dealer-chatbot-ikon .material-symbols-outlined {
    font-size: 32px;
}

/* Bayi chatbot penceresi */
.dealer-chatbot-penceresi {
    position: fixed;
    bottom: calc(var(--space-8) + 75px);
    right: var(--space-8);
    width: 370px;
    height: 550px;
    background-color: var(--bg-primary);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-xl);
    display: none; /* completely removed from flow when closed */
    flex-direction: column;
    transform: translateY(20px);
    opacity: 0;
    transition: transform 0.3s ease, opacity 0.3s ease;
    z-index: 2147483001;
    pointer-events: auto; /* do not intercept outside area */
    max-width: 90vw;
    max-height: 80vh;
}

/* Ensure admin sidebar stays clickable above any stray overlays */
.admin-sidebar {
    position: relative;
    z-index: 100;
}

.dealer-chatbot-penceresi.aktif {
    display: flex;
    transform: translateY(0);
    opacity: 1;
}

/* Safety: absolutely prevent any click-catching when not active */
.dealer-chatbot-penceresi:not(.aktif) { display: none !important; pointer-events: none !important; opacity: 0 !important; }

/* Bayi chatbot başlığı - bayi teması */
.dealer-chatbot-baslik {
    background: linear-gradient(135deg, #2d5016, #4a7c29);
    color: var(--text-white);
    padding: var(--space-4) var(--space-5);
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: var(--border-radius-lg) var(--border-radius-lg) 0 0;
}

.baslik-sol {
    display: flex;
    align-items: center;
    gap: var(--space-3);
}

.dealer-chatbot-baslik h3 {
    margin: 0;
    font-size: var(--font-size-lg);
    font-weight: 600;
}

.dealer-chatbot-baslik .kapat-btn {
    background: none;
    border: none;
    color: var(--text-white);
    cursor: pointer;
    padding: var(--space-2);
    border-radius: var(--border-radius);
    opacity: 0.8;
    transition: opacity 0.2s ease;
}

.dealer-chatbot-baslik .kapat-btn:hover {
    opacity: 1;
}

/* Bayi chatbot gövdesi */
.dealer-chatbot-govde {
    flex-grow: 1;
    padding: var(--space-5);
    overflow-y: auto;
    background-color: var(--bg-secondary);
    display: flex;
    flex-direction: column;
    gap: var(--space-3);
}

/* Bayi chatbot mesaj stilleri */
.dealer-chatbot-govde .mesaj {
    max-width: 85%;
    padding: var(--space-3) var(--space-4);
    border-radius: var(--border-radius-lg);
    word-wrap: break-word;
    line-height: 1.5;
}

.dealer-chatbot-govde .bot-mesaji {
    background-color: #f0f8f0;
    color: var(--text-primary);
    border: 1px solid #e0f0e0;
    align-self: flex-start;
    border-bottom-left-radius: var(--space-1);
}

.dealer-chatbot-govde .kullanici-mesaji {
    background: linear-gradient(135deg, #2d5016, #4a7c29);
    color: var(--text-white);
    align-self: flex-end;
    border-bottom-right-radius: var(--space-1);
}

/* Bayi chatbot alt bilgi */
.dealer-chatbot-altbilgi {
    padding: var(--space-3);
    background-color: var(--bg-primary);
    border-top: 1px solid var(--border-color);
    flex-shrink: 0;
}

.dealer-chatbot-altbilgi .mesaj-formu {
    display: flex;
    gap: var(--space-2);
    align-items: center;
}

.dealer-chatbot-altbilgi input {
    flex: 1;
    padding: var(--space-3);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    font-size: var(--font-size-sm);
    outline: none;
    transition: border-color 0.2s ease;
}

.dealer-chatbot-altbilgi input:focus {
    border-color: #4a7c29;
    box-shadow: 0 0 0 2px rgba(74, 124, 41, 0.2);
}

.dealer-chatbot-altbilgi button {
    background: linear-gradient(135deg, #2d5016, #4a7c29);
    color: var(--text-white);
    border: none;
    padding: var(--space-3);
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: var(--transition-fast);
    display: flex;
    align-items: center;
    justify-content: center;
}

.dealer-chatbot-altbilgi button:hover {
    background: linear-gradient(135deg, #4a7c29, #5a8a35);
    transform: translateY(-1px);
}

/* Mobil için bayi chatbot düzenlemeleri */
@media (max-width: 768px) {
    .dealer-chatbot-ikon {
        bottom: var(--space-6);
        right: var(--space-6);
    }
    .dealer-chatbot-penceresi {
        width: min(420px, calc(100% - var(--space-8)));
        height: min(80vh, calc(100% - var(--space-16)));
        max-height: none;
        bottom: var(--space-4);
        right: var(--space-4);
    }
}

/* Mobil için küçük düzenlemeler */
@media (max-width: 768px) {
    .chatbot-ikon {
        bottom: var(--space-6);
        right: var(--space-6);
    }
    .chatbot-penceresi {
        width: calc(100% - var(--space-8));
        height: calc(100% - var(--space-16));
        max-height: none;
        bottom: var(--space-4);
        right: var(--space-4);
        left: var(--space-4);
    }
}
/* Chatbot "Yazıyor..." Animasyonu */
.mesaj.typing p {
    display: inline-block;
    vertical-align: bottom;
    animation: typing-dots 1.5s infinite;
    background-image: radial-gradient(circle at 3px 3px, currentColor 3px, transparent 0);
    background-size: 1.2em 1.2em;
    background-repeat: no-repeat;
    width: 3em;
    height: 1em;
    content: '';
}

@keyframes typing-dots {
    0%, 100% { background-position: 0 50%; }
    33% { background-position: 1.2em 50%; }
    66% { background-position: 2.4em 50%; }
}

/* ==========================================================================
   ACCOUNT PAGE STYLES - MODERN DESIGN
   ========================================================================== */

/* Account Section */
.account-section {
    padding: var(--space-20) 0;
    background-color: var(--bg-secondary);
    min-height: calc(100vh - 400px);
}

.account-layout {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: var(--space-12);
    max-width: 1200px;
    margin: 0 auto;
}

/* Sidebar */
.account-sidebar {
    background: var(--bg-primary);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    position: sticky;
    top: var(--space-8);
    height: fit-content;
}

.user-profile-card {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    color: var(--text-white);
    padding: var(--space-8);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.user-profile-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

.user-avatar {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-4);
    position: relative;
    z-index: 1;
}

.user-avatar .material-symbols-outlined {
    font-size: 40px;
    color: var(--text-white);
}

.user-info h3 {
    font-size: var(--font-size-xl);
    font-weight: 600;
    margin-bottom: var(--space-2);
    position: relative;
    z-index: 1;
}

.user-info p {
    font-size: var(--font-size-sm);
    opacity: 0.9;
    margin-bottom: var(--space-3);
    position: relative;
    z-index: 1;
}

.user-role-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    color: var(--text-white);
    padding: var(--space-1) var(--space-3);
    border-radius: var(--border-radius);
    font-size: var(--font-size-xs);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    z-index: 1;
}

/* Account Navigation */
.account-nav {
    padding: var(--space-6);
}

.account-nav-link {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    padding: var(--space-4) var(--space-5);
    color: var(--text-secondary);
    text-decoration: none;
    border-radius: var(--border-radius);
    font-weight: 500;
    transition: var(--transition);
    margin-bottom: var(--space-2);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    user-select: none;
}

.account-nav-link::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 0;
    background: var(--primary-color);
    transition: var(--transition);
}

.account-nav-link:hover {
    color: var(--primary-color);
    background-color: var(--bg-secondary);
    transform: translateX(4px);
}

.account-nav-link.active {
    color: var(--text-white);
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    box-shadow: var(--shadow-md);
}

.account-nav-link.active::before {
    width: 4px;
}

.account-nav-link .material-symbols-outlined {
    font-size: 20px;
    flex-shrink: 0;
}

.order-count {
    background: var(--error-color);
    color: var(--text-white);
    font-size: var(--font-size-xs);
    padding: 2px 6px;
    border-radius: 10px;
    margin-left: auto;
    min-width: 20px;
    text-align: center;
}

.nav-divider {
    height: 1px;
    background: var(--border-color);
    margin: var(--space-4) 0;
}

.logout-link {
    color: var(--error-color) !important;
}

.logout-link:hover {
    background-color: rgba(231, 76, 60, 0.1) !important;
    color: var(--error-color) !important;
}

/* Main Content */
.account-content {
    background: var(--bg-primary);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
}

.account-tab {
    display: none;
    padding: var(--space-8);
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.account-tab.active {
    display: block;
    opacity: 1;
    transform: translateY(0);
    animation: fadeIn 0.3s ease-in-out;
}

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

.tab-header {
    margin-bottom: var(--space-8);
    padding-bottom: var(--space-6);
    border-bottom: 2px solid var(--bg-secondary);
}

.tab-header h2 {
    font-size: var(--font-size-3xl);
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: var(--space-2);
}

.tab-header p {
    color: var(--text-secondary);
    font-size: var(--font-size-lg);
}

/* Dashboard Stats */
.dashboard-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--space-6);
    margin-bottom: var(--space-12);
}

.stat-card {
    background: linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    padding: var(--space-6);
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
}

.stat-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

.stat-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-4);
}

.stat-icon .material-symbols-outlined {
    font-size: 28px;
    color: var(--text-white);
}

.stat-content h3 {
    font-size: var(--font-size-3xl);
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: var(--space-2);
}

.stat-content p {
    color: var(--text-secondary);
    font-size: var(--font-size-sm);
    font-weight: 500;
}

/* Recent Activity */
.recent-activity {
    background: var(--bg-secondary);
    border-radius: var(--border-radius-lg);
    padding: var(--space-6);
}

.recent-activity h3 {
    font-size: var(--font-size-xl);
    font-weight: 600;
    margin-bottom: var(--space-6);
    color: var(--text-primary);
}

.activity-item {
    display: flex;
    align-items: center;
    gap: var(--space-4);
    padding: var(--space-4);
    background: var(--bg-primary);
    border-radius: var(--border-radius);
    margin-bottom: var(--space-3);
    transition: var(--transition);
}

.activity-item:hover {
    box-shadow: var(--shadow-sm);
}

.activity-item .material-symbols-outlined {
    color: var(--primary-color);
    font-size: 20px;
}

.activity-item p {
    color: var(--text-secondary);
    margin: 0;
}

/* Forms */
.account-form {
    max-width: 600px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-6);
}

.form-group {
    margin-bottom: var(--space-6);
}

.form-group label {
    display: block;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: var(--space-2);
    font-size: var(--font-size-sm);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: var(--space-4);
    border: 2px solid var(--border-color);
    border-radius: var(--border-radius);
    font-size: var(--font-size-base);
    transition: var(--transition);
    background: var(--bg-primary);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(45, 80, 22, 0.1);
}

.form-group input:disabled {
    background: var(--bg-secondary);
    color: var(--text-muted);
    cursor: not-allowed;
}

.form-group small {
    display: block;
    color: var(--text-muted);
    font-size: var(--font-size-xs);
    margin-top: var(--space-1);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    padding: var(--space-4) var(--space-6);
    border: none;
    border-radius: var(--border-radius);
    font-size: var(--font-size-base);
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: var(--transition);
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: var(--text-white);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: var(--bg-secondary);
    color: var(--text-primary);
    border: 2px solid var(--border-color);
}

.btn-secondary:hover {
    background: var(--border-color);
    transform: translateY(-2px);
}

.btn-danger {
    background: linear-gradient(135deg, var(--error-color), #c0392b);
    color: var(--text-white);
}

.btn-danger:hover {
    transform: translateY(-2px);
}

.btn-danger:disabled {
    background: #6c757d;
    border-color: #6c757d;
    cursor: not-allowed;
    transform: none;
    box-shadow: var(--shadow-lg);
}

.form-actions {
    margin-top: var(--space-8);
    padding-top: var(--space-6);
    border-top: 1px solid var(--border-color);
}

/* Orders Section */
.orders-container {
    background: var(--bg-secondary);
    border-radius: var(--border-radius-lg);
    padding: var(--space-6);
}

.orders-filters {
    display: flex;
    gap: var(--space-4);
    margin-bottom: var(--space-6);
    flex-wrap: wrap;
}

.orders-filters select,
.orders-filters input {
    padding: var(--space-3) var(--space-4);
    border: 2px solid var(--border-color);
    border-radius: var(--border-radius);
    font-size: var(--font-size-sm);
    background: var(--bg-primary);
    min-width: 200px;
}

.orders-filters input {
    flex: 1;
    min-width: 250px;
}

.orders-list {
    background: var(--bg-primary);
    border-radius: var(--border-radius);
    overflow: hidden;
}

.order-item {
    display: grid;
    grid-template-columns: 1fr auto auto auto;
    gap: var(--space-4);
    padding: var(--space-6);
    border-bottom: 1px solid var(--border-color);
    align-items: center;
    transition: var(--transition);
}

.order-item:hover {
    background: var(--bg-secondary);
}

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

.order-info h4 {
    font-size: var(--font-size-lg);
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: var(--space-1);
}

.order-info p {
    color: var(--text-secondary);
    font-size: var(--font-size-sm);
    margin: 0;
}

.order-status {
    padding: var(--space-2) var(--space-4);
    border-radius: var(--border-radius);
    font-size: var(--font-size-xs);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.order-status.pending {
    background: rgba(243, 156, 18, 0.1);
    color: var(--warning-color);
}

.order-status.processing {
    background: rgba(52, 152, 219, 0.1);
    color: var(--info-color);
}

.order-status.shipped {
    background: rgba(155, 89, 182, 0.1);
    color: #9b59b6;
}

.order-status.delivered {
    background: rgba(39, 174, 96, 0.1);
    color: var(--success-color);
}

.order-status.cancelled {
    background: rgba(231, 76, 60, 0.1);
    color: var(--error-color);
}

.order-amount {
    font-weight: 600;
    color: var(--text-primary);
}

.order-actions {
    display: flex;
    gap: var(--space-2);
}

.order-actions .btn {
    padding: var(--space-2) var(--space-3);
    font-size: var(--font-size-sm);
}

/* Addresses Section */
.addresses-list {
    display: grid;
    gap: var(--space-6);
}

.address-card {
    background: var(--bg-secondary);
    border: 2px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    padding: var(--space-6);
    transition: var(--transition);
    position: relative;
}

.address-card:hover {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-md);
}

.address-card.default {
    border-color: var(--primary-color);
    background: linear-gradient(135deg, rgba(45, 80, 22, 0.05), rgba(45, 80, 22, 0.1));
}

.address-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--space-4);
}

.address-title {
    font-weight: 600;
    color: var(--text-primary);
    font-size: var(--font-size-lg);
}

.address-type {
    background: var(--primary-color);
    color: var(--text-white);
    padding: var(--space-1) var(--space-3);
    border-radius: var(--border-radius);
    font-size: var(--font-size-xs);
    font-weight: 500;
}

.address-content {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: var(--space-4);
}

.address-actions {
    display: flex;
    gap: var(--space-3);
}

/* Favorites Section */
.favorites-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: var(--space-6);
}

.favorite-item {
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    transition: var(--transition);
}

.favorite-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.favorite-image {
    width: 100%;
    height: 200px;
    background: var(--bg-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

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

.favorite-image .material-symbols-outlined {
    font-size: 48px;
    color: var(--text-muted);
}

.favorite-content {
    padding: var(--space-4);
}

.favorite-title {
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: var(--space-2);
}

.favorite-price {
    color: var(--primary-color);
    font-weight: 600;
    font-size: var(--font-size-lg);
    margin-bottom: var(--space-3);
}

.favorite-actions {
    display: flex;
    gap: var(--space-2);
}

/* Security Section */
.security-sections {
    display: grid;
    gap: var(--space-12);
}

.security-section {
    background: var(--bg-secondary);
    border-radius: var(--border-radius-lg);
    padding: var(--space-8);
}

.security-section h3 {
    font-size: var(--font-size-xl);
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: var(--space-6);
}

.danger-zone {
    background: rgba(231, 76, 60, 0.05);
    border: 2px solid rgba(231, 76, 60, 0.2);
    border-radius: var(--border-radius);
    padding: var(--space-6);
    text-align: center;
}

.danger-zone p {
    color: var(--text-secondary);
    margin-bottom: var(--space-4);
    line-height: 1.6;
}

/* Notifications Section */
.notification-group {
    background: var(--bg-secondary);
    border-radius: var(--border-radius-lg);
    padding: var(--space-6);
    margin-bottom: var(--space-6);
}

.notification-group h3 {
    font-size: var(--font-size-lg);
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: var(--space-4);
}

.checkbox-group {
    margin-bottom: var(--space-4);
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    cursor: pointer;
    padding: var(--space-3);
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.checkbox-label:hover {
    background: var(--bg-primary);
}

.checkbox-label input[type="checkbox"] {
    display: none;
}

.checkmark {
    width: 20px;
    height: 20px;
    border: 2px solid var(--border-color);
    border-radius: 4px;
    position: relative;
    transition: var(--transition);
}

.checkbox-label input[type="checkbox"]:checked + .checkmark {
    background: var(--primary-color);
    border-color: var(--primary-color);
}

.checkbox-label input[type="checkbox"]:checked + .checkmark::after {
    content: '';
    position: absolute;
    left: 6px;
    top: 2px;
    width: 6px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

/* Loading States */
.loading-state {
    text-align: center;
    padding: var(--space-12);
    color: var(--text-secondary);
}

.loading-state .material-symbols-outlined {
    font-size: 48px;
    margin-bottom: var(--space-4);
    opacity: 0.5;
}

/* Empty States */
.empty-state {
    text-align: center;
    padding: var(--space-12);
    color: var(--text-secondary);
}

.empty-state .material-symbols-outlined {
    font-size: 64px;
    margin-bottom: var(--space-4);
    opacity: 0.3;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .account-layout {
        grid-template-columns: 280px 1fr;
        gap: var(--space-8);
    }
    
    .dashboard-stats {
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    }
}

@media (max-width: 768px) {
    .account-layout {
        grid-template-columns: 1fr;
        gap: var(--space-6);
    }
    
    .account-sidebar {
        position: static;
        order: 2;
    }
    
    .account-content {
        order: 1;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .orders-filters {
        flex-direction: column;
    }
    
    .orders-filters select,
    .orders-filters input {
        min-width: auto;
    }
    
    .order-item {
        grid-template-columns: 1fr;
        gap: var(--space-3);
    }
    
    .order-actions {
        justify-content: flex-start;
    }
    
    .favorites-list {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    }
    
    .dashboard-stats {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .page-header {
        padding: var(--space-12) 0;
    }
    
    .page-header h1 {
        font-size: var(--font-size-3xl);
    }
    
    .account-section {
        padding: var(--space-12) 0;
    }
    
    .account-tab {
        padding: var(--space-6);
    }
    
    .dashboard-stats {
        grid-template-columns: 1fr;
    }
    
    .favorites-list {
        grid-template-columns: 1fr;
    }
    
    .security-sections {
        gap: var(--space-8);
    }
    
    .security-section {
        padding: var(--space-6);
    }
}

/* ==========================================================================
   FAVORITE BUTTON STYLES
   ========================================================================== */

.favorite-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 40px;
    height: 40px;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.favorite-btn:hover {
    background: rgba(255, 255, 255, 1);
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.favorite-btn .material-symbols-outlined {
    font-size: 20px;
    color: #666;
    transition: all 0.3s ease;
}

.favorite-btn.favorited {
    background: rgba(255, 255, 255, 0.95);
}

.favorite-btn.favorited .material-symbols-outlined {
    color: #e74c3c;
    animation: heartBeat 0.6s ease-in-out;
}

@keyframes heartBeat {
    0% { transform: scale(1); }
    50% { transform: scale(1.3); }
    100% { transform: scale(1); }
}

/* Product card içinde favori butonu */
.product-card {
    position: relative;
}

.product-card .favorite-btn {
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-card:hover .favorite-btn {
    opacity: 1;
}

/* Product detail sayfasında favori butonu */
.product-detail .favorite-btn {
    position: static;
    width: 48px;
    height: 48px;
    margin-left: 10px;
    opacity: 1;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .favorite-btn {
        width: 36px;
        height: 36px;
        top: 8px;
        right: 8px;
    }
    
    .favorite-btn .material-symbols-outlined {
        font-size: 18px;
    }
    
    .product-detail .favorite-btn {
        width: 44px;
        height: 44px;
    }
}

/* ==========================================================================
   ORDER DETAIL MODAL STYLES
   ========================================================================== */

.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    padding: 20px;
    box-sizing: border-box;
}

#order-detail-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 99999;
    padding: 20px;
    box-sizing: border-box;
}

.modal-content {
    background: white;
    border-radius: 12px;
    max-width: 600px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25), 0 0 0 1px rgba(0, 0, 0, 0.05);
    animation: modalSlideIn 0.3s ease;
    position: relative;
    z-index: 100000;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-20px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    border-bottom: 1px solid #e5e7eb;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 12px 12px 0 0;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.modal-header h3 {
    margin: 0;
    color: #1f2937;
    font-size: 18px;
    font-weight: 600;
}

.modal-close-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    border-radius: 6px;
    color: #6b7280;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-close-btn:hover {
    background: rgba(0, 0, 0, 0.05);
    color: #374151;
    transform: scale(1.05);
}

.modal-close-btn .material-symbols-outlined {
    font-size: 20px;
}

.modal-body {
    padding: 24px;
}

.order-detail-info {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.detail-section {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    border: 1px solid #e5e7eb;
}

.detail-section h4 {
    margin: 0 0 16px 0;
    color: #1f2937;
    font-size: 16px;
    font-weight: 600;
    border-bottom: 2px solid #3b82f6;
    padding-bottom: 8px;
}

.detail-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 12px;
    padding: 8px 0;
    border-bottom: 1px solid #e5e7eb;
}

.detail-row:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.detail-row strong {
    color: #374151;
    font-weight: 500;
    min-width: 120px;
    flex-shrink: 0;
}

.detail-row span {
    color: #6b7280;
    text-align: right;
    flex: 1;
}

.status-badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.status-pending {
    background-color: #fef3c7;
    color: #92400e;
}

.status-confirmed {
    background-color: #dbeafe;
    color: #1e40af;
}

.status-preparing {
    background-color: #e0e7ff;
    color: #3730a3;
}

.status-shipped {
    background-color: #d1fae5;
    color: #065f46;
}

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

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

.order-items-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.order-item-detail {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px;
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
}

.item-info h5 {
    margin: 0 0 4px 0;
    color: #1f2937;
    font-size: 14px;
    font-weight: 500;
}

.item-info p {
    margin: 0;
    color: #6b7280;
    font-size: 12px;
}

.item-price {
    color: #1f2937;
    font-weight: 600;
    font-size: 14px;
}

.loading-state, .error-state {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    text-align: center;
}

.loading-state .material-symbols-outlined,
.error-state .material-symbols-outlined {
    font-size: 48px;
    color: #6b7280;
    margin-bottom: 16px;
}

.error-state .material-symbols-outlined {
    color: #ef4444;
}

.error-message {
    color: #ef4444;
    font-size: 12px;
    margin-top: 8px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .modal {
        padding: 10px;
    }
    
    .modal-content {
        max-height: 95vh;
    }
    
    .modal-header {
        padding: 16px 20px;
    }
    
    .modal-body {
        padding: 20px;
    }
    
    .detail-section {
        padding: 16px;
    }
    
    .detail-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
    }
    
    .detail-row strong {
        min-width: auto;
    }
    
    .detail-row span {
        text-align: left;
    }
    
    .order-item-detail {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
}

/* Payment Info Styles */
.payment-method {
    background: #e3f2fd;
    color: #1976d2;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-weight: 500;
    font-size: 0.9rem;
}

.payment-info {
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    padding: 1rem;
    margin-top: 0.5rem;
}

.payment-info h5 {
    color: #495057;
    margin: 0 0 0.75rem 0;
    font-size: 0.95rem;
    font-weight: 600;
}

.bank-details {
    background: white;
    border-radius: 6px;
    padding: 0.75rem;
}

.iban {
    font-family: 'Courier New', monospace;
    background: #f8f9fa;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    word-break: break-all;
    max-width: 100%;
}

.iban:hover {
    background: #e9ecef;
    transform: translateY(-1px);
}

.copy-icon {
    font-size: 0.8rem;
    opacity: 0.7;
    transition: opacity 0.2s ease;
}

.iban:hover .copy-icon {
    opacity: 1;
}

.payment-note {
    background: #fff3cd;
    border: 1px solid #ffeaa7;
    border-radius: 6px;
    padding: 0.75rem;
    margin-top: 0.75rem;
}

.payment-note small {
    color: #856404;
    font-size: 0.85rem;
    line-height: 1.4;
}

/* Sipariş kodu için özel stil */
.detail-row {
    word-wrap: break-word;
    overflow-wrap: break-word;
}

/* Cancel Order Modal Styles */
.cancel-warning {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    background: #fff3cd;
    border: 1px solid #ffeaa7;
    border-radius: 8px;
    margin-bottom: 20px;
}

.cancel-warning .material-symbols-outlined {
    color: #856404;
    font-size: 24px;
}

.cancel-warning p {
    color: #856404;
    margin: 0;
    font-weight: 500;
}

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

#cancel-order-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #495057;
}

#cancel-order-form textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 14px;
    font-family: inherit;
    resize: vertical;
    min-height: 100px;
    transition: border-color 0.3s ease;
    box-sizing: border-box;
}

#cancel-order-form textarea:focus {
    outline: none;
    border-color: #dc3545;
    box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.1);
}

#cancel-order-form textarea::placeholder {
    color: #6c757d;
}

.required {
    color: #dc3545;
}

.modal-actions {
    display: flex;
    gap: 12px;
    justify-content: flex-end;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #e9ecef;
}

.modal-actions .btn {
    min-width: 120px;
}


.detail-row strong {
    display: inline-block;
    min-width: 120px;
    margin-right: 8px;
}

/* Uzun metinler için */
.detail-row:has(span.iban) {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
}

.detail-row:has(span.iban) strong {
    min-width: auto;
    margin-right: 0;
}

/* Sipariş kodu için özel stil */
.order-code {
    font-family: 'Courier New', monospace;
    background: #e3f2fd;
    color: #1976d2;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-size: 0.9rem;
    font-weight: 500;
    word-break: break-all;
    display: inline-block;
    max-width: 100%;
    line-height: 1.4;
}

/* Mobile responsive for payment info */
@media (max-width: 768px) {
    .payment-info {
        padding: 0.75rem;
    }
    
    .bank-details {
        padding: 0.5rem;
    }
    
    .iban {
        font-size: 0.8rem;
        word-break: break-all;
    }
}


 
 / *   = = = = = = = = = = = = = = = = = = = = = = 
       A D M I N   S P A R ^  Y � N E T M   S T L L E R 
       = = = = = = = = = = = = = = = = = = = = = =   * / 
 
 / *   A c t i o n   b u t t o n s   * / 
 . a c t i o n s - c e l l   { 
         d i s p l a y :   f l e x ; 
         g a p :   8 p x ; 
         a l i g n - i t e m s :   c e n t e r ; 
 } 
 
 . a c t i o n - b t n   { 
         p a d d i n g :   6 p x   8 p x ; 
         b o r d e r :   n o n e ; 
         b o r d e r - r a d i u s :   4 p x ; 
         c u r s o r :   p o i n t e r ; 
         d i s p l a y :   f l e x ; 
         a l i g n - i t e m s :   c e n t e r ; 
         j u s t i f y - c o n t e n t :   c e n t e r ; 
         t r a n s i t i o n :   a l l   0 . 2 s   e a s e ; 
         f o n t - s i z e :   1 6 p x ; 
 } 
 
 . a c t i o n - b t n : h o v e r   { 
         t r a n s f o r m :   t r a n s l a t e Y ( - 1 p x ) ; 
         b o x - s h a d o w :   0   2 p x   4 p x   r g b a ( 0 , 0 , 0 , 0 . 1 ) ; 
 } 
 
 . e d i t - b t n   { 
         b a c k g r o u n d - c o l o r :   # 0 0 7 b f f ; 
         c o l o r :   w h i t e ; 
 } 
 
 . e d i t - b t n : h o v e r   { 
         b a c k g r o u n d - c o l o r :   # 0 0 5 6 b 3 ; 
 } 
 
 . s t a t u s - b t n   { 
         b a c k g r o u n d - c o l o r :   # 2 8 a 7 4 5 ; 
         c o l o r :   w h i t e ; 
 } 
 
 . s t a t u s - b t n : h o v e r   { 
         b a c k g r o u n d - c o l o r :   # 1 e 7 e 3 4 ; 
 } 
 
 . c a n c e l - b t n   { 
         b a c k g r o u n d - c o l o r :   # f f c 1 0 7 ; 
         c o l o r :   # 2 1 2 5 2 9 ; 
 } 
 
 . c a n c e l - b t n : h o v e r   { 
         b a c k g r o u n d - c o l o r :   # e 0 a 8 0 0 ; 
 } 
 
 . d e l e t e - b t n   { 
         b a c k g r o u n d - c o l o r :   # d c 3 5 4 5 ; 
         c o l o r :   w h i t e ; 
 } 
 
 . d e l e t e - b t n : h o v e r   { 
         b a c k g r o u n d - c o l o r :   # c 8 2 3 3 3 ; 
 } 
 
 / *   M o d a l   s t y l e s   f o r   o r d e r   m a n a g e m e n t   * / 
 . m o d a l - a c t i o n s   { 
         d i s p l a y :   f l e x ; 
         g a p :   1 2 p x ; 
         j u s t i f y - c o n t e n t :   f l e x - e n d ; 
         m a r g i n - t o p :   2 0 p x ; 
 } 
 
 . f o r m - g r o u p   { 
         m a r g i n - b o t t o m :   1 6 p x ; 
 } 
 
 . f o r m - g r o u p   l a b e l   { 
         d i s p l a y :   b l o c k ; 
         m a r g i n - b o t t o m :   6 p x ; 
         f o n t - w e i g h t :   5 0 0 ; 
         c o l o r :   # 3 3 3 ; 
 } 
 
 . f o r m - g r o u p   s e l e c t , 
 . f o r m - g r o u p   t e x t a r e a   { 
         w i d t h :   1 0 0 % ; 
         p a d d i n g :   8 p x   1 2 p x ; 
         b o r d e r :   1 p x   s o l i d   # d d d ; 
         b o r d e r - r a d i u s :   4 p x ; 
         f o n t - s i z e :   1 4 p x ; 
         t r a n s i t i o n :   b o r d e r - c o l o r   0 . 2 s   e a s e ; 
 } 
 
 . f o r m - g r o u p   s e l e c t : f o c u s , 
 . f o r m - g r o u p   t e x t a r e a : f o c u s   { 
         o u t l i n e :   n o n e ; 
         b o r d e r - c o l o r :   # 0 0 7 b f f ; 
         b o x - s h a d o w :   0   0   0   2 p x   r g b a ( 0 , 1 2 3 , 2 5 5 , 0 . 2 5 ) ; 
 } 
 
 . f o r m - g r o u p   t e x t a r e a   { 
         r e s i z e :   v e r t i c a l ; 
         m i n - h e i g h t :   8 0 p x ; 
 } 
 
 . w a r n i n g - m e s s a g e   { 
         d i s p l a y :   f l e x ; 
         a l i g n - i t e m s :   c e n t e r ; 
         g a p :   1 2 p x ; 
         p a d d i n g :   1 6 p x ; 
         b a c k g r o u n d - c o l o r :   # f f f 3 c d ; 
         b o r d e r :   1 p x   s o l i d   # f f e a a 7 ; 
         b o r d e r - r a d i u s :   6 p x ; 
         m a r g i n - b o t t o m :   2 0 p x ; 
 } 
 
 . w a r n i n g - m e s s a g e   . m a t e r i a l - s y m b o l s - o u t l i n e d   { 
         c o l o r :   # 8 5 6 4 0 4 ; 
         f o n t - s i z e :   2 4 p x ; 
 } 
 
 . w a r n i n g - m e s s a g e   p   { 
         m a r g i n :   0 ; 
         c o l o r :   # 8 5 6 4 0 4 ; 
 } 
 
 . b t n   { 
         p a d d i n g :   8 p x   1 6 p x ; 
         b o r d e r :   n o n e ; 
         b o r d e r - r a d i u s :   4 p x ; 
         c u r s o r :   p o i n t e r ; 
         f o n t - s i z e :   1 4 p x ; 
         f o n t - w e i g h t :   5 0 0 ; 
         t r a n s i t i o n :   a l l   0 . 2 s   e a s e ; 
         t e x t - d e c o r a t i o n :   n o n e ; 
         d i s p l a y :   i n l i n e - f l e x ; 
         a l i g n - i t e m s :   c e n t e r ; 
         g a p :   6 p x ; 
 } 
 
 . b t n : h o v e r   { 
         t r a n s f o r m :   t r a n s l a t e Y ( - 1 p x ) ; 
         b o x - s h a d o w :   0   2 p x   4 p x   r g b a ( 0 , 0 , 0 , 0 . 1 ) ; 
 } 
 
 . b t n - p r i m a r y   { 
         b a c k g r o u n d - c o l o r :   # 0 0 7 b f f ; 
         c o l o r :   w h i t e ; 
 } 
 
 . b t n - p r i m a r y : h o v e r   { 
         b a c k g r o u n d - c o l o r :   # 0 0 5 6 b 3 ; 
 } 
 
 . b t n - s e c o n d a r y   { 
         b a c k g r o u n d - c o l o r :   # 6 c 7 5 7 d ; 
         c o l o r :   w h i t e ; 
 } 
 
 . b t n - s e c o n d a r y : h o v e r   { 
         b a c k g r o u n d - c o l o r :   # 5 4 5 b 6 2 ; 
 } 
 
 . b t n - d a n g e r   { 
         b a c k g r o u n d - c o l o r :   # d c 3 5 4 5 ; 
         c o l o r :   w h i t e ; 
 } 
 
 . b t n - d a n g e r : h o v e r   { 
         b a c k g r o u n d - c o l o r :   # c 8 2 3 3 3 ; 
 } 
 
 
 
 / *   = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = 
       T E S T   C O D E   M O D A L   S T Y L E S 
       = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = =   * / 
 
 . t e s t - c o d e - m o d a l   { 
         p o s i t i o n :   f i x e d ; 
         t o p :   0 ; 
         l e f t :   0 ; 
         w i d t h :   1 0 0 % ; 
         h e i g h t :   1 0 0 % ; 
         b a c k g r o u n d :   r g b a ( 0 ,   0 ,   0 ,   0 . 8 ) ; 
         b a c k d r o p - f i l t e r :   b l u r ( 8 p x ) ; 
         d i s p l a y :   f l e x ; 
         a l i g n - i t e m s :   c e n t e r ; 
         j u s t i f y - c o n t e n t :   c e n t e r ; 
         z - i n d e x :   1 0 0 0 0 ; 
         o p a c i t y :   0 ; 
         v i s i b i l i t y :   h i d d e n ; 
         t r a n s i t i o n :   a l l   0 . 3 s   e a s e ; 
 } 
 
 . t e s t - c o d e - m o d a l . s h o w   { 
         o p a c i t y :   1 ; 
         v i s i b i l i t y :   v i s i b l e ; 
 } 
 
 . t e s t - c o d e - m o d a l - c o n t e n t   { 
         b a c k g r o u n d :   w h i t e ; 
         b o r d e r - r a d i u s :   2 0 p x ; 
         b o x - s h a d o w :   0   2 0 p x   6 0 p x   r g b a ( 0 ,   0 ,   0 ,   0 . 3 ) ; 
         p a d d i n g :   4 0 p x ; 
         m a x - w i d t h :   4 5 0 p x ; 
         w i d t h :   9 0 % ; 
         t e x t - a l i g n :   c e n t e r ; 
         t r a n s f o r m :   s c a l e ( 0 . 9 )   t r a n s l a t e Y ( 2 0 p x ) ; 
         t r a n s i t i o n :   a l l   0 . 3 s   e a s e ; 
         p o s i t i o n :   r e l a t i v e ; 
         o v e r f l o w :   h i d d e n ; 
 } 
 
 . t e s t - c o d e - m o d a l . s h o w   . t e s t - c o d e - m o d a l - c o n t e n t   { 
         t r a n s f o r m :   s c a l e ( 1 )   t r a n s l a t e Y ( 0 ) ; 
 } 
 
 . t e s t - c o d e - m o d a l - c o n t e n t : : b e f o r e   { 
         c o n t e n t :   ' ' ; 
         p o s i t i o n :   a b s o l u t e ; 
         t o p :   0 ; 
         l e f t :   0 ; 
         r i g h t :   0 ; 
         h e i g h t :   4 p x ; 
         b a c k g r o u n d :   l i n e a r - g r a d i e n t ( 9 0 d e g ,   # 0 0 7 b f f ,   # 2 8 a 7 4 5 ,   # f f c 1 0 7 ,   # d c 3 5 4 5 ) ; 
         b a c k g r o u n d - s i z e :   3 0 0 %   1 0 0 % ; 
         a n i m a t i o n :   g r a d i e n t S h i f t   3 s   e a s e - i n - o u t   i n f i n i t e ; 
 } 
 
 @ k e y f r a m e s   g r a d i e n t S h i f t   { 
         0 % ,   1 0 0 %   {   b a c k g r o u n d - p o s i t i o n :   0 %   5 0 % ;   } 
         5 0 %   {   b a c k g r o u n d - p o s i t i o n :   1 0 0 %   5 0 % ;   } 
 } 
 
 . t e s t - c o d e - h e a d e r   { 
         m a r g i n - b o t t o m :   3 0 p x ; 
 } 
 
 . t e s t - c o d e - l o g o   { 
         m a r g i n - b o t t o m :   2 0 p x ; 
 } 
 
 . t e s t - c o d e - l o g o   . l o g o - i m g   { 
         w i d t h :   8 0 p x ; 
         h e i g h t :   8 0 p x ; 
         o b j e c t - f i t :   c o n t a i n ; 
         b o r d e r - r a d i u s :   1 2 p x ; 
         b o x - s h a d o w :   0   4 p x   1 2 p x   r g b a ( 0 ,   1 2 3 ,   2 5 5 ,   0 . 2 ) ; 
 } 
 
 . t e s t - c o d e - h e a d e r   h 2   { 
         c o l o r :   # 2 c 3 e 5 0 ; 
         f o n t - s i z e :   2 8 p x ; 
         f o n t - w e i g h t :   6 0 0 ; 
         m a r g i n :   0   0   1 0 p x   0 ; 
         l e t t e r - s p a c i n g :   - 0 . 5 p x ; 
 } 
 
 . t e s t - c o d e - h e a d e r   p   { 
         c o l o r :   # 6 c 7 5 7 d ; 
         f o n t - s i z e :   1 6 p x ; 
         l i n e - h e i g h t :   1 . 5 ; 
         m a r g i n :   0 ; 
 } 
 
 . t e s t - c o d e - f o r m   { 
         m a r g i n - b o t t o m :   2 5 p x ; 
 } 
 
 . i n p u t - g r o u p   { 
         p o s i t i o n :   r e l a t i v e ; 
         m a r g i n - b o t t o m :   2 0 p x ; 
 } 
 
 . i n p u t - g r o u p   . i n p u t - i c o n   { 
         p o s i t i o n :   a b s o l u t e ; 
         l e f t :   1 5 p x ; 
         t o p :   5 0 % ; 
         t r a n s f o r m :   t r a n s l a t e Y ( - 5 0 % ) ; 
         c o l o r :   # 6 c 7 5 7 d ; 
         f o n t - s i z e :   2 0 p x ; 
         z - i n d e x :   2 ; 
 } 
 
 . i n p u t - g r o u p   i n p u t   { 
         w i d t h :   1 0 0 % ; 
         p a d d i n g :   1 5 p x   5 0 p x   1 5 p x   5 0 p x ; 
         b o r d e r :   2 p x   s o l i d   # e 9 e c e f ; 
         b o r d e r - r a d i u s :   1 2 p x ; 
         f o n t - s i z e :   1 6 p x ; 
         f o n t - w e i g h t :   5 0 0 ; 
         b a c k g r o u n d :   # f 8 f 9 f a ; 
         t r a n s i t i o n :   a l l   0 . 3 s   e a s e ; 
         b o x - s i z i n g :   b o r d e r - b o x ; 
 } 
 
 . i n p u t - g r o u p   i n p u t : f o c u s   { 
         o u t l i n e :   n o n e ; 
         b o r d e r - c o l o r :   # 0 0 7 b f f ; 
         b a c k g r o u n d :   w h i t e ; 
         b o x - s h a d o w :   0   0   0   3 p x   r g b a ( 0 ,   1 2 3 ,   2 5 5 ,   0 . 1 ) ; 
 } 
 
 . v i s i b i l i t y - t o g g l e   { 
         p o s i t i o n :   a b s o l u t e ; 
         r i g h t :   1 5 p x ; 
         t o p :   5 0 % ; 
         t r a n s f o r m :   t r a n s l a t e Y ( - 5 0 % ) ; 
         b a c k g r o u n d :   n o n e ; 
         b o r d e r :   n o n e ; 
         c o l o r :   # 6 c 7 5 7 d ; 
         c u r s o r :   p o i n t e r ; 
         p a d d i n g :   5 p x ; 
         b o r d e r - r a d i u s :   6 p x ; 
         t r a n s i t i o n :   a l l   0 . 2 s   e a s e ; 
 } 
 
 . v i s i b i l i t y - t o g g l e : h o v e r   { 
         b a c k g r o u n d :   # e 9 e c e f ; 
         c o l o r :   # 4 9 5 0 5 7 ; 
 } 
 
 . e r r o r - m e s s a g e   { 
         d i s p l a y :   f l e x ; 
         a l i g n - i t e m s :   c e n t e r ; 
         j u s t i f y - c o n t e n t :   c e n t e r ; 
         g a p :   8 p x ; 
         c o l o r :   # d c 3 5 4 5 ; 
         f o n t - s i z e :   1 4 p x ; 
         f o n t - w e i g h t :   5 0 0 ; 
         m a r g i n - b o t t o m :   1 5 p x ; 
         p a d d i n g :   1 2 p x ; 
         b a c k g r o u n d :   # f 8 d 7 d a ; 
         b o r d e r :   1 p x   s o l i d   # f 5 c 6 c b ; 
         b o r d e r - r a d i u s :   8 p x ; 
 } 
 
 . t e s t - c o d e - b t n   { 
         w i d t h :   1 0 0 % ; 
         p a d d i n g :   1 5 p x ; 
         b a c k g r o u n d :   l i n e a r - g r a d i e n t ( 1 3 5 d e g ,   # 0 0 7 b f f ,   # 0 0 5 6 b 3 ) ; 
         c o l o r :   w h i t e ; 
         b o r d e r :   n o n e ; 
         b o r d e r - r a d i u s :   1 2 p x ; 
         f o n t - s i z e :   1 6 p x ; 
         f o n t - w e i g h t :   6 0 0 ; 
         c u r s o r :   p o i n t e r ; 
         t r a n s i t i o n :   a l l   0 . 3 s   e a s e ; 
         p o s i t i o n :   r e l a t i v e ; 
         o v e r f l o w :   h i d d e n ; 
 } 
 
 . t e s t - c o d e - b t n : h o v e r   { 
         b a c k g r o u n d :   l i n e a r - g r a d i e n t ( 1 3 5 d e g ,   # 0 0 5 6 b 3 ,   # 0 0 4 0 8 5 ) ; 
         t r a n s f o r m :   t r a n s l a t e Y ( - 2 p x ) ; 
         b o x - s h a d o w :   0   8 p x   2 5 p x   r g b a ( 0 ,   1 2 3 ,   2 5 5 ,   0 . 3 ) ; 
 } 
 
 . t e s t - c o d e - b t n : a c t i v e   { 
         t r a n s f o r m :   t r a n s l a t e Y ( 0 ) ; 
 } 
 
 . t e s t - c o d e - b t n : d i s a b l e d   { 
         o p a c i t y :   0 . 7 ; 
         c u r s o r :   n o t - a l l o w e d ; 
         t r a n s f o r m :   n o n e ; 
 } 
 
 . b t n - l o a d e r   { 
         p o s i t i o n :   a b s o l u t e ; 
         t o p :   5 0 % ; 
         l e f t :   5 0 % ; 
         t r a n s f o r m :   t r a n s l a t e ( - 5 0 % ,   - 5 0 % ) ; 
 } 
 
 . s p i n n i n g   { 
         a n i m a t i o n :   s p i n   1 s   l i n e a r   i n f i n i t e ; 
 } 
 
 @ k e y f r a m e s   s p i n   { 
         f r o m   {   t r a n s f o r m :   r o t a t e ( 0 d e g ) ;   } 
         t o   {   t r a n s f o r m :   r o t a t e ( 3 6 0 d e g ) ;   } 
 } 
 
 . t e s t - c o d e - f o o t e r   { 
         b o r d e r - t o p :   1 p x   s o l i d   # e 9 e c e f ; 
         p a d d i n g - t o p :   2 0 p x ; 
 } 
 
 . t e s t - c o d e - f o o t e r   p   { 
         d i s p l a y :   f l e x ; 
         a l i g n - i t e m s :   c e n t e r ; 
         j u s t i f y - c o n t e n t :   c e n t e r ; 
         g a p :   8 p x ; 
         c o l o r :   # 6 c 7 5 7 d ; 
         f o n t - s i z e :   1 4 p x ; 
         m a r g i n :   0 ; 
 } 
 
 . t e s t - c o d e - f o o t e r   . m a t e r i a l - s y m b o l s - o u t l i n e d   { 
         f o n t - s i z e :   1 8 p x ; 
         c o l o r :   # 0 0 7 b f f ; 
 } 
 
 / *   M o b i l e   R e s p o n s i v e   * / 
 @ m e d i a   ( m a x - w i d t h :   7 6 8 p x )   { 
         . t e s t - c o d e - m o d a l - c o n t e n t   { 
                 p a d d i n g :   3 0 p x   2 5 p x ; 
                 m a r g i n :   2 0 p x ; 
                 m a x - w i d t h :   n o n e ; 
                 w i d t h :   c a l c ( 1 0 0 %   -   4 0 p x ) ; 
         } 
         
         . t e s t - c o d e - h e a d e r   h 2   { 
                 f o n t - s i z e :   2 4 p x ; 
         } 
         
         . t e s t - c o d e - l o g o   . l o g o - i m g   { 
                 w i d t h :   7 0 p x ; 
                 h e i g h t :   7 0 p x ; 
         } 
         
         . i n p u t - g r o u p   i n p u t   { 
                 p a d d i n g :   1 2 p x   4 5 p x   1 2 p x   4 5 p x ; 
                 f o n t - s i z e :   1 6 p x ; 
         } 
 } 
 
 @ m e d i a   ( m a x - w i d t h :   4 8 0 p x )   { 
         . t e s t - c o d e - m o d a l - c o n t e n t   { 
                 p a d d i n g :   3 0 p x   2 0 p x ; 
                 m a r g i n :   1 5 p x ; 
                 w i d t h :   c a l c ( 1 0 0 %   -   3 0 p x ) ; 
         } 
         
         . t e s t - c o d e - h e a d e r   h 2   { 
                 f o n t - s i z e :   2 2 p x ; 
         } 
         
         . t e s t - c o d e - h e a d e r   p   { 
                 f o n t - s i z e :   1 4 p x ; 
         } 
 } 
 
 
 
 / *   = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = 
       T E S T   A C C E S S   S C R E E N   S T Y L E S   -   F U L L   P A G E 
       = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = =   * / 
 
 . t e s t - a c c e s s - s c r e e n   { 
         p o s i t i o n :   f i x e d ; 
         t o p :   0 ; 
         l e f t :   0 ; 
         w i d t h :   1 0 0 % ; 
         h e i g h t :   1 0 0 % ; 
         b a c k g r o u n d :   l i n e a r - g r a d i e n t ( 1 3 5 d e g ,   # 6 6 7 e e a   0 % ,   # 7 6 4 b a 2   1 0 0 % ) ; 
         d i s p l a y :   f l e x ; 
         a l i g n - i t e m s :   c e n t e r ; 
         j u s t i f y - c o n t e n t :   c e n t e r ; 
         z - i n d e x :   9 9 9 9 9 ; 
         o p a c i t y :   1 ; 
         v i s i b i l i t y :   v i s i b l e ; 
         t r a n s i t i o n :   a l l   0 . 5 s   e a s e ; 
 } 
 
 . t e s t - a c c e s s - s c r e e n . h i d d e n   { 
         o p a c i t y :   0 ; 
         v i s i b i l i t y :   h i d d e n ; 
         t r a n s f o r m :   t r a n s l a t e Y ( - 1 0 0 % ) ; 
 } 
 
 . t e s t - a c c e s s - c o n t a i n e r   { 
         b a c k g r o u n d :   w h i t e ; 
         b o r d e r - r a d i u s :   2 0 p x ; 
         b o x - s h a d o w :   0   2 5 p x   8 0 p x   r g b a ( 0 ,   0 ,   0 ,   0 . 3 ) ; 
         p a d d i n g :   6 0 p x   5 0 p x ; 
         m a x - w i d t h :   5 0 0 p x ; 
         w i d t h :   9 0 % ; 
         t e x t - a l i g n :   c e n t e r ; 
         p o s i t i o n :   r e l a t i v e ; 
         o v e r f l o w :   h i d d e n ; 
 } 
 
 . t e s t - a c c e s s - c o n t a i n e r : : b e f o r e   { 
         c o n t e n t :   ' ' ; 
         p o s i t i o n :   a b s o l u t e ; 
         t o p :   0 ; 
         l e f t :   0 ; 
         r i g h t :   0 ; 
         h e i g h t :   5 p x ; 
         b a c k g r o u n d :   l i n e a r - g r a d i e n t ( 9 0 d e g ,   # 6 6 7 e e a ,   # 7 6 4 b a 2 ,   # f 0 9 3 f b ,   # f 5 5 7 6 c ) ; 
         b a c k g r o u n d - s i z e :   4 0 0 %   1 0 0 % ; 
         a n i m a t i o n :   g r a d i e n t F l o w   4 s   e a s e - i n - o u t   i n f i n i t e ; 
 } 
 
 @ k e y f r a m e s   g r a d i e n t F l o w   { 
         0 % ,   1 0 0 %   {   b a c k g r o u n d - p o s i t i o n :   0 %   5 0 % ;   } 
         5 0 %   {   b a c k g r o u n d - p o s i t i o n :   1 0 0 %   5 0 % ;   } 
 } 
 
 . t e s t - a c c e s s - h e a d e r   { 
         m a r g i n - b o t t o m :   4 0 p x ; 
 } 
 
 . t e s t - a c c e s s - l o g o   { 
         d i s p l a y :   f l e x ; 
         f l e x - d i r e c t i o n :   c o l u m n ; 
         a l i g n - i t e m s :   c e n t e r ; 
         g a p :   1 5 p x ; 
 } 
 
 . t e s t - a c c e s s - l o g o   . l o g o - i m g   { 
         w i d t h :   1 0 0 p x ; 
         h e i g h t :   1 0 0 p x ; 
         o b j e c t - f i t :   c o n t a i n ; 
         b o r d e r - r a d i u s :   2 0 p x ; 
         b o x - s h a d o w :   0   1 0 p x   3 0 p x   r g b a ( 1 0 2 ,   1 2 6 ,   2 3 4 ,   0 . 3 ) ; 
         t r a n s i t i o n :   t r a n s f o r m   0 . 3 s   e a s e ; 
 } 
 
 . t e s t - a c c e s s - l o g o   . l o g o - i m g : h o v e r   { 
         t r a n s f o r m :   s c a l e ( 1 . 0 5 ) ; 
 } 
 
 . t e s t - a c c e s s - l o g o   h 1   { 
         c o l o r :   # 2 c 3 e 5 0 ; 
         f o n t - s i z e :   3 2 p x ; 
         f o n t - w e i g h t :   7 0 0 ; 
         m a r g i n :   0 ; 
         l e t t e r - s p a c i n g :   - 1 p x ; 
         b a c k g r o u n d :   l i n e a r - g r a d i e n t ( 1 3 5 d e g ,   # 6 6 7 e e a ,   # 7 6 4 b a 2 ) ; 
         - w e b k i t - b a c k g r o u n d - c l i p :   t e x t ; 
         - w e b k i t - t e x t - f i l l - c o l o r :   t r a n s p a r e n t ; 
         b a c k g r o u n d - c l i p :   t e x t ; 
 } 
 
 . t e s t - a c c e s s - c o n t e n t   { 
         m a r g i n - b o t t o m :   4 0 p x ; 
 } 
 
 . t e s t - a c c e s s - i c o n   { 
         m a r g i n - b o t t o m :   2 5 p x ; 
 } 
 
 . t e s t - a c c e s s - i c o n   . m a t e r i a l - s y m b o l s - o u t l i n e d   { 
         f o n t - s i z e :   6 4 p x ; 
         c o l o r :   # 6 6 7 e e a ; 
         b a c k g r o u n d :   l i n e a r - g r a d i e n t ( 1 3 5 d e g ,   # 6 6 7 e e a ,   # 7 6 4 b a 2 ) ; 
         - w e b k i t - b a c k g r o u n d - c l i p :   t e x t ; 
         - w e b k i t - t e x t - f i l l - c o l o r :   t r a n s p a r e n t ; 
         b a c k g r o u n d - c l i p :   t e x t ; 
         a n i m a t i o n :   p u l s e   2 s   e a s e - i n - o u t   i n f i n i t e ; 
 } 
 
 @ k e y f r a m e s   p u l s e   { 
         0 % ,   1 0 0 %   {   t r a n s f o r m :   s c a l e ( 1 ) ;   } 
         5 0 %   {   t r a n s f o r m :   s c a l e ( 1 . 1 ) ;   } 
 } 
 
 . t e s t - a c c e s s - c o n t e n t   h 2   { 
         c o l o r :   # 2 c 3 e 5 0 ; 
         f o n t - s i z e :   2 8 p x ; 
         f o n t - w e i g h t :   6 0 0 ; 
         m a r g i n :   0   0   1 5 p x   0 ; 
         l e t t e r - s p a c i n g :   - 0 . 5 p x ; 
 } 
 
 . t e s t - a c c e s s - c o n t e n t   p   { 
         c o l o r :   # 6 c 7 5 7 d ; 
         f o n t - s i z e :   1 6 p x ; 
         l i n e - h e i g h t :   1 . 6 ; 
         m a r g i n :   0   0   3 5 p x   0 ; 
 } 
 
 . t e s t - c o d e - f o r m   { 
         m a x - w i d t h :   3 5 0 p x ; 
         m a r g i n :   0   a u t o ; 
 } 
 
 . i n p u t - g r o u p   { 
         p o s i t i o n :   r e l a t i v e ; 
         m a r g i n - b o t t o m :   2 5 p x ; 
 } 
 
 . i n p u t - g r o u p   . i n p u t - i c o n   { 
         p o s i t i o n :   a b s o l u t e ; 
         l e f t :   1 8 p x ; 
         t o p :   5 0 % ; 
         t r a n s f o r m :   t r a n s l a t e Y ( - 5 0 % ) ; 
         c o l o r :   # 6 6 7 e e a ; 
         f o n t - s i z e :   2 2 p x ; 
         z - i n d e x :   2 ; 
 } 
 
 . i n p u t - g r o u p   i n p u t   { 
         w i d t h :   1 0 0 % ; 
         p a d d i n g :   1 8 p x   6 0 p x   1 8 p x   5 5 p x ; 
         b o r d e r :   2 p x   s o l i d   # e 9 e c e f ; 
         b o r d e r - r a d i u s :   1 5 p x ; 
         f o n t - s i z e :   1 6 p x ; 
         f o n t - w e i g h t :   5 0 0 ; 
         b a c k g r o u n d :   # f 8 f 9 f a ; 
         t r a n s i t i o n :   a l l   0 . 3 s   e a s e ; 
         b o x - s i z i n g :   b o r d e r - b o x ; 
         t e x t - a l i g n :   c e n t e r ; 
         l e t t e r - s p a c i n g :   2 p x ; 
         f o n t - f a m i l y :   ' C o u r i e r   N e w ' ,   m o n o s p a c e ; 
 } 
 
 . i n p u t - g r o u p   i n p u t : f o c u s   { 
         o u t l i n e :   n o n e ; 
         b o r d e r - c o l o r :   # 6 6 7 e e a ; 
         b a c k g r o u n d :   w h i t e ; 
         b o x - s h a d o w :   0   0   0   4 p x   r g b a ( 1 0 2 ,   1 2 6 ,   2 3 4 ,   0 . 1 ) ; 
         t r a n s f o r m :   t r a n s l a t e Y ( - 2 p x ) ; 
 } 
 
 . v i s i b i l i t y - t o g g l e   { 
         p o s i t i o n :   a b s o l u t e ; 
         r i g h t :   1 8 p x ; 
         t o p :   5 0 % ; 
         t r a n s f o r m :   t r a n s l a t e Y ( - 5 0 % ) ; 
         b a c k g r o u n d :   n o n e ; 
         b o r d e r :   n o n e ; 
         c o l o r :   # 6 c 7 5 7 d ; 
         c u r s o r :   p o i n t e r ; 
         p a d d i n g :   8 p x ; 
         b o r d e r - r a d i u s :   8 p x ; 
         t r a n s i t i o n :   a l l   0 . 2 s   e a s e ; 
 } 
 
 . v i s i b i l i t y - t o g g l e : h o v e r   { 
         b a c k g r o u n d :   # e 9 e c e f ; 
         c o l o r :   # 4 9 5 0 5 7 ; 
 } 
 
 . e r r o r - m e s s a g e   { 
         d i s p l a y :   f l e x ; 
         a l i g n - i t e m s :   c e n t e r ; 
         j u s t i f y - c o n t e n t :   c e n t e r ; 
         g a p :   1 0 p x ; 
         c o l o r :   # d c 3 5 4 5 ; 
         f o n t - s i z e :   1 4 p x ; 
         f o n t - w e i g h t :   5 0 0 ; 
         m a r g i n - b o t t o m :   2 0 p x ; 
         p a d d i n g :   1 5 p x ; 
         b a c k g r o u n d :   # f 8 d 7 d a ; 
         b o r d e r :   1 p x   s o l i d   # f 5 c 6 c b ; 
         b o r d e r - r a d i u s :   1 0 p x ; 
         a n i m a t i o n :   s h a k e   0 . 5 s   e a s e - i n - o u t ; 
 } 
 
 @ k e y f r a m e s   s h a k e   { 
         0 % ,   1 0 0 %   {   t r a n s f o r m :   t r a n s l a t e X ( 0 ) ;   } 
         2 5 %   {   t r a n s f o r m :   t r a n s l a t e X ( - 5 p x ) ;   } 
         7 5 %   {   t r a n s f o r m :   t r a n s l a t e X ( 5 p x ) ;   } 
 } 
 
 . t e s t - c o d e - b t n   { 
         w i d t h :   1 0 0 % ; 
         p a d d i n g :   1 8 p x ; 
         b a c k g r o u n d :   l i n e a r - g r a d i e n t ( 1 3 5 d e g ,   # 6 6 7 e e a ,   # 7 6 4 b a 2 ) ; 
         c o l o r :   w h i t e ; 
         b o r d e r :   n o n e ; 
         b o r d e r - r a d i u s :   1 5 p x ; 
         f o n t - s i z e :   1 6 p x ; 
         f o n t - w e i g h t :   6 0 0 ; 
         c u r s o r :   p o i n t e r ; 
         t r a n s i t i o n :   a l l   0 . 3 s   e a s e ; 
         p o s i t i o n :   r e l a t i v e ; 
         o v e r f l o w :   h i d d e n ; 
         t e x t - t r a n s f o r m :   u p p e r c a s e ; 
         l e t t e r - s p a c i n g :   1 p x ; 
 } 
 
 . t e s t - c o d e - b t n : h o v e r   { 
         b a c k g r o u n d :   l i n e a r - g r a d i e n t ( 1 3 5 d e g ,   # 5 a 6 f d 8 ,   # 6 a 4 1 9 0 ) ; 
         t r a n s f o r m :   t r a n s l a t e Y ( - 3 p x ) ; 
         b o x - s h a d o w :   0   1 5 p x   3 5 p x   r g b a ( 1 0 2 ,   1 2 6 ,   2 3 4 ,   0 . 4 ) ; 
 } 
 
 . t e s t - c o d e - b t n : a c t i v e   { 
         t r a n s f o r m :   t r a n s l a t e Y ( - 1 p x ) ; 
 } 
 
 . t e s t - c o d e - b t n : d i s a b l e d   { 
         o p a c i t y :   0 . 7 ; 
         c u r s o r :   n o t - a l l o w e d ; 
         t r a n s f o r m :   n o n e ; 
 } 
 
 . b t n - l o a d e r   { 
         p o s i t i o n :   a b s o l u t e ; 
         t o p :   5 0 % ; 
         l e f t :   5 0 % ; 
         t r a n s f o r m :   t r a n s l a t e ( - 5 0 % ,   - 5 0 % ) ; 
 } 
 
 . s p i n n i n g   { 
         a n i m a t i o n :   s p i n   1 s   l i n e a r   i n f i n i t e ; 
 } 
 
 @ k e y f r a m e s   s p i n   { 
         f r o m   {   t r a n s f o r m :   r o t a t e ( 0 d e g ) ;   } 
         t o   {   t r a n s f o r m :   r o t a t e ( 3 6 0 d e g ) ;   } 
 } 
 
 . t e s t - a c c e s s - f o o t e r   { 
         b o r d e r - t o p :   1 p x   s o l i d   # e 9 e c e f ; 
         p a d d i n g - t o p :   2 5 p x ; 
 } 
 
 . t e s t - i n f o   { 
         d i s p l a y :   f l e x ; 
         a l i g n - i t e m s :   c e n t e r ; 
         j u s t i f y - c o n t e n t :   c e n t e r ; 
         g a p :   1 0 p x ; 
         c o l o r :   # 6 c 7 5 7 d ; 
         f o n t - s i z e :   1 4 p x ; 
         m a r g i n - b o t t o m :   2 0 p x ; 
 } 
 
 . t e s t - i n f o   . m a t e r i a l - s y m b o l s - o u t l i n e d   { 
         f o n t - s i z e :   1 8 p x ; 
         c o l o r :   # 6 6 7 e e a ; 
 } 
 
 . t e s t - d e c o r a t i o n s   { 
         d i s p l a y :   f l e x ; 
         j u s t i f y - c o n t e n t :   c e n t e r ; 
         g a p :   1 5 p x ; 
 } 
 
 . d e c o r a t i o n - c i r c l e   { 
         w i d t h :   8 p x ; 
         h e i g h t :   8 p x ; 
         b o r d e r - r a d i u s :   5 0 % ; 
         b a c k g r o u n d :   l i n e a r - g r a d i e n t ( 1 3 5 d e g ,   # 6 6 7 e e a ,   # 7 6 4 b a 2 ) ; 
         a n i m a t i o n :   f l o a t   3 s   e a s e - i n - o u t   i n f i n i t e ; 
 } 
 
 . d e c o r a t i o n - c i r c l e : n t h - c h i l d ( 2 )   { 
         a n i m a t i o n - d e l a y :   0 . 5 s ; 
 } 
 
 . d e c o r a t i o n - c i r c l e : n t h - c h i l d ( 3 )   { 
         a n i m a t i o n - d e l a y :   1 s ; 
 } 
 
 @ k e y f r a m e s   f l o a t   { 
         0 % ,   1 0 0 %   {   t r a n s f o r m :   t r a n s l a t e Y ( 0 p x ) ;   } 
         5 0 %   {   t r a n s f o r m :   t r a n s l a t e Y ( - 1 0 p x ) ;   } 
 } 
 
 / *   M o b i l e   R e s p o n s i v e   * / 
 @ m e d i a   ( m a x - w i d t h :   7 6 8 p x )   { 
         . t e s t - a c c e s s - c o n t a i n e r   { 
                 p a d d i n g :   4 0 p x   3 0 p x ; 
                 m a r g i n :   2 0 p x ; 
                 m a x - w i d t h :   n o n e ; 
                 w i d t h :   c a l c ( 1 0 0 %   -   4 0 p x ) ; 
         } 
         
         . t e s t - a c c e s s - l o g o   h 1   { 
                 f o n t - s i z e :   2 8 p x ; 
         } 
         
         . t e s t - a c c e s s - l o g o   . l o g o - i m g   { 
                 w i d t h :   8 0 p x ; 
                 h e i g h t :   8 0 p x ; 
         } 
         
         . t e s t - a c c e s s - i c o n   . m a t e r i a l - s y m b o l s - o u t l i n e d   { 
                 f o n t - s i z e :   5 6 p x ; 
         } 
         
         . t e s t - a c c e s s - c o n t e n t   h 2   { 
                 f o n t - s i z e :   2 4 p x ; 
         } 
         
         . i n p u t - g r o u p   i n p u t   { 
                 p a d d i n g :   1 5 p x   5 0 p x   1 5 p x   5 0 p x ; 
                 f o n t - s i z e :   1 6 p x ; 
         } 
 } 
 
 @ m e d i a   ( m a x - w i d t h :   4 8 0 p x )   { 
         . t e s t - a c c e s s - c o n t a i n e r   { 
                 p a d d i n g :   3 0 p x   2 5 p x ; 
                 m a r g i n :   1 5 p x ; 
                 w i d t h :   c a l c ( 1 0 0 %   -   3 0 p x ) ; 
         } 
         
         . t e s t - a c c e s s - l o g o   h 1   { 
                 f o n t - s i z e :   2 4 p x ; 
         } 
         
         . t e s t - a c c e s s - c o n t e n t   h 2   { 
                 f o n t - s i z e :   2 2 p x ; 
         } 
         
         . t e s t - a c c e s s - c o n t e n t   p   { 
                 f o n t - s i z e :   1 4 p x ; 
         } 
         
         . i n p u t - g r o u p   i n p u t   { 
                 p a d d i n g :   1 2 p x   4 5 p x   1 2 p x   4 5 p x ; 
         } 
 } 
 
 / *   H i d e   m a i n   c o n t e n t   w h e n   t e s t   s c r e e n   i s   a c t i v e   * / 
 b o d y . t e s t - m o d e   { 
         o v e r f l o w :   h i d d e n ; 
 } 
 
 b o d y . t e s t - m o d e   >   * : n o t ( . t e s t - a c c e s s - s c r e e n )   { 
         d i s p l a y :   n o n e   ! i m p o r t a n t ; 
 } 
 
 
 
 / *   T E S T   A C C E S S   S C R E E N   -   F U L L   P A G E   * / 
 . t e s t - a c c e s s - s c r e e n   { 
         p o s i t i o n :   f i x e d   ! i m p o r t a n t ; 
         t o p :   0   ! i m p o r t a n t ; 
         l e f t :   0   ! i m p o r t a n t ; 
         w i d t h :   1 0 0 v w   ! i m p o r t a n t ; 
         h e i g h t :   1 0 0 v h   ! i m p o r t a n t ; 
         b a c k g r o u n d :   l i n e a r - g r a d i e n t ( 1 3 5 d e g ,   # 6 6 7 e e a   0 % ,   # 7 6 4 b a 2   1 0 0 % )   ! i m p o r t a n t ; 
         d i s p l a y :   f l e x   ! i m p o r t a n t ; 
         a l i g n - i t e m s :   c e n t e r   ! i m p o r t a n t ; 
         j u s t i f y - c o n t e n t :   c e n t e r   ! i m p o r t a n t ; 
         z - i n d e x :   9 9 9 9 9   ! i m p o r t a n t ; 
         o p a c i t y :   1   ! i m p o r t a n t ; 
         v i s i b i l i t y :   v i s i b l e   ! i m p o r t a n t ; 
 } 
 
 . t e s t - a c c e s s - s c r e e n . h i d d e n   { 
         o p a c i t y :   0   ! i m p o r t a n t ; 
         v i s i b i l i t y :   h i d d e n   ! i m p o r t a n t ; 
         t r a n s f o r m :   t r a n s l a t e Y ( - 1 0 0 % )   ! i m p o r t a n t ; 
 } 
 
 . t e s t - a c c e s s - c o n t a i n e r   { 
         b a c k g r o u n d :   w h i t e   ! i m p o r t a n t ; 
         b o r d e r - r a d i u s :   2 0 p x   ! i m p o r t a n t ; 
         b o x - s h a d o w :   0   2 5 p x   8 0 p x   r g b a ( 0 ,   0 ,   0 ,   0 . 3 )   ! i m p o r t a n t ; 
         p a d d i n g :   6 0 p x   5 0 p x   ! i m p o r t a n t ; 
         m a x - w i d t h :   5 0 0 p x   ! i m p o r t a n t ; 
         w i d t h :   9 0 %   ! i m p o r t a n t ; 
         t e x t - a l i g n :   c e n t e r   ! i m p o r t a n t ; 
         p o s i t i o n :   r e l a t i v e   ! i m p o r t a n t ; 
         o v e r f l o w :   h i d d e n   ! i m p o r t a n t ; 
 } 
 
 . t e s t - a c c e s s - l o g o   { 
         d i s p l a y :   f l e x   ! i m p o r t a n t ; 
         f l e x - d i r e c t i o n :   c o l u m n   ! i m p o r t a n t ; 
         a l i g n - i t e m s :   c e n t e r   ! i m p o r t a n t ; 
         g a p :   1 5 p x   ! i m p o r t a n t ; 
         m a r g i n - b o t t o m :   4 0 p x   ! i m p o r t a n t ; 
 } 
 
 . t e s t - a c c e s s - l o g o   . l o g o - i m g   { 
         w i d t h :   1 0 0 p x   ! i m p o r t a n t ; 
         h e i g h t :   1 0 0 p x   ! i m p o r t a n t ; 
         o b j e c t - f i t :   c o n t a i n   ! i m p o r t a n t ; 
         b o r d e r - r a d i u s :   2 0 p x   ! i m p o r t a n t ; 
         b o x - s h a d o w :   0   1 0 p x   3 0 p x   r g b a ( 1 0 2 ,   1 2 6 ,   2 3 4 ,   0 . 3 )   ! i m p o r t a n t ; 
 } 
 
 . t e s t - a c c e s s - l o g o   h 1   { 
         c o l o r :   # 2 c 3 e 5 0   ! i m p o r t a n t ; 
         f o n t - s i z e :   3 2 p x   ! i m p o r t a n t ; 
         f o n t - w e i g h t :   7 0 0   ! i m p o r t a n t ; 
         m a r g i n :   0   ! i m p o r t a n t ; 
         b a c k g r o u n d :   l i n e a r - g r a d i e n t ( 1 3 5 d e g ,   # 6 6 7 e e a ,   # 7 6 4 b a 2 )   ! i m p o r t a n t ; 
         - w e b k i t - b a c k g r o u n d - c l i p :   t e x t   ! i m p o r t a n t ; 
         - w e b k i t - t e x t - f i l l - c o l o r :   t r a n s p a r e n t   ! i m p o r t a n t ; 
 } 
 
 . t e s t - a c c e s s - c o n t e n t   { 
         m a r g i n - b o t t o m :   4 0 p x   ! i m p o r t a n t ; 
 } 
 
 . t e s t - a c c e s s - i c o n   { 
         m a r g i n - b o t t o m :   2 5 p x   ! i m p o r t a n t ; 
 } 
 
 . t e s t - a c c e s s - i c o n   . m a t e r i a l - s y m b o l s - o u t l i n e d   { 
         f o n t - s i z e :   6 4 p x   ! i m p o r t a n t ; 
         c o l o r :   # 6 6 7 e e a   ! i m p o r t a n t ; 
         b a c k g r o u n d :   l i n e a r - g r a d i e n t ( 1 3 5 d e g ,   # 6 6 7 e e a ,   # 7 6 4 b a 2 )   ! i m p o r t a n t ; 
         - w e b k i t - b a c k g r o u n d - c l i p :   t e x t   ! i m p o r t a n t ; 
         - w e b k i t - t e x t - f i l l - c o l o r :   t r a n s p a r e n t   ! i m p o r t a n t ; 
 } 
 
 . t e s t - a c c e s s - c o n t e n t   h 2   { 
         c o l o r :   # 2 c 3 e 5 0   ! i m p o r t a n t ; 
         f o n t - s i z e :   2 8 p x   ! i m p o r t a n t ; 
         f o n t - w e i g h t :   6 0 0   ! i m p o r t a n t ; 
         m a r g i n :   0   0   1 5 p x   0   ! i m p o r t a n t ; 
 } 
 
 . t e s t - a c c e s s - c o n t e n t   p   { 
         c o l o r :   # 6 c 7 5 7 d   ! i m p o r t a n t ; 
         f o n t - s i z e :   1 6 p x   ! i m p o r t a n t ; 
         l i n e - h e i g h t :   1 . 6   ! i m p o r t a n t ; 
         m a r g i n :   0   0   3 5 p x   0   ! i m p o r t a n t ; 
 } 
 
 . t e s t - c o d e - f o r m   { 
         m a x - w i d t h :   3 5 0 p x   ! i m p o r t a n t ; 
         m a r g i n :   0   a u t o   ! i m p o r t a n t ; 
 } 
 
 . i n p u t - g r o u p   { 
         p o s i t i o n :   r e l a t i v e   ! i m p o r t a n t ; 
         m a r g i n - b o t t o m :   2 5 p x   ! i m p o r t a n t ; 
 } 
 
 . i n p u t - g r o u p   . i n p u t - i c o n   { 
         p o s i t i o n :   a b s o l u t e   ! i m p o r t a n t ; 
         l e f t :   1 8 p x   ! i m p o r t a n t ; 
         t o p :   5 0 %   ! i m p o r t a n t ; 
         t r a n s f o r m :   t r a n s l a t e Y ( - 5 0 % )   ! i m p o r t a n t ; 
         c o l o r :   # 6 6 7 e e a   ! i m p o r t a n t ; 
         f o n t - s i z e :   2 2 p x   ! i m p o r t a n t ; 
         z - i n d e x :   2   ! i m p o r t a n t ; 
 } 
 
 . i n p u t - g r o u p   i n p u t   { 
         w i d t h :   1 0 0 %   ! i m p o r t a n t ; 
         p a d d i n g :   1 8 p x   6 0 p x   1 8 p x   5 5 p x   ! i m p o r t a n t ; 
         b o r d e r :   2 p x   s o l i d   # e 9 e c e f   ! i m p o r t a n t ; 
         b o r d e r - r a d i u s :   1 5 p x   ! i m p o r t a n t ; 
         f o n t - s i z e :   1 6 p x   ! i m p o r t a n t ; 
         f o n t - w e i g h t :   5 0 0   ! i m p o r t a n t ; 
         b a c k g r o u n d :   # f 8 f 9 f a   ! i m p o r t a n t ; 
         t r a n s i t i o n :   a l l   0 . 3 s   e a s e   ! i m p o r t a n t ; 
         b o x - s i z i n g :   b o r d e r - b o x   ! i m p o r t a n t ; 
         t e x t - a l i g n :   c e n t e r   ! i m p o r t a n t ; 
         l e t t e r - s p a c i n g :   2 p x   ! i m p o r t a n t ; 
         f o n t - f a m i l y :   ' C o u r i e r   N e w ' ,   m o n o s p a c e   ! i m p o r t a n t ; 
 } 
 
 . i n p u t - g r o u p   i n p u t : f o c u s   { 
         o u t l i n e :   n o n e   ! i m p o r t a n t ; 
         b o r d e r - c o l o r :   # 6 6 7 e e a   ! i m p o r t a n t ; 
         b a c k g r o u n d :   w h i t e   ! i m p o r t a n t ; 
         b o x - s h a d o w :   0   0   0   4 p x   r g b a ( 1 0 2 ,   1 2 6 ,   2 3 4 ,   0 . 1 )   ! i m p o r t a n t ; 
 } 
 
 . v i s i b i l i t y - t o g g l e   { 
         p o s i t i o n :   a b s o l u t e   ! i m p o r t a n t ; 
         r i g h t :   1 8 p x   ! i m p o r t a n t ; 
         t o p :   5 0 %   ! i m p o r t a n t ; 
         t r a n s f o r m :   t r a n s l a t e Y ( - 5 0 % )   ! i m p o r t a n t ; 
         b a c k g r o u n d :   n o n e   ! i m p o r t a n t ; 
         b o r d e r :   n o n e   ! i m p o r t a n t ; 
         c o l o r :   # 6 c 7 5 7 d   ! i m p o r t a n t ; 
         c u r s o r :   p o i n t e r   ! i m p o r t a n t ; 
         p a d d i n g :   8 p x   ! i m p o r t a n t ; 
         b o r d e r - r a d i u s :   8 p x   ! i m p o r t a n t ; 
 } 
 
 . e r r o r - m e s s a g e   { 
         d i s p l a y :   f l e x   ! i m p o r t a n t ; 
         a l i g n - i t e m s :   c e n t e r   ! i m p o r t a n t ; 
         j u s t i f y - c o n t e n t :   c e n t e r   ! i m p o r t a n t ; 
         g a p :   1 0 p x   ! i m p o r t a n t ; 
         c o l o r :   # d c 3 5 4 5   ! i m p o r t a n t ; 
         f o n t - s i z e :   1 4 p x   ! i m p o r t a n t ; 
         f o n t - w e i g h t :   5 0 0   ! i m p o r t a n t ; 
         m a r g i n - b o t t o m :   2 0 p x   ! i m p o r t a n t ; 
         p a d d i n g :   1 5 p x   ! i m p o r t a n t ; 
         b a c k g r o u n d :   # f 8 d 7 d a   ! i m p o r t a n t ; 
         b o r d e r :   1 p x   s o l i d   # f 5 c 6 c b   ! i m p o r t a n t ; 
         b o r d e r - r a d i u s :   1 0 p x   ! i m p o r t a n t ; 
 } 
 
 . t e s t - c o d e - b t n   { 
         w i d t h :   1 0 0 %   ! i m p o r t a n t ; 
         p a d d i n g :   1 8 p x   ! i m p o r t a n t ; 
         b a c k g r o u n d :   l i n e a r - g r a d i e n t ( 1 3 5 d e g ,   # 6 6 7 e e a ,   # 7 6 4 b a 2 )   ! i m p o r t a n t ; 
         c o l o r :   w h i t e   ! i m p o r t a n t ; 
         b o r d e r :   n o n e   ! i m p o r t a n t ; 
         b o r d e r - r a d i u s :   1 5 p x   ! i m p o r t a n t ; 
         f o n t - s i z e :   1 6 p x   ! i m p o r t a n t ; 
         f o n t - w e i g h t :   6 0 0   ! i m p o r t a n t ; 
         c u r s o r :   p o i n t e r   ! i m p o r t a n t ; 
         t r a n s i t i o n :   a l l   0 . 3 s   e a s e   ! i m p o r t a n t ; 
         t e x t - t r a n s f o r m :   u p p e r c a s e   ! i m p o r t a n t ; 
         l e t t e r - s p a c i n g :   1 p x   ! i m p o r t a n t ; 
 } 
 
 . t e s t - c o d e - b t n : h o v e r   { 
         b a c k g r o u n d :   l i n e a r - g r a d i e n t ( 1 3 5 d e g ,   # 5 a 6 f d 8 ,   # 6 a 4 1 9 0 )   ! i m p o r t a n t ; 
         t r a n s f o r m :   t r a n s l a t e Y ( - 3 p x )   ! i m p o r t a n t ; 
         b o x - s h a d o w :   0   1 5 p x   3 5 p x   r g b a ( 1 0 2 ,   1 2 6 ,   2 3 4 ,   0 . 4 )   ! i m p o r t a n t ; 
 } 
 
 . t e s t - a c c e s s - f o o t e r   { 
         b o r d e r - t o p :   1 p x   s o l i d   # e 9 e c e f   ! i m p o r t a n t ; 
         p a d d i n g - t o p :   2 5 p x   ! i m p o r t a n t ; 
 } 
 
 . t e s t - i n f o   { 
         d i s p l a y :   f l e x   ! i m p o r t a n t ; 
         a l i g n - i t e m s :   c e n t e r   ! i m p o r t a n t ; 
         j u s t i f y - c o n t e n t :   c e n t e r   ! i m p o r t a n t ; 
         g a p :   1 0 p x   ! i m p o r t a n t ; 
         c o l o r :   # 6 c 7 5 7 d   ! i m p o r t a n t ; 
         f o n t - s i z e :   1 4 p x   ! i m p o r t a n t ; 
         m a r g i n - b o t t o m :   2 0 p x   ! i m p o r t a n t ; 
 } 
 
 . t e s t - i n f o   . m a t e r i a l - s y m b o l s - o u t l i n e d   { 
         f o n t - s i z e :   1 8 p x   ! i m p o r t a n t ; 
         c o l o r :   # 6 6 7 e e a   ! i m p o r t a n t ; 
 } 
 
 b o d y . t e s t - m o d e   { 
         o v e r f l o w :   h i d d e n   ! i m p o r t a n t ; 
 } 
 
 b o d y . t e s t - m o d e   >   * : n o t ( . t e s t - a c c e s s - s c r e e n )   { 
         d i s p l a y :   n o n e   ! i m p o r t a n t ; 
 } 
 
 