/* Modern Font System */
/* Font Variables and Typography Scale */
:root {
    /* Font Families */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    --font-secondary: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    --font-display: 'Playfair Display', Georgia, 'Times New Roman', serif;
    --font-mono: 'JetBrains Mono', 'Fira Code', 'Consolas', 'Monaco', 'Courier New', monospace;

    /* Font Sizes - Modular Scale (1.25 ratio) */
    --text-xs: 0.75rem;
    /* 12px */
    --text-sm: 0.875rem;
    /* 14px */
    --text-base: 1rem;
    /* 16px */
    --text-lg: 1.125rem;
    /* 18px */
    --text-xl: 1.25rem;
    /* 20px */
    --text-2xl: 1.5rem;
    /* 24px */
    --text-3xl: 1.875rem;
    /* 30px */
    --text-4xl: 2.25rem;
    /* 36px */
    --text-5xl: 3rem;
    /* 48px */
    --text-6xl: 3.75rem;
    /* 60px */
    --text-7xl: 4.5rem;
    /* 72px */
    --text-8xl: 6rem;
    /* 96px */
    --text-9xl: 8rem;
    /* 128px */

    /* Line Heights */
    --leading-none: 1;
    --leading-tight: 1.25;
    --leading-snug: 1.375;
    --leading-normal: 1.5;
    --leading-relaxed: 1.625;
    --leading-loose: 2;

    /* Font Weights */
    --font-thin: 100;
    --font-extralight: 200;
    --font-light: 300;
    --font-normal: 400;
    --font-medium: 500;
    --font-semibold: 600;
    --font-bold: 700;
    --font-extrabold: 800;
    --font-black: 900;

    /* Letter Spacing */
    --tracking-tighter: -0.05em;
    --tracking-tight: -0.025em;
    --tracking-normal: 0em;
    --tracking-wide: 0.025em;
    --tracking-wider: 0.05em;
    --tracking-widest: 0.1em;

    /* Colors */
    --primary-color: #1a202c;
    --primary-dark: #0f1419;
    --accent-color: #2d3748;
    --primary-rgb: 26, 32, 44;
    --accent-rgb: 45, 55, 72;
    --text-color: #1a202c;
    --text-muted: #718096;
    --text-light: #a0aec0;
    --bg-light: #f7fafc;
    --bg-white: #ffffff;
    --border-color: #e2e8f0;
    --border-light: #f1f5f9;

    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);

    /* Border Radius */
    --radius-sm: 0.125rem;
    --radius: 0.25rem;
    --radius-md: 0.375rem;
    --radius-lg: 0.5rem;
    --radius-xl: 0.75rem;
    --radius-2xl: 1rem;
    --radius-3xl: 1.5rem;
    --radius-full: 9999px;

    /* Transitions */
    --transition-fast: 150ms ease-in-out;
    --transition-normal: 300ms ease-in-out;
    --transition-slow: 500ms ease-in-out;
}

/* Base Typography */
* {
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

body {
    font-family: var(--font-primary);
    font-size: var(--text-base);
    line-height: var(--leading-normal);
    font-weight: var(--font-normal);
    color: var(--text-color);
    background-color: var(--bg-white);
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

/* Typography Classes */
.text-xs {
    font-size: var(--text-xs);
}

.text-sm {
    font-size: var(--text-sm);
}

.text-base {
    font-size: var(--text-base);
}

.text-lg {
    font-size: var(--text-lg);
}

.text-xl {
    font-size: var(--text-xl);
}

.text-2xl {
    font-size: var(--text-2xl);
}

.text-3xl {
    font-size: var(--text-3xl);
}

.text-4xl {
    font-size: var(--text-4xl);
}

.text-5xl {
    font-size: var(--text-5xl);
}

.text-6xl {
    font-size: var(--text-6xl);
}

.text-7xl {
    font-size: var(--text-7xl);
}

.text-8xl {
    font-size: var(--text-8xl);
}

.text-9xl {
    font-size: var(--text-9xl);
}

/* Font Weights */
.font-thin {
    font-weight: var(--font-thin);
}

.font-extralight {
    font-weight: var(--font-extralight);
}

.font-light {
    font-weight: var(--font-light);
}

.font-normal {
    font-weight: var(--font-normal);
}

.font-medium {
    font-weight: var(--font-medium);
}

.font-semibold {
    font-weight: var(--font-semibold);
}

.font-bold {
    font-weight: var(--font-bold);
}

.font-extrabold {
    font-weight: var(--font-extrabold);
}

.font-black {
    font-weight: var(--font-black);
}

/* Line Heights */
.leading-none {
    line-height: var(--leading-none);
}

.leading-tight {
    line-height: var(--leading-tight);
}

.leading-snug {
    line-height: var(--leading-snug);
}

.leading-normal {
    line-height: var(--leading-normal);
}

.leading-relaxed {
    line-height: var(--leading-relaxed);
}

.leading-loose {
    line-height: var(--leading-loose);
}

/* Letter Spacing */
.tracking-tighter {
    letter-spacing: var(--tracking-tighter);
}

.tracking-tight {
    letter-spacing: var(--tracking-tight);
}

.tracking-normal {
    letter-spacing: var(--tracking-normal);
}

.tracking-wide {
    letter-spacing: var(--tracking-wide);
}

.tracking-wider {
    letter-spacing: var(--tracking-wider);
}

.tracking-widest {
    letter-spacing: var(--tracking-widest);
}

/* Font Families */
.font-primary {
    font-family: var(--font-primary);
}

.font-secondary {
    font-family: var(--font-secondary);
}

.font-display {
    font-family: var(--font-display);
}

.font-mono {
    font-family: var(--font-mono);
}

/* Heading Styles */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-secondary);
    font-weight: var(--font-semibold);
    line-height: var(--leading-tight);
    color: var(--text-color);
    margin: 0 0 1rem 0;
    letter-spacing: var(--tracking-tight);
}

h1 {
    font-size: var(--text-4xl);
    font-weight: var(--font-bold);
    line-height: var(--leading-none);
}

h2 {
    font-size: var(--text-3xl);
    font-weight: var(--font-semibold);
}

h3 {
    font-size: var(--text-2xl);
    font-weight: var(--font-semibold);
}

h4 {
    font-size: var(--text-xl);
    font-weight: var(--font-medium);
}

h5 {
    font-size: var(--text-lg);
    font-weight: var(--font-medium);
}

h6 {
    font-size: var(--text-base);
    font-weight: var(--font-medium);
}

/* Paragraph Styles */
p {
    margin: 0 0 1rem 0;
    line-height: var(--leading-relaxed);
    color: var(--text-color);
}

p:last-child {
    margin-bottom: 0;
}

/* Link Styles */
a {
    color: var(--primary-color);
    text-decoration: none;
    transition: all var(--transition-fast);
}

a:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

/* List Styles */
ul,
ol {
    margin: 0 0 1rem 0;
    padding-left: 1.5rem;
    line-height: var(--leading-relaxed);
}

li {
    margin-bottom: 0.5rem;
}

/* Blockquote Styles */
blockquote {
    margin: 1.5rem 0;
    padding: 1rem 1.5rem;
    border-left: 4px solid var(--primary-color);
    background-color: var(--bg-light);
    font-style: italic;
    font-size: var(--text-lg);
    line-height: var(--leading-relaxed);
}

/* Code Styles */
code {
    font-family: var(--font-mono);
    font-size: 0.875em;
    background-color: var(--bg-light);
    padding: 0.125rem 0.25rem;
    border-radius: var(--radius);
    color: var(--text-color);
}

pre {
    font-family: var(--font-mono);
    background-color: var(--bg-light);
    padding: 1rem;
    border-radius: var(--radius-lg);
    overflow-x: auto;
    margin: 1rem 0;
}

pre code {
    background: none;
    padding: 0;
}

/* Small Text */
small {
    font-size: var(--text-sm);
    color: var(--text-muted);
}

/* Strong and Emphasis */
strong,
b {
    font-weight: var(--font-semibold);
}

em,
i {
    font-style: italic;
}

/* Text Colors */
.text-primary {
    color: var(--primary-color);
}

.text-accent {
    color: var(--accent-color);
}

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

.text-light {
    color: var(--text-light);
}

.text-white {
    color: var(--bg-white);
}

/* Dark Background Text Colors */
.text-on-dark {
    color: #ffffff;
}

.text-on-dark-muted {
    color: rgba(255, 255, 255, 0.8);
}

.text-on-dark-light {
    color: rgba(255, 255, 255, 0.6);
}

/* Text Alignment */
.text-left {
    text-align: left;
}

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

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

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

/* Text Transform */
.uppercase {
    text-transform: uppercase;
}

.lowercase {
    text-transform: lowercase;
}

.capitalize {
    text-transform: capitalize;
}

/* Text Decoration */
.underline {
    text-decoration: underline;
}

.line-through {
    text-decoration: line-through;
}

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

/* Responsive Typography */
@media (max-width: 768px) {
    h1 {
        font-size: var(--text-3xl);
    }

    h2 {
        font-size: var(--text-2xl);
    }

    h3 {
        font-size: var(--text-xl);
    }

    h4 {
        font-size: var(--text-lg);
    }

    h5 {
        font-size: var(--text-base);
    }

    h6 {
        font-size: var(--text-sm);
    }

    .slide-title {
        font-size: var(--text-4xl);
    }

    .hero-title {
        font-size: var(--text-3xl);
    }

    .page-title {
        font-size: var(--text-3xl);
    }

    .logo-title {
        font-size: var(--text-xl);
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: var(--text-2xl);
    }

    h2 {
        font-size: var(--text-xl);
    }

    h3 {
        font-size: var(--text-lg);
    }

    h4 {
        font-size: var(--text-base);
    }

    h5 {
        font-size: var(--text-sm);
    }

    h6 {
        font-size: var(--text-xs);
    }

    .slide-title {
        font-size: var(--text-3xl);
    }

    .hero-title {
        font-size: var(--text-2xl);
    }

    .page-title {
        font-size: var(--text-2xl);
    }

    .logo-title {
        font-size: var(--text-lg);
    }
}

/* Ortak Modern CSS Bilesenleri */

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.breadcrumb-nav {
    margin-bottom: 2rem;
    background: white;
    padding: 1rem 1.5rem;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.breadcrumb {
    background: transparent;
    padding: 0;
    margin: 0;
    list-style: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
}

.breadcrumb-item {
    color: var(--text-muted);
    transition: all 0.3s ease;
}

.breadcrumb-item a {
    color: var(--primary-color);
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 0.25rem 0.5rem;
    border-radius: 6px;
}

.breadcrumb-item a:hover {
    color: var(--primary-dark);
    background: rgba(var(--primary-rgb), 0.1);
    transform: translateY(-1px);
}

.breadcrumb-item.active {
    color: var(--text-color);
    font-weight: 600;
    background: var(--bg-light);
    padding: 0.25rem 0.75rem;
    border-radius: 6px;
}

.breadcrumb-item:not(:last-child)::after {
    content: '';
    margin-left: 0.5rem;
    color: var(--text-muted);
    font-weight: bold;
}

.page-header {
    margin-bottom: 3rem;
    text-align: center;
    background: white;
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

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

.page-title {
    font-family: var(--font-display);
    font-size: var(--text-5xl);
    font-weight: var(--font-bold);
    color: var(--text-color);
    margin-bottom: 1rem;
    line-height: var(--leading-none);
    letter-spacing: var(--tracking-tight);
    line-height: 1.2;
    background: linear-gradient(135deg, var(--text-color) 0%, var(--primary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.page-meta {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    color: var(--text-muted);
    font-size: 1rem;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    font-size: 1rem;
    cursor: pointer;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    border-color: var(--primary-color);
    box-shadow: 0 4px 15px rgba(var(--primary-rgb), 0.3);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(var(--primary-rgb), 0.4);
    color: white;
}

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

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

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-label {
    font-weight: 600;
    color: var(--text-color);
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.form-label i {
    color: var(--primary-color);
    font-size: 1.1rem;
}

.form-input,
.form-textarea {
    padding: 1rem 1.5rem;
    border: 2px solid rgba(var(--primary-rgb), 0.2);
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 500;
    background: white;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 4px 15px rgba(var(--primary-rgb), 0.2);
    transform: translateY(-1px);
}

.form-textarea {
    resize: vertical;
    min-height: 120px;
}

/* Kart ve grid yapilari, responsive, diger ortak stiller buraya eklenebilir */

@media (max-width: 1024px) {
    .container {
        padding: 0 0.5rem;
    }
}

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

    .page-header {
        padding: 2rem;
        margin-bottom: 2rem;
    }

    .page-title {
        font-size: 2.5rem;
    }

    .page-meta {
        flex-direction: column;
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .page-header {
        padding: 1.5rem;
    }

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

    .breadcrumb-nav {
        padding: 0.75rem 1rem;
    }

    .breadcrumb {
        font-size: 0.8rem;
    }
}

/* Anasayfa CSS Siniflari */
.modern-hero-slider {
    position: relative;
    height: 600px;
    overflow: hidden;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.slider-container {
    position: relative;
    height: 100%;
    width: 100%;
}

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

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

.slide-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    filter: brightness(0.7);
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
}

.slide-content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    color: white;
}

.slide-text {
    flex: 1;
    max-width: 600px;
}

.slide-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
    backdrop-filter: blur(10px);
}

.slide-title {
    font-family: var(--font-display);
    font-size: var(--text-6xl);
    font-weight: var(--font-bold);
    margin-bottom: 1rem;
    line-height: var(--leading-none);
    letter-spacing: var(--tracking-tight);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.slide-description {
    font-size: var(--text-lg);
    margin-bottom: 2rem;
    opacity: 0.9;
    line-height: var(--leading-relaxed);
    font-weight: var(--font-light);
}

.slide-price {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.price-amount {
    font-family: var(--font-secondary);
    font-size: var(--text-5xl);
    font-weight: var(--font-bold);
    color: var(--accent-color);
    letter-spacing: var(--tracking-tight);
}

.price-badge {
    background: var(--accent-color);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: var(--radius-full);
    font-size: var(--text-sm);
    font-weight: var(--font-semibold);
    letter-spacing: var(--tracking-wide);
}

.slide-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.slide-image {
    flex: 1;
    max-width: 500px;
    text-align: center;
}

.slide-image img {
    max-width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.slider-navigation {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    z-index: 3;
    display: flex;
    justify-content: space-between;
    padding: 0 2rem;
    pointer-events: none;
}

.slider-nav-btn {
    width: 50px;
    height: 50px;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    pointer-events: auto;
}

.slider-nav-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.slider-indicators {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 1rem;
    z-index: 3;
}

.slider-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    border-radius: 12px;
    padding: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    color: white;
    min-width: 120px;
}

.slider-indicator.active {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.05);
}

.indicator-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: white;
    transition: all 0.3s ease;
}

.slider-indicator.active .indicator-dot {
    background: #00b894;
    transform: scale(1.2);
}

.indicator-title {
    font-size: 0.8rem;
    font-weight: 600;
    text-align: center;
}

.slider-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: rgba(255, 255, 255, 0.2);
    z-index: 3;
}

.progress-bar {
    height: 100%;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    width: 0%;
    transition: width 0.1s linear;
}

/* Hero Section */
.hero-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    text-align: center;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero-title {
    font-family: var(--font-display);
    font-size: var(--text-4xl);
    font-weight: var(--font-bold);
    color: var(--text-color);
    margin-bottom: 1rem;
    line-height: var(--leading-tight);
    letter-spacing: var(--tracking-tight);
}

.hero-subtitle {
    font-size: var(--text-lg);
    color: var(--text-muted);
    margin-bottom: 2rem;
    line-height: var(--leading-relaxed);
    font-weight: var(--font-light);
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Responsive Tasarim */
@media (max-width: 1024px) {
    .container {
        max-width: 960px;
    }

    .slide-title {
        font-size: 3rem;
    }

    .slide-image {
        max-width: 400px;
    }
}

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

    .page-header {
        padding: 2rem 1.5rem;
    }

    .page-title {
        font-size: 2.5rem;
    }

    .page-meta {
        font-size: 1rem;
    }

    .modern-hero-slider {
        height: 500px;
    }

    .slide-content {
        flex-direction: column;
        text-align: center;
        padding: 0 1rem;
    }

    .slide-text {
        max-width: 100%;
        margin-bottom: 2rem;
    }

    .slide-title {
        font-size: 2.5rem;
    }

    .slide-description {
        font-size: 1.1rem;
    }

    .slide-image {
        max-width: 300px;
    }

    .slider-navigation {
        padding: 0 1rem;
    }

    .slider-indicators {
        bottom: 1rem;
        gap: 0.5rem;
    }

    .slider-indicator {
        min-width: 100px;
        padding: 0.75rem;
    }

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

    .hero-subtitle {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .page-header {
        padding: 1.5rem 1rem;
    }

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

    .breadcrumb-nav {
        padding: 0.75rem 1rem;
    }

    .breadcrumb {
        font-size: 0.8rem;
    }

    .modern-hero-slider {
        height: 400px;
    }

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

    .slide-description {
        font-size: 1rem;
    }

    .slide-actions {
        flex-direction: column;
        align-items: center;
    }

    .slider-nav-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .slider-indicators {
        flex-wrap: wrap;
        justify-content: center;
    }

    .slider-indicator {
        min-width: 80px;
        padding: 0.5rem;
    }

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

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
}

/* Header CSS Siniflari */
.modern-header {
    background: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-top {
    background: #f8f9fa;
    padding: 0.5rem 0;
    border-bottom: 1px solid #e9ecef;
}

.header-contact {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.875rem;
    color: var(--text-muted);
}

.header-contact span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.header-contact i {
    color: var(--primary-color);
}

.header-top-actions {
    display: flex;
    gap: 0.75rem;
    align-items: center;
}

.header-main {
    padding: 1rem 0;
}

.logo-container {
    display: flex;
    align-items: center;
}

.logo {
    height: 50px;
    width: auto;
}

.header-search {
    flex: 1;
    max-width: 500px;
    margin: 0 2rem;
    position: relative;
}

.search-form {
    display: flex;
    background: white;
    border: 2px solid #e9ecef;
    border-radius: 25px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.search-form:focus-within {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(var(--primary-rgb), 0.1);
}

.search-form input {
    flex: 1;
    padding: 0.75rem 1rem;
    border: none;
    outline: none;
    font-size: 1rem;
}

.search-form button {
    padding: 0.75rem 1.5rem;
    background: var(--primary-color);
    color: white;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.search-results {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    max-height: 300px;
    overflow-y: auto;
    z-index: 1000;
    display: none;
    margin-top: 0.5rem;
}

.search-result-item {
    padding: 0.75rem 1rem;
    border-bottom: 1px solid #e9ecef;
    cursor: pointer;
    transition: background 0.2s;
}

.search-result-item:hover {
    background: var(--bg-light);
}

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

.header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.cart-module {
    position: relative;
}

.cart-button {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
}

.cart-button:hover {
    background: var(--primary-dark);
    transform: translateY(-1px);
}

.cart-count {
    background: #dc3545;
    color: white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 600;
}

.cart-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    background: white;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    min-width: 250px;
    z-index: 1000;
    display: none;
    margin-top: 0.5rem;
}

.cart-items {
    padding: 1.5rem;
}

.cart-total {
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #e9ecef;
    font-size: 1.1rem;
}

.language-selector select {
    padding: 0.5rem 0.75rem;
    border: 1px solid #e9ecef;
    border-radius: 6px;
    background: white;
    cursor: pointer;
    font-size: 0.875rem;
    transition: all 0.3s ease;
}

.language-selector select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(var(--primary-rgb), 0.1);
}

/* Navigation CSS */
.modern-nav {
    background: var(--primary-color);
    padding: 0;
}

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

.nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 0;
}

.nav-item {
    position: relative;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 1.5rem;
    color: white;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.nav-link:hover {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    text-decoration: none;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    min-width: 200px;
    z-index: 1000;
    display: none;
    list-style: none;
    margin: 0;
    padding: 0.5rem 0;
}

.nav-item:hover .dropdown-menu {
    display: block;
}

.dropdown-item {
    display: block;
    padding: 0.75rem 1.5rem;
    color: var(--text-color);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.dropdown-item:hover {
    background: var(--bg-light);
    color: var(--primary-color);
    text-decoration: none;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    gap: 0.25rem;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: white;
    transition: 0.3s;
    border-radius: 2px;
}

/* Modal CSS */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
}

.modal-content {
    background-color: white;
    margin: 15% auto;
    padding: 0;
    border-radius: 12px;
    width: 90%;
    max-width: 400px;
    position: relative;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.close {
    position: absolute;
    right: 1.5rem;
    top: 1rem;
    font-size: 1.75rem;
    font-weight: bold;
    cursor: pointer;
    color: #aaa;
    transition: color 0.3s ease;
}

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

.modal-header {
    padding: 1.5rem 2rem;
    border-bottom: 1px solid #e9ecef;
}

.modal-header h3 {
    margin: 0;
    color: var(--text-color);
    font-size: 1.5rem;
    font-weight: 700;
}

.login-form {
    padding: 2rem;
}

.modal-footer {
    padding: 1.5rem 2rem;
    border-top: 1px solid #e9ecef;
    display: flex;
    justify-content: space-between;
    background: var(--bg-light);
    border-radius: 0 0 12px 12px;
}

.modal-footer a {
    color: var(--primary-color);
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.modal-footer a:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

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

.justify-between {
    justify-content: space-between;
}

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

.ml-3 {
    margin-left: 1rem;
}

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

.mt-3 {
    margin-top: 1rem;
}

.pull-right {
    float: right;
}

.btn-w100 {
    width: 100%;
}

/* Main Content CSS */
.main-content {
    min-height: 60vh;
    padding: 2rem 0;
    background: var(--bg-light);
}

/* Eski content-section tanimi - kaldirildi */

/* Eski section-header tanimi - kaldirildi */

/* Eski section-title tanimi - kaldirildi */

/* Eski section-content tanimi - kaldirildi */

.about-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.about-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-color);
}

.about-text p {
    margin-bottom: 1rem;
}

.about-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Product Grid CSS */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.product-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.product-image-container {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.product-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.product-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    color: white;
}

.product-badge.discount {
    background: #dc3545;
}

.product-badge.new {
    background: #28a745;
}

.product-info {
    padding: 1.5rem;
}

.product-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

.product-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.product-category,
.product-brand {
    color: var(--text-muted);
    background: var(--bg-light);
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
}

.product-price {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.old-price {
    color: var(--text-muted);
    text-decoration: line-through;
    font-size: 0.9rem;
}

.current-price {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-color);
}

.product-actions {
    display: flex;
    gap: 0.5rem;
}

/* Category Grid CSS */
.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.category-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

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

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.category-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 2rem;
}

.category-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 1rem;
}

.category-card p {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

/* Sidebar Widget CSS */
.sidebar-widget {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
    overflow: hidden;
}

.widget-header {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    padding: 1.5rem;
}

.widget-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0;
}

.widget-content {
    padding: 1.5rem;
}

.category-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.category-item {
    border-bottom: 1px solid #e9ecef;
    transition: all 0.3s ease;
}

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

.category-item.active {
    background: var(--bg-light);
}

.category-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem;
    color: var(--text-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

.category-link:hover {
    background: var(--bg-light);
    color: var(--primary-color);
    text-decoration: none;
}

.category-link i:first-child {
    margin-right: 0.5rem;
    color: var(--primary-color);
}

.subcategory-list {
    background: var(--bg-light);
    padding: 0.5rem 0;
    display: none;
}

.category-item.active .subcategory-list {
    display: block;
}

.subcategory-item {
    padding: 0.5rem 1rem 0.5rem 2rem;
}

.subcategory-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.subcategory-link:hover {
    color: var(--primary-color);
    text-decoration: none;
}

/* Product Wrap CSS */
.productwrap {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
}

.productwrap:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.pr-img {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.pr-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.productwrap:hover .pr-img img {
    transform: scale(1.05);
}

.pricetag {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--primary-color);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 1.1rem;
}

.smalltitle {
    display: block;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

.smalltitle a {
    color: var(--text-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.smalltitle a:hover {
    color: var(--primary-color);
    text-decoration: none;
}

.smalldesc {
    display: block;
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
}

.blokx3 {
    padding: 1rem;
    background: var(--bg-light);
    border-top: 1px solid #e9ecef;
}

/* Loading ve Back to Top CSS */
.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

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

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

.spinner {
    width: 50px;
    height: 50px;
    border: 4px solid #e9ecef;
    border-top: 4px solid var(--primary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 1rem;
}

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

    100% {
        transform: rotate(360deg);
    }
}

.loading-spinner p {
    color: var(--text-color);
    font-weight: 600;
}

.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    opacity: 0;
    visibility: hidden;
    z-index: 1000;
    box-shadow: 0 4px 15px rgba(var(--primary-rgb), 0.3);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(var(--primary-rgb), 0.4);
}

/* Footer CSS Siniflari */
.modern-footer {
    background: var(--primary-color);
    color: white;
    padding: 3rem 0 1rem;
    margin-top: 4rem;
}

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

.footer-section h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: white;
    position: relative;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 2px;
}

.footer-section p {
    color: #bdc3c7;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

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

.footer-section ul li {
    margin-bottom: 0.75rem;
}

.footer-section ul li a {
    color: #bdc3c7;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-section ul li a:hover {
    color: #ffffff;
    transform: translateX(5px);
    text-decoration: none;
}

.footer-social {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: #ffffff;
    transform: translateY(-3px);
    color: var(--primary-color);
    text-decoration: none;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-item i {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-top: 0.25rem;
}

.contact-item strong {
    display: block;
    color: white;
    margin-bottom: 0.5rem;
}

.contact-item p {
    color: #bdc3c7;
    margin: 0;
    line-height: 1.4;
}

/* Responsive Tasarim */
@media (max-width: 1024px) {
    .container {
        max-width: 960px;
    }

    .slide-title {
        font-size: 3rem;
    }

    .slide-image {
        max-width: 400px;
    }

    .header-search {
        margin: 0 1rem;
    }
}

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

    .page-header {
        padding: 2rem 1.5rem;
    }

    .page-title {
        font-size: 2.5rem;
    }

    .page-meta {
        font-size: 1rem;
    }

    .modern-hero-slider {
        height: 500px;
    }

    .slide-content {
        flex-direction: column;
        text-align: center;
        padding: 0 1rem;
    }

    .slide-text {
        max-width: 100%;
        margin-bottom: 2rem;
    }

    .slide-title {
        font-size: 2.5rem;
    }

    .slide-description {
        font-size: 1.1rem;
    }

    .slide-image {
        max-width: 300px;
    }

    .slider-navigation {
        padding: 0 1rem;
    }

    .slider-indicators {
        bottom: 1rem;
        gap: 0.5rem;
    }

    .slider-indicator {
        min-width: 100px;
        padding: 0.75rem;
    }

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

    .hero-subtitle {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .page-header {
        padding: 1.5rem 1rem;
    }

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

    .breadcrumb-nav {
        padding: 0.75rem 1rem;
    }

    .breadcrumb {
        font-size: 0.8rem;
    }

    .modern-hero-slider {
        height: 400px;
    }

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

    .slide-description {
        font-size: 1rem;
    }

    .slide-actions {
        flex-direction: column;
        align-items: center;
    }

    .slider-nav-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .slider-indicators {
        flex-wrap: wrap;
        justify-content: center;
    }

    .slider-indicator {
        min-width: 80px;
        padding: 0.5rem;
    }

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

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
}

/* Main.php için Eksik CSS Siniflari */

/* Modern Product Card CSS */
.modern-product-card {
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.modern-product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.modern-product-card.hot-product {
    border: 2px solid #ff6b6b;
}

.modern-product-card.new-product {
    border: 2px solid #4ecdc4;
}

.product-header {
    position: relative;
    overflow: hidden;
}

.product-image-wrapper {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.product-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
}

.modern-product-card:hover .product-overlay {
    opacity: 1;
}

.overlay-actions {
    display: flex;
    gap: 1rem;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.modern-product-card:hover .overlay-actions {
    transform: translateY(0);
}

.overlay-btn {
    width: 45px;
    height: 45px;
    border: none;
    border-radius: 50%;
    background: white;
    color: var(--text-color);
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}

.overlay-btn:hover {
    background: var(--primary-color);
    color: white;
    transform: scale(1.1);
}

.product-badges {
    position: absolute;
    top: 1rem;
    left: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.badge {
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    color: white;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.badge-discount {
    background: #ff6b6b;
}

.badge-percent {
    background: #ffa726;
}

.badge-hot {
    background: #ff5722;
}

.badge-popular {
    background: #ff9800;
}

.badge-new {
    background: #4ecdc4;
}

.badge-fresh {
    background: #66bb6a;
}

.product-body {
    padding: 1.5rem;
}

.product-category-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--bg-light);
    color: var(--text-muted);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.product-link {
    color: var(--text-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.product-link:hover {
    color: var(--primary-color);
    text-decoration: none;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
}

.meta-item i {
    color: var(--primary-color);
    width: 16px;
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin: 1rem 0;
}

.stars {
    display: flex;
    gap: 0.25rem;
}

.stars i {
    color: #ffc107;
    font-size: 0.9rem;
}

.rating-count {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.product-pricing {
    margin: 1rem 0;
}

.price-container {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.5rem;
}

.price-savings {
    font-size: 0.9rem;
    color: #28a745;
    font-weight: 600;
}

.product-footer {
    padding: 1.5rem;
    background: var(--bg-light);
    border-top: 1px solid #e9ecef;
}

.product-actions {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.btn-add-cart {
    flex: 1;
}

.btn-details {
    flex: 1;
}

.product-features {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    color: var(--text-muted);
}

.feature-item i {
    color: var(--primary-color);
}

/* Hero Slider CSS */
.hero-slider {
    position: relative;
    margin: 2rem 0;
}

.slider-item {
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: all 0.3s ease;
}

.slider-content {
    display: flex;
    align-items: center;
    padding: 2rem;
    gap: 2rem;
}

.slider-text {
    flex: 1;
}

.slider-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.slider-description {
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.slider-price {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.price-tag {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-color);
}

.slider-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.slider-image {
    flex: 1;
    max-width: 300px;
    text-align: center;
}

.slider-image img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.slider-nav {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 1rem;
    pointer-events: none;
}

.slider-prev,
.slider-next {
    width: 50px;
    height: 50px;
    border: none;
    border-radius: 50%;
    background: var(--primary-color);
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    pointer-events: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.slider-prev:hover,
.slider-next:hover {
    background: var(--primary-dark);
    transform: scale(1.1);
}

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1rem;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border: none;
    border-radius: 50%;
    background: #e9ecef;
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-dot.active {
    background: var(--primary-color);
    transform: scale(1.2);
}

/* Features Grid CSS */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.feature-card {
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 2rem;
}

.feature-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 1rem;
}

.feature-card p {
    color: var(--text-muted);
    line-height: 1.6;
}

/* Row/Column CSS */
.row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -1rem;
}

.col-md-3 {
    flex: 0 0 25%;
    max-width: 25%;
    padding: 0 1rem;
}

.col-md-9 {
    flex: 0 0 75%;
    max-width: 75%;
    padding: 0 1rem;
}

/* Sidebar CSS */
.sidebar {
    position: sticky;
    top: 2rem;
}

/* Fade In Animations */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease forwards;
}

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

/* Text Center Utility */
.text-center {
    text-align: center;
}

.mt-4 {
    margin-top: 2rem;
}

/* Responsive for Main.php */
@media (max-width: 768px) {
    .slider-content {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem;
    }

    .slider-text {
        order: 2;
    }

    .slider-image {
        order: 1;
        max-width: 100%;
        margin-bottom: 1.5rem;
    }

    .slider-title {
        font-size: 1.5rem;
    }

    .price-tag {
        font-size: 1.5rem;
    }


    .slider-actions {
        justify-content: center;
    }

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

    .product-features {
        flex-direction: column;
        gap: 0.5rem;
    }

    .col-md-3,
    .col-md-9 {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .sidebar {
        position: static;
        margin-top: 2rem;
    }

    .modern-product-card {
        margin-bottom: 1.5rem;
    }

    .product-image-wrapper {
        height: 200px;
    }

    .overlay-actions {
        gap: 0.5rem;
    }

    .overlay-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .slider-content {
        padding: 1rem;
    }

    .slider-title {
        font-size: 1.3rem;
    }

    .price-tag {
        font-size: 1.3rem;
    }

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

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

    .feature-card {
        padding: 1.5rem;
    }

    .feature-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .feature-card h3 {
        font-size: 1.1rem;
    }
}

/* Header için Yeni CSS Siniflari */

/* Sticky Header */
.sticky-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

/* Enhanced Header Top */
.header-contact {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    font-size: 0.875rem;
    color: var(--text-muted);
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.contact-item a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.contact-item i {
    color: var(--primary-color);
    width: 16px;
}

/* Enhanced Top Actions */
.header-top-actions {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.user-welcome {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.user-welcome i {
    color: var(--primary-color);
    font-size: 1.2rem;
}

/* Enhanced Logo */
.logo-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.logo-link:hover {
    transform: scale(1.05);
}

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

.logo-title {
    font-family: var(--font-display);
    font-size: var(--text-2xl);
    font-weight: var(--font-bold);
    color: var(--primary-color);
    line-height: var(--leading-none);
    letter-spacing: var(--tracking-tight);
}

.logo-subtitle {
    font-size: var(--text-sm);
    color: var(--text-muted);
    font-weight: var(--font-medium);
    letter-spacing: var(--tracking-wide);
}

/* Enhanced Search */
.search-input-group {
    display: flex;
    background: white;
    border: 2px solid #e9ecef;
    border-radius: 25px;
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
}

.search-input-group:focus-within {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(var(--primary-rgb), 0.1);
}

.search-input {
    flex: 1;
    padding: 0.75rem 1rem;
    border: none;
    outline: none;
    font-size: 1rem;
    background: transparent;
}

.search-button {
    padding: 0.75rem 1.5rem;
    background: var(--primary-color);
    color: white;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

/* Enhanced Search Results */
.search-results {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    max-height: 400px;
    overflow-y: auto;
    z-index: 1000;
    display: none;
    margin-top: 0.5rem;
    border: 1px solid #e9ecef;
}

.search-results.active {
    display: block;
}

.search-results-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.5rem;
    border-bottom: 1px solid #e9ecef;
    background: var(--bg-light);
}

.search-results-header h4 {
    margin: 0;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-color);
}

.close-search {
    background: none;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    font-size: 1.2rem;
    transition: color 0.3s ease;
}

.close-search:hover {
    color: var(--text-color);
}

.search-results-content {
    padding: 1rem 0;
    max-height: 300px;
    overflow-y: auto;
}

.search-results-footer {
    padding: 1rem 1.5rem;
    border-top: 1px solid #e9ecef;
    background: var(--bg-light);
    text-align: center;
}

/* Enhanced Cart */
.cart-button {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    min-width: 140px;
}

.cart-button:hover {
    background: var(--primary-dark);
    transform: translateY(-1px);
}

.cart-icon {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background: #dc3545;
    color: white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 600;
}

.cart-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.cart-label {
    font-size: 0.9rem;
    font-weight: 600;
}

.cart-total {
    font-size: 0.8rem;
    opacity: 0.9;
}

/* Enhanced Cart Dropdown */
.cart-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    background: white;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    min-width: 320px;
    z-index: 1000;
    display: none;
    margin-top: 0.5rem;
    border: 1px solid #e9ecef;
}

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

.cart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.5rem;
    border-bottom: 1px solid #e9ecef;
    background: var(--bg-light);
}

.cart-header h4 {
    margin: 0;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-color);
}

.close-cart {
    background: none;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    font-size: 1.2rem;
    transition: color 0.3s ease;
}

.close-cart:hover {
    color: var(--text-color);
}

.cart-items {
    padding: 1.5rem;
}

.cart-item-list {
    max-height: 200px;
    overflow-y: auto;
    margin-bottom: 1rem;
}

.cart-summary {
    border-top: 1px solid #e9ecef;
    padding-top: 1rem;
    margin-bottom: 1rem;
}

.cart-total-info,
.cart-total-price {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.cart-total-price {
    font-weight: 600;
    color: var(--primary-color);
    font-size: 1rem;
}

.cart-actions {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

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

.empty-cart {
    text-align: center;
    padding: 2rem 1rem;
}

.empty-cart i {
    font-size: 3rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
}

.empty-cart p {
    color: var(--text-muted);
    margin-bottom: 1rem;
}

/* Enhanced Language Selector */
.language-select {
    padding: 0.5rem 0.75rem;
    border: 1px solid #e9ecef;
    border-radius: 6px;
    background: white;
    cursor: pointer;
    font-size: 0.875rem;
    transition: all 0.3s ease;
    min-width: 80px;
}

.language-select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(var(--primary-rgb), 0.1);
}

/* Enhanced Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    gap: 0.25rem;
}

.hamburger-line {
    width: 25px;
    height: 3px;
    background: white;
    transition: 0.3s;
    border-radius: 2px;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Enhanced Navigation */
.desktop-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 0;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 1.5rem;
    color: white;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    white-space: nowrap;
    position: relative;
}

.nav-link:hover {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    text-decoration: none;
}

.nav-link i:first-child {
    font-size: 1.1rem;
}

/* Enhanced Dropdown */
.dropdown {
    position: relative;
}

.dropdown-toggle {
    cursor: pointer;
}

.dropdown-toggle i:last-child {
    transition: transform 0.3s ease;
}

.dropdown:hover .dropdown-toggle i:last-child {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    min-width: 220px;
    z-index: 1000;
    display: none;
    list-style: none;
    margin: 0;
    padding: 0.5rem 0;
    border: 1px solid #e9ecef;
}

.dropdown:hover .dropdown-menu {
    display: block;
}

.dropdown-header {
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    color: var(--text-color);
    background: var(--bg-light);
    border-bottom: 1px solid #e9ecef;
    font-size: 0.9rem;
}

.dropdown-header i {
    margin-right: 0.5rem;
    color: var(--primary-color);
}

.dropdown-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    color: var(--text-color);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.dropdown-item:hover {
    background: var(--bg-light);
    color: var(--primary-color);
    text-decoration: none;
}

.dropdown-item i {
    width: 16px;
    color: var(--primary-color);
}

/* Mega Menu */
.mega-menu {
    min-width: 400px;
    padding: 1rem;
}

.mega-menu-content {
    display: grid;
    gap: 1rem;
}

.mega-menu-section h4 {
    margin: 0 0 1rem 0;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-color);
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--primary-color);
}

.mega-menu-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0;
    color: var(--text-color);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.mega-menu-item:hover {
    color: var(--primary-color);
    text-decoration: none;
    transform: translateX(5px);
}

.mega-menu-item i {
    width: 16px;
    color: var(--primary-color);
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: white;
    z-index: 2000;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    overflow-y: auto;
}

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

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.5rem;
    background: var(--primary-color);
    color: white;
}

.mobile-menu-header h4 {
    margin: 0;
    font-size: 1.2rem;
    font-weight: 600;
}

.close-mobile-menu {
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    font-size: 1.5rem;
    transition: opacity 0.3s ease;
}

.close-mobile-menu:hover {
    opacity: 0.8;
}

.mobile-menu-content {
    padding: 1rem 0;
}

.mobile-search {
    padding: 1rem 1.5rem;
    border-bottom: 1px solid #e9ecef;
}

.mobile-search-form {
    display: flex;
    gap: 0.5rem;
}

.mobile-search-input {
    flex: 1;
    padding: 0.75rem 1rem;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    font-size: 1rem;
}

.mobile-search-btn {
    padding: 0.75rem 1rem;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
}

.mobile-nav-menu {
    list-style: none;
    margin: 0;
    padding: 0;
}

.mobile-nav-item {
    border-bottom: 1px solid #e9ecef;
}

.mobile-nav-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.5rem;
    color: var(--text-color);
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
}

.mobile-nav-link:hover {
    background: var(--bg-light);
    color: var(--primary-color);
    text-decoration: none;
}

.mobile-nav-link i:first-child {
    margin-right: 0.75rem;
    color: var(--primary-color);
    width: 20px;
}

.mobile-dropdown-menu {
    display: none;
    list-style: none;
    margin: 0;
    padding: 0;
    background: var(--bg-light);
}

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

.mobile-dropdown-item {
    display: block;
    padding: 0.75rem 1.5rem 0.75rem 3rem;
    color: var(--text-muted);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.mobile-dropdown-item:hover {
    background: white;
    color: var(--primary-color);
    text-decoration: none;
}

/* Enhanced Modal */
.modal-header h3 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.modal-header h3 i {
    color: var(--primary-color);
}

.form-group label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text-color);
    font-size: 0.95rem;
}

.form-group label i {
    color: var(--primary-color);
    width: 16px;
}

.form-input {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 2px solid #e1e5e9;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
}

.form-input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(var(--primary-rgb), 0.1);
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.form-checkbox {
    width: 18px;
    height: 18px;
    accent-color: var(--primary-color);
}

.modal-link {
    color: var(--primary-color);
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.modal-link:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

/* Responsive Enhancements */
@media (max-width: 768px) {
    .header-contact {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .desktop-menu {
        display: none;
    }

    .logo-text {
        display: none;
    }

    .header-search {
        margin: 0 0.5rem;
        max-width: 300px;
    }

    .header-actions {
        gap: 0.5rem;
    }

    .cart-button {
        min-width: auto;
        padding: 0.5rem 0.75rem;
    }

    .cart-text {
        display: none;

    }

    .language-selector {
        display: none;
    }

    .user-welcome {
        display: none;
    }

    .header-top-actions {
        gap: 0.5rem;
    }

    .header-top-actions .btn {
        padding: 0.5rem 0.75rem;
        font-size: 0.8rem;
    }

    .header-top-actions .btn i {
        margin-right: 0;
    }

    .header-top-actions .btn span {
        display: none;
    }
}

@media (max-width: 480px) {
    .header-main {
        padding: 0.75rem 0;
    }

    .logo {
        height: 40px;
    }

    .header-search {
        max-width: 200px;
        margin: 0 0.25rem;
    }

    .search-input {
        font-size: 0.875rem;
        padding: 0.5rem 0.75rem;
    }

    .search-button {
        padding: 0.5rem 1rem;
    }

    .cart-button {
        padding: 0.5rem;
    }

    .cart-icon {
        font-size: 1.2rem;
    }

    .mobile-menu {
        width: 100%;
    }

    .mobile-nav-link {
        padding: 1rem;
    }

    .mobile-dropdown-item {
        padding: 0.75rem 1rem 0.75rem 2rem;
    }
}

/* ===== PRODUCT DETAIL PAGE ===== */

/* Modern Product Detail Styles */
.modern-product-detail {
    padding: 2rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    min-height: 100vh;
    position: relative;
}

.modern-product-detail::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    opacity: 0.05;
    z-index: 0;
}

.modern-product-detail .container {
    position: relative;
    z-index: 1;
}

/* Product Header */
.product-header {
    margin-bottom: 3rem;
    text-align: center;
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

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

.product-title {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--text-color);
    margin-bottom: 1.5rem;
    line-height: 1.2;
    background: linear-gradient(135deg, var(--text-color) 0%, var(--primary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.product-meta {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    color: var(--text-muted);
    font-size: 0.95rem;
    flex-wrap: wrap;
}

.product-sku {
    background: linear-gradient(135deg, var(--bg-light) 0%, #f8f9fa 100%);
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-family: 'Courier New', monospace;
    font-weight: 600;
    border: 2px solid rgba(var(--primary-rgb), 0.1);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.product-sku:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border-color: rgba(var(--primary-rgb), 0.2);
}

.product-views {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(var(--primary-rgb), 0.1);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.product-views:hover {
    background: rgba(var(--primary-rgb), 0.15);
    transform: scale(1.05);
}

.product-views::before {
    content: '??';
    font-size: 1.2rem;
    animation: pulse 2s infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.7;
    }
}

/* Product Gallery */
.product-gallery {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.product-gallery:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.main-image-container {
    position: relative;
    height: 450px;
    overflow: hidden;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.main-image-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}

.main-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.main-image-container:hover .image-overlay {
    opacity: 1;
}

.zoom-btn {
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: var(--text-color);
}

.zoom-btn:hover {
    background: var(--primary-color);
    color: white;
    transform: scale(1.1);
}

.discount-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: linear-gradient(135deg, #ff6b6b, #ee5a52);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
}

/* Product Info */
.product-info {
    background: white;
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    border: 1px solid rgba(0, 0, 0, 0.05);
    height: fit-content;
    position: relative;
    overflow: hidden;
}

.product-info::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-dark), var(--accent-color));
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1) 0%, rgba(255, 193, 7, 0.1) 100%);
    padding: 1rem 1.5rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 215, 0, 0.2);
}

.stars {
    display: flex;
    gap: 0.2rem;
}

.stars i {
    color: #ffd700;
    font-size: 1.3rem;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    animation: starGlow 2s ease-in-out infinite alternate;
}

.stars i:nth-child(1) {
    animation-delay: 0s;
}

.stars i:nth-child(2) {
    animation-delay: 0.2s;
}

.stars i:nth-child(3) {
    animation-delay: 0.4s;
}

.stars i:nth-child(4) {
    animation-delay: 0.6s;
}

.stars i:nth-child(5) {
    animation-delay: 0.8s;
}

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

    100% {
        transform: scale(1.1);
    }
}

.rating-count {
    color: var(--text-muted);
    font-size: 0.95rem;
    font-weight: 500;
    background: white;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

/* Product Pricing */
.product-pricing {
    margin-bottom: 2.5rem;
    background: linear-gradient(135deg, rgba(var(--primary-rgb), 0.05) 0%, rgba(var(--accent-rgb), 0.05) 100%);
    padding: 2rem;
    border-radius: 16px;
    border: 2px solid rgba(var(--primary-rgb), 0.1);
    position: relative;
    overflow: hidden;
}

.product-pricing::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
}

.old-price {
    font-size: 1.4rem;
    color: var(--text-muted);
    text-decoration: line-through;
    margin-bottom: 0.75rem;
    opacity: 0.7;
    position: relative;
}

.old-price::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--text-muted), transparent);
    transform: translateY(-50%);
}

.current-price {
    margin-bottom: 1rem;
}

.price-amount {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-color);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: priceGlow 2s ease-in-out infinite alternate;
}

@keyframes priceGlow {
    0% {
        filter: brightness(1);
    }

    100% {
        filter: brightness(1.1);
    }
}

.price-ask {
    font-size: 1.8rem;
    color: #ff4757;
    font-weight: 700;
    background: linear-gradient(135deg, #ff4757 0%, #ff3742 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: askPulse 2s ease-in-out infinite;
}

@keyframes askPulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

.savings {
    margin-top: 1rem;
    background: linear-gradient(135deg, #00b894 0%, #00a085 100%);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    display: inline-block;
    box-shadow: 0 4px 15px rgba(0, 184, 148, 0.3);
    animation: savingsBounce 3s ease-in-out infinite;
}

@keyframes savingsBounce {

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

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

.savings-text {
    color: white;
    font-weight: 700;
    font-size: 1.1rem;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

/* Stock Status */
.stock-status {
    margin-bottom: 2.5rem;
}

.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.5rem;
    border-radius: 25px;
    font-weight: 700;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.status-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.status-badge:hover::before {
    opacity: 1;
}

.status-badge.in-stock {
    background: linear-gradient(135deg, #d4edda 0%, #c3e6cb 100%);
    color: #155724;
    border: 2px solid #28a745;
    animation: stockPulse 2s ease-in-out infinite;
}

@keyframes stockPulse {

    0%,
    100% {
        box-shadow: 0 4px 15px rgba(40, 167, 69, 0.3);
    }

    50% {
        box-shadow: 0 6px 20px rgba(40, 167, 69, 0.5);
    }
}

.status-badge.out-of-stock {
    background: linear-gradient(135deg, #f8d7da 0%, #f5c6cb 100%);
    color: #721c24;
    border: 2px solid #dc3545;
}

.stock-warning {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #856404;
    background: linear-gradient(135deg, #fff3cd 0%, #ffeaa7 100%);
    padding: 1rem 1.5rem;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    border: 2px solid #ffc107;
    box-shadow: 0 4px 15px rgba(255, 193, 7, 0.3);
    animation: warningShake 2s ease-in-out infinite;
}

@keyframes warningShake {

    0%,
    100% {
        transform: translateX(0);
    }

    25% {
        transform: translateX(-2px);
    }

    75% {
        transform: translateX(2px);
    }
}

/* Product Details */
.product-details {
    margin-bottom: 2.5rem;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.02) 0%, rgba(0, 0, 0, 0.05) 100%);
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.detail-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.detail-item:hover {
    background: rgba(255, 255, 255, 0.5);
    margin: 0 -1rem;
    padding: 1rem;
    border-radius: 8px;
}

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

.detail-label {
    font-weight: 700;
    color: var(--text-color);
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.detail-label::before {
    content: '??';
    font-size: 1.1rem;
}

.detail-value {
    color: var(--text-muted);
    font-weight: 500;
    background: white;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.detail-value:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Shipping Info */
.shipping-info {
    margin-bottom: 2.5rem;
}

.shipping-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    font-size: 1rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.shipping-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.shipping-badge:hover::before {
    opacity: 1;
}

.shipping-badge.free {
    background: linear-gradient(135deg, #00b894 0%, #00a085 100%);
    color: white;
    border: 2px solid #00b894;
    animation: freeShippingGlow 2s ease-in-out infinite;
}

@keyframes freeShippingGlow {

    0%,
    100% {
        box-shadow: 0 4px 15px rgba(0, 184, 148, 0.3);
    }

    50% {
        box-shadow: 0 6px 20px rgba(0, 184, 148, 0.5);
    }
}

.shipping-badge:not(.free) {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    color: var(--text-color);
    border: 2px solid #dee2e6;
}

/* Add to Cart Section */
.add-to-cart-section {
    margin-bottom: 2.5rem;
    background: linear-gradient(135deg, rgba(var(--primary-rgb), 0.05) 0%, rgba(var(--accent-rgb), 0.05) 100%);
    padding: 2rem;
    border-radius: 16px;
    border: 2px solid rgba(var(--primary-rgb), 0.1);
    position: relative;
    overflow: hidden;
}

.add-to-cart-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
}

.quantity-selector {
    margin-bottom: 1.5rem;
}

.quantity-selector label {
    display: block;
    margin-bottom: 0.75rem;
    font-weight: 700;
    color: var(--text-color);
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.quantity-selector label::before {
    content: '??';
    font-size: 1.2rem;
}

.quantity-select {
    width: 100%;
    padding: 1rem 1.5rem;
    border: 2px solid rgba(var(--primary-rgb), 0.2);
    border-radius: 12px;
    background: white;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.quantity-select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 4px 15px rgba(var(--primary-rgb), 0.2);
    transform: translateY(-1px);
}

.cart-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-add-cart,
.btn-wishlist {
    flex: 1;
    padding: 1.25rem 2rem;
    border-radius: 12px;
    font-weight: 700;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    min-width: 180px;
    font-size: 1.1rem;
    position: relative;
    overflow: hidden;
}

.btn-add-cart::before,
.btn-wishlist::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.btn-add-cart:hover::before,
.btn-wishlist:hover::before {
    opacity: 1;
}

.btn-add-cart {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    border-color: var(--primary-color);
    box-shadow: 0 4px 15px rgba(var(--primary-rgb), 0.3);
    animation: addToCartPulse 2s ease-in-out infinite;
}

@keyframes addToCartPulse {

    0%,
    100% {
        box-shadow: 0 4px 15px rgba(var(--primary-rgb), 0.3);
    }

    50% {
        box-shadow: 0 6px 20px rgba(var(--primary-rgb), 0.5);
    }
}

.btn-add-cart:hover {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 100%);
    border-color: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(var(--primary-rgb), 0.4);
}

.btn-wishlist {
    background: linear-gradient(135deg, white 0%, #f8f9fa 100%);
    color: var(--text-color);
    border-color: rgba(var(--primary-rgb), 0.2);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.btn-wishlist:hover {
    background: linear-gradient(135deg, rgba(var(--primary-rgb), 0.1) 0%, rgba(var(--primary-rgb), 0.05) 100%);
    border-color: var(--primary-color);
    color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(var(--primary-rgb), 0.2);
}

/* Stock Alert */
.stock-alert {
    margin-bottom: 2rem;
}

.alert {
    padding: 1rem;
    border-radius: 8px;
    border: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.alert-warning {
    background: #fff3cd;
    color: #856404;
}

.alert-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
}

/* Product Features */
.product-features {
    display: flex;
    justify-content: space-between;
    padding: 2rem;
    border-top: 2px solid rgba(var(--primary-rgb), 0.1);
    background: linear-gradient(135deg, rgba(var(--primary-rgb), 0.02) 0%, rgba(var(--accent-rgb), 0.02) 100%);
    border-radius: 0 0 16px 16px;
    flex-wrap: wrap;
    gap: 1rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1rem;
    color: var(--text-color);
    font-weight: 600;
    background: white;
    padding: 1rem 1.5rem;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    min-width: 200px;
    flex: 1;
}

.feature-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border-color: rgba(var(--primary-rgb), 0.2);
}

.feature-item i {
    color: var(--primary-color);
    font-size: 1.3rem;
    background: rgba(var(--primary-rgb), 0.1);
    padding: 0.5rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.feature-item:hover i {
    background: var(--primary-color);
    color: white;
    transform: scale(1.1);
}

/* Product Tabs */
.product-tabs {
    margin-top: 3rem;
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
}

.product-tabs::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-dark), var(--accent-color));
    z-index: 1;
}

.tab-navigation {
    border-bottom: 2px solid rgba(var(--primary-rgb), 0.1);
    background: linear-gradient(135deg, rgba(var(--primary-rgb), 0.02) 0%, rgba(var(--accent-rgb), 0.02) 100%);
}

.nav-tabs {
    border: none;
    margin: 0;
    padding: 0;
}

.nav-item {
    margin: 0;
}

.nav-link {
    border: none;
    border-radius: 0;
    padding: 1.5rem 2rem;
    color: var(--text-muted);
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    transition: all 0.3s ease;
    font-size: 1.1rem;
    position: relative;
    overflow: hidden;
}

.nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(var(--primary-rgb), 0.1) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.nav-link:hover::before {
    opacity: 1;
}

.nav-link:hover {
    color: var(--primary-color);
    background: rgba(var(--primary-rgb), 0.05);
    transform: translateY(-1px);
}

.nav-link.active {
    color: var(--primary-color);
    background: white;
    border-bottom: 4px solid var(--primary-color);
    box-shadow: 0 2px 10px rgba(var(--primary-rgb), 0.1);
    font-weight: 800;
}

.nav-link.active::before {
    opacity: 1;
}

.tab-content {
    padding: 2.5rem;
    background: white;
}

.tab-content-wrapper h3 {
    margin-bottom: 2rem;
    color: var(--text-color);
    font-weight: 700;
    font-size: 1.8rem;
    background: linear-gradient(135deg, var(--text-color) 0%, var(--primary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    padding-bottom: 1rem;
}

.tab-content-wrapper h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    border-radius: 2px;
}

/* Manufacturers */
.manufacturers-list {
    margin-top: 1rem;
}

.table {
    margin-bottom: 0;
}

.table th {
    border-top: none;
    font-weight: 600;
    color: var(--text-color);
}

.manufacturer-code {
    font-family: monospace;
    background: var(--bg-light);
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-size: 0.9rem;
}

.manufacturer-name {
    font-weight: 500;
    color: var(--text-color);
}

/* Related Products */
.related-products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 1rem;
}

.related-product-card {
    background: var(--bg-light);
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.related-product-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.related-product-card .product-image {
    height: 150px;
    overflow: hidden;
}

.related-product-card .product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.related-product-card .product-info {
    padding: 1rem;
    background: white;
}

.related-product-card .product-name {
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.related-product-card .product-name a {
    color: var(--text-color);
    text-decoration: none;
}

.related-product-card .product-name a:hover {
    color: var(--primary-color);
}

.related-product-card .product-sku {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
}

.related-product-card .product-price {
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.related-product-card .product-stock {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
}

/* No Data */
.no-data {
    text-align: center;
    padding: 3rem 1rem;
    color: var(--text-muted);
}

.no-data i {
    font-size: 3rem;
    margin-bottom: 1rem;
}

/* Product Detail Responsive Design */
@media (max-width: 768px) {
    .modern-product-detail {
        padding: 1rem 0;
    }

    .product-header {
        padding: 1.5rem;
        margin-bottom: 2rem;
    }

    .product-title {
        font-size: 2.2rem;
        margin-bottom: 1rem;
    }

    .product-meta {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }

    .product-sku,
    .product-views {
        width: 100%;
        text-align: center;
    }

    .main-image-container {
        height: 350px;
    }

    .product-info {
        padding: 1.5rem;
        margin-top: 1rem;
    }

    .product-rating {
        padding: 0.75rem 1rem;
        margin-bottom: 1.5rem;
    }

    .stars i {
        font-size: 1.1rem;
    }

    .product-pricing {
        padding: 1.5rem;
        margin-bottom: 2rem;
    }

    .price-amount {
        font-size: 2.5rem;
    }

    .price-ask {
        font-size: 1.5rem;
    }

    .status-badge {
        padding: 0.75rem 1rem;
        font-size: 1rem;
    }

    .stock-warning {
        padding: 0.75rem 1rem;
        font-size: 0.9rem;
    }

    .product-details {
        padding: 1rem;
        margin-bottom: 2rem;
    }

    .detail-item {
        padding: 0.75rem 0;
    }

    .detail-label {
        font-size: 0.9rem;
    }

    .detail-value {
        padding: 0.4rem 0.8rem;
        font-size: 0.9rem;
    }

    .shipping-badge {
        padding: 0.75rem 1rem;
        font-size: 0.9rem;
    }

    .add-to-cart-section {
        padding: 1.5rem;
        margin-bottom: 2rem;
    }

    .quantity-selector label {
        font-size: 1rem;
        margin-bottom: 0.5rem;
    }

    .quantity-select {
        padding: 0.75rem 1rem;
    }

    .cart-actions {
        flex-direction: column;
        gap: 1rem;
    }

    .btn-add-cart,
    .btn-wishlist {
        padding: 1rem 1.5rem;
        font-size: 1rem;
        min-width: auto;
    }

    .product-features {
        padding: 1.5rem;
        flex-direction: column;
        gap: 1rem;
    }

    .feature-item {
        min-width: auto;
        padding: 0.75rem 1rem;
        font-size: 0.9rem;
    }

    .feature-item i {
        font-size: 1.1rem;
        padding: 0.4rem;
    }

    .product-tabs {
        margin-top: 2rem;
    }

    .nav-link {
        padding: 1rem 1.5rem;
        font-size: 1rem;
        gap: 0.5rem;
    }

    .tab-content {
        padding: 1.5rem;
    }

    .tab-content-wrapper h3 {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }

    .related-products-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .related-product-card {
        margin-bottom: 1rem;
    }
}

@media (max-width: 480px) {
    .modern-product-detail {
        padding: 0.5rem 0;
    }

    .container {
        padding: 0 0.5rem;
    }

    .product-header {
        padding: 1rem;
        margin-bottom: 1.5rem;
    }

    .product-title {
        font-size: 1.8rem;
        margin-bottom: 0.75rem;
    }

    .product-meta {
        gap: 0.75rem;
    }

    .product-sku,
    .product-views {
        padding: 0.5rem 1rem;
        font-size: 0.85rem;
    }

    .main-image-container {
        height: 280px;
    }

    .product-info {
        padding: 1rem;
        margin-top: 0.75rem;
    }

    .product-rating {
        padding: 0.5rem 0.75rem;
        margin-bottom: 1rem;
    }

    .stars i {
        font-size: 1rem;
    }

    .rating-count {
        font-size: 0.85rem;
        padding: 0.2rem 0.5rem;
    }

    .product-pricing {
        padding: 1rem;
        margin-bottom: 1.5rem;
    }

    .price-amount {
        font-size: 2rem;
    }

    .price-ask {
        font-size: 1.3rem;
    }

    .old-price {
        font-size: 1.2rem;
    }

    .savings {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }

    .status-badge {
        padding: 0.5rem 0.75rem;
        font-size: 0.9rem;
        gap: 0.5rem;
    }

    .stock-warning {
        padding: 0.5rem 0.75rem;
        font-size: 0.85rem;
        gap: 0.5rem;
    }

    .product-details {
        padding: 0.75rem;
        margin-bottom: 1.5rem;
    }

    .detail-item {
        padding: 0.5rem 0;
    }

    .detail-label {
        font-size: 0.85rem;
        gap: 0.25rem;
    }

    .detail-label::before {
        font-size: 1rem;
    }

    .detail-value {
        padding: 0.3rem 0.6rem;
        font-size: 0.85rem;
    }

    .shipping-badge {
        padding: 0.5rem 0.75rem;
        font-size: 0.85rem;
        gap: 0.5rem;
    }

    .add-to-cart-section {
        padding: 1rem;
        margin-bottom: 1.5rem;
    }

    .quantity-selector label {
        font-size: 0.9rem;
        margin-bottom: 0.4rem;
    }

    .quantity-select {
        padding: 0.6rem 0.8rem;
        font-size: 0.9rem;
    }

    .btn-add-cart,
    .btn-wishlist {
        padding: 0.75rem 1rem;
        font-size: 0.9rem;
        gap: 0.5rem;
    }

    .product-features {
        padding: 1rem;
        gap: 0.75rem;
    }

    .feature-item {
        padding: 0.6rem 0.8rem;
        font-size: 0.85rem;
        gap: 0.5rem;
    }

    .feature-item i {
        font-size: 1rem;
        padding: 0.3rem;
    }

    .product-tabs {
        margin-top: 1.5rem;
    }

    .nav-link {
        padding: 0.75rem 1rem;
        font-size: 0.9rem;
        gap: 0.4rem;
    }

    .tab-content {
        padding: 1rem;
    }

    .tab-content-wrapper h3 {
        font-size: 1.3rem;
        margin-bottom: 1rem;
    }

    .related-products-grid {
        gap: 0.75rem;
    }

    .related-product-card .product-info {
        padding: 0.75rem;
    }

    .related-product-card .product-name {
        font-size: 0.9rem;
    }

    .related-product-card .product-sku {
        font-size: 0.75rem;
    }

    .related-product-card .product-price {
        font-size: 0.9rem;
    }

    .related-product-card .product-stock {
        font-size: 0.75rem;
    }
}

/* ===== MODERN FORM STYLES ===== */

/* Form Container */
.form-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

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

/* Form Sections */
.form-sections {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.form-section {
    background: linear-gradient(135deg, rgba(var(--primary-rgb), 0.02) 0%, rgba(var(--accent-rgb), 0.02) 100%);
    padding: 2rem;
    border-radius: 16px;
    border: 2px solid rgba(var(--primary-rgb), 0.1);
    position: relative;
    overflow: hidden;
}

.form-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
}

/* Form specific section header styles */
.form-section-header {
    margin-bottom: 2rem;
    text-align: center;
}

.form-section-header h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, var(--text-color) 0%, var(--primary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.form-section-header p {
    color: var(--text-muted);
    font-size: 1rem;
    margin: 0;
}

/* Form Grid */
.form-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

/* Form Groups */
.form-group {
    margin-bottom: 1.5rem;
    position: relative;
}

.form-group:last-child {
    margin-bottom: 0;
}

/* Form Labels */
.form-label {
    display: block;
    margin-bottom: 0.75rem;
    font-weight: 600;
    color: var(--text-color);
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.form-label i {
    color: var(--primary-color);
    font-size: 1.1rem;
    background: rgba(var(--primary-rgb), 0.1);
    padding: 0.4rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.form-group:focus-within .form-label {
    color: var(--primary-color);
}

.form-group:focus-within .form-label i {
    background: var(--primary-color);
    color: white;
    transform: scale(1.1);
}

/* Form Inputs */
.form-input,
.form-textarea,
.form-select {
    width: 100%;
    padding: 1rem 1.5rem;
    border: 2px solid rgba(var(--primary-rgb), 0.2);
    border-radius: 12px;
    background: white;
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-color);
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    position: relative;
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 4px 20px rgba(var(--primary-rgb), 0.2);
    transform: translateY(-2px);
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: var(--text-muted);
    opacity: 0.7;
}

.form-textarea {
    resize: vertical;
    min-height: 120px;
    line-height: 1.6;
}

.form-select {
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");
    background-position: right 0.75rem center;
    background-repeat: no-repeat;
    background-size: 1.5em 1.5em;
    padding-right: 2.5rem;
}

/* Form Input Icons */
.form-input-wrapper {
    position: relative;
}

.form-input-wrapper .form-input {
    padding-left: 3rem;
}

.form-input-wrapper::before {
    content: '';
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    width: 1.5rem;
    height: 1.5rem;
    background-size: contain;
    background-repeat: no-repeat;
    opacity: 0.5;
    transition: all 0.3s ease;
}

.form-group:focus-within .form-input-wrapper::before {
    opacity: 1;
    transform: translateY(-50%) scale(1.1);
}

/* Form Validation States */
.form-input.is-valid {
    border-color: #10b981;
    box-shadow: 0 4px 20px rgba(16, 185, 129, 0.2);
}

.form-input.is-invalid {
    border-color: #ef4444;
    box-shadow: 0 4px 20px rgba(239, 68, 68, 0.2);
}

.validation-message {
    margin-top: 0.5rem;
    font-size: 0.875rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.validation-message.valid {
    color: #10b981;
}

.validation-message.invalid {
    color: #ef4444;
}

/* Form Actions */
.form-actions {
    margin-top: 2rem;
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.form-actions .btn {
    min-width: 200px;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.form-actions .btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.form-actions .btn:hover::before {
    opacity: 1;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    border: 2px solid var(--primary-color);
    box-shadow: 0 4px 15px rgba(var(--primary-rgb), 0.3);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 100%);
    border-color: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(var(--primary-rgb), 0.4);
}

.btn-secondary {
    background: linear-gradient(135deg, white 0%, #f8f9fa 100%);
    color: var(--text-color);
    border: 2px solid rgba(var(--primary-rgb), 0.2);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.btn-secondary:hover {
    background: linear-gradient(135deg, rgba(var(--primary-rgb), 0.1) 0%, rgba(var(--primary-rgb), 0.05) 100%);
    border-color: var(--primary-color);
    color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(var(--primary-rgb), 0.2);
}

/* Login Form Specific */
.login-content {
    max-width: 1000px;
    margin: 0 auto;
    padding: 2rem;
}

.login-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.login-form-section {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.login-form-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-dark), var(--accent-color));
}

.form-header {
    text-align: center;
    margin-bottom: 2rem;
}

.form-header h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, var(--text-color) 0%, var(--primary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.form-header p {
    color: var(--text-muted);
    font-size: 1rem;
    margin: 0;
}

.login-actions-section {
    background: linear-gradient(135deg, rgba(var(--primary-rgb), 0.05) 0%, rgba(var(--accent-rgb), 0.05) 100%);
    padding: 2.5rem;
    border-radius: 20px;
    border: 2px solid rgba(var(--primary-rgb), 0.1);
}

.actions-header {
    text-align: center;
    margin-bottom: 2rem;
}

.actions-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 0.5rem;
}

.actions-header p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin: 0;
}

.actions-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.action-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: white;
    border-radius: 12px;
    text-decoration: none;
    color: var(--text-color);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.action-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border-color: rgba(var(--primary-rgb), 0.2);
    color: var(--primary-color);
}

.action-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.action-content {
    flex: 1;
}

.action-content h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0 0 0.25rem 0;
}

.action-content p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin: 0;
}

.action-arrow {
    color: var(--text-muted);
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.action-item:hover .action-arrow {
    color: var(--primary-color);
    transform: translateX(3px);
}

/* Register Form Specific */
.register-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem;
}

.register-form {
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.05);
    overflow: hidden;
    position: relative;
}

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

/* Contact Form Specific */
.contact-form-section {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.contact-form-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-dark), var(--accent-color));
}

/* Form Checkbox and Radio */
.form-check {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    cursor: pointer;
}

.form-check-input {
    width: 1.25rem;
    height: 1.25rem;
    border: 2px solid rgba(var(--primary-rgb), 0.3);
    border-radius: 4px;
    background: white;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.form-check-input:checked {
    background: var(--primary-color);
    border-color: var(--primary-color);
}

.form-check-input:checked::after {
    content: '?';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 0.8rem;
    font-weight: bold;
}

.form-check-label {
    font-weight: 500;
    color: var(--text-color);
    cursor: pointer;
    user-select: none;
}

/* Form Progress */
.form-progress {
    display: flex;
    justify-content: space-between;
    margin-bottom: 2rem;
    position: relative;
}

.form-progress::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 2px;
    background: rgba(var(--primary-rgb), 0.2);
    transform: translateY(-50%);
    z-index: 1;
}

.progress-step {
    position: relative;
    z-index: 2;
    background: white;
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    border: 2px solid rgba(var(--primary-rgb), 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text-muted);
    transition: all 0.3s ease;
}

.progress-step.active {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
    transform: scale(1.2);
}

.progress-step.completed {
    background: #10b981;
    border-color: #10b981;
    color: white;
}

/* Form Animations */
@keyframes formSlideIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

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

.form-container,
.login-form-section,
.register-form,
.contact-form-section {
    animation: formSlideIn 0.6s ease-out;
}

/* Form Responsive Design */
@media (max-width: 768px) {
    .form-container {
        padding: 1.5rem;
        margin: 1rem;
    }

    .form-sections {
        gap: 2rem;
    }

    .form-section {
        padding: 1.5rem;
    }

    .section-header h3 {
        font-size: 1.5rem;
    }

    .form-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .form-input,
    .form-textarea,
    .form-select {
        padding: 0.875rem 1.25rem;
        font-size: 0.95rem;
    }

    .form-actions {
        flex-direction: column;
        gap: 1rem;
    }

    .form-actions .btn {
        min-width: auto;
        width: 100%;
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
    }

    .login-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .login-form-section,
    .login-actions-section {
        padding: 1.5rem;
    }

    .form-header h3 {
        font-size: 1.5rem;
    }

    .action-item {
        padding: 1rem;
    }

    .action-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .action-content h4 {
        font-size: 1rem;
    }

    .action-content p {
        font-size: 0.85rem;
    }

    .register-content,
    .contact-form-section {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .form-container {
        padding: 1rem;
        margin: 0.5rem;
        border-radius: 16px;
    }

    .form-section {
        padding: 1rem;
        border-radius: 12px;
    }

    .section-header h3 {
        font-size: 1.3rem;
    }

    .section-header p {
        font-size: 0.9rem;
    }

    .form-label {
        font-size: 0.9rem;
        margin-bottom: 0.5rem;
    }

    .form-label i {
        font-size: 1rem;
        padding: 0.3rem;
    }

    .form-input,
    .form-textarea,
    .form-select {
        padding: 0.75rem 1rem;
        font-size: 0.9rem;
        border-radius: 8px;
    }

    .form-textarea {
        min-height: 100px;
    }

    .form-actions .btn {
        padding: 0.75rem 1rem;
        font-size: 0.9rem;
        border-radius: 8px;
    }

    .login-form-section,
    .login-actions-section {
        padding: 1rem;
        border-radius: 16px;
    }

    .form-header h3 {
        font-size: 1.3rem;
    }

    .form-header p {
        font-size: 0.9rem;
    }

    .action-item {
        padding: 0.75rem;
        border-radius: 8px;
    }

    .action-icon {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
        border-radius: 8px;
    }

    .action-content h4 {
        font-size: 0.9rem;
    }

    .action-content p {
        font-size: 0.8rem;
    }

    .register-content,
    .contact-form-section {
        padding: 1rem;
        border-radius: 16px;
    }
}

/* ===== FULL SCREEN LAYOUT ===== */

/* Full Screen Container */
.container {
    max-width: 100% !important;
    width: 100% !important;
    padding: 0 !important;
    margin: 0 !important;
}

/* Full Screen Sections */
section {
    width: 100vw !important;
    min-height: 100vh !important;
    margin: 0 !important;
    padding: 0 !important;
    position: relative;
    overflow: hidden;
}

/* Section Content Wrapper */
.section-content {
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    position: relative;
    z-index: 2;
}

/* Full Screen Hero Section */
.hero-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('/images/hero-pattern.png') repeat;
    opacity: 0.1;
    animation: backgroundMove 20s linear infinite;
}

@keyframes backgroundMove {
    0% {
        transform: translateX(0) translateY(0);
    }

    100% {
        transform: translateX(-100px) translateY(-100px);
    }
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem;
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 800;
    margin-bottom: 2rem;
    line-height: 1.1;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    animation: titleSlideIn 1s ease-out;
}

@keyframes titleSlideIn {
    from {
        opacity: 0;
        transform: translateY(50px);
    }

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

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 3rem;
    opacity: 0.9;
    line-height: 1.6;
    animation: subtitleSlideIn 1s ease-out 0.3s both;
}

@keyframes subtitleSlideIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

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

.hero-buttons {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: buttonsSlideIn 1s ease-out 0.6s both;
}

@keyframes buttonsSlideIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

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

.hero-buttons .btn {
    padding: 1.25rem 3rem;
    font-size: 1.2rem;
    font-weight: 700;
    border-radius: 50px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.hero-buttons .btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.hero-buttons .btn:hover::before {
    opacity: 1;
}

.hero-buttons .btn-primary {
    background: white;
    color: var(--primary-color);
    border: 2px solid white;
}

.hero-buttons .btn-primary:hover {
    background: transparent;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.hero-buttons .btn-outline {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.hero-buttons .btn-outline:hover {
    background: white;
    color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Full Screen Product Grid */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    padding: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.product-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

.product-image {
    height: 250px;
    overflow: hidden;
    position: relative;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.product-info {
    padding: 2rem;
}

.product-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.product-price {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.product-actions {
    display: flex;
    gap: 1rem;
}

.product-actions .btn {
    flex: 1;
    padding: 0.75rem 1.5rem;
    border-radius: 10px;
    font-weight: 600;
    text-decoration: none;
    text-align: center;
    transition: all 0.3s ease;
}

/* Full Screen Category Grid */
.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    padding: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.category-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    height: 300px;
}

.category-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

.category-image {
    height: 200px;
    overflow: hidden;
    position: relative;
}

.category-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.category-card:hover .category-image img {
    transform: scale(1.1);
}

.category-info {
    padding: 1.5rem;
    text-align: center;
}

.category-title {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-color);
}

.category-description {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Full Screen Features Section */
.features-section {
    background: linear-gradient(135deg, var(--bg-light) 0%, #f8f9fa 100%);
    padding: 4rem 2rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    max-width: 1400px;
    margin: 0 auto;
}

.feature-card {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    color: white;
    font-size: 2rem;
}

.feature-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.feature-description {
    color: var(--text-muted);
    line-height: 1.6;
}

/* Full Screen Testimonials */
.testimonials-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    padding: 4rem 2rem;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
}

.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-weight: 700;
}

.author-info h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.author-info p {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Full Screen CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--accent-dark) 100%);
    color: white;
    text-align: center;
    padding: 4rem 2rem;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.cta-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.cta-description {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    opacity: 0.9;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-buttons .btn {
    padding: 1.25rem 3rem;
    font-size: 1.2rem;
    font-weight: 700;
    border-radius: 50px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    transition: all 0.3s ease;
}

.cta-buttons .btn-primary {
    background: white;
    color: var(--accent-color);
    border: 2px solid white;
}

.cta-buttons .btn-primary:hover {
    background: transparent;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.cta-buttons .btn-outline {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.cta-buttons .btn-outline:hover {
    background: white;
    color: var(--accent-color);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Full Screen Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 3rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
    }

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

    .product-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 1rem;
    }

    .category-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 1rem;
    }

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

    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .cta-title {
        font-size: 2.5rem;
    }

    .cta-buttons {
        flex-direction: column;
        gap: 1rem;
    }

    .cta-buttons .btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-content {
        padding: 2rem 1rem;
    }

    .section-content {
        padding: 1rem;
    }

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

    .cta-description {
        font-size: 1rem;
    }
}

/* ===== HTML STRUCTURE FIXES ===== */

/* Main Content Wrapper */
.main-content-wrapper {
    width: 100%;
    min-height: 100vh;
    position: relative;
    z-index: 1;
}

/* Container Fixes */
.container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
}

/* Main Content */
.main-content {
    width: 100%;
    min-height: 100vh;
    position: relative;
    z-index: 1;
}

/* Content Sections */
.content-section {
    width: 100%;
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
    margin-bottom: 8rem;
}

.content-section:nth-child(even) {
    background: var(--bg-light);
}

.content-section:nth-child(odd) {
    background: white;
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 3rem;
    padding: 3rem 2rem;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    position: relative;
    z-index: 10;
    border-radius: 16px 16px 0 0;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.section-header p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Section Content */
.section-content {
    width: 100%;
    position: relative;
}

/* About Content */
.about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: start;
}

.about-text {
    line-height: 1.8;
    color: var(--text-color);
}

.about-text p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.about-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.about-actions .btn {
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 10px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    transition: all 0.3s ease;
}

/* Responsive Container */
@media (max-width: 1200px) {
    .container {
        max-width: 1000px;
        padding: 0 1.5rem;
    }
}

@media (max-width: 768px) {
    .container {
        max-width: 100%;
        padding: 0 1rem;
    }

    .content-section {
        padding: 3rem 0;
        margin-bottom: 4rem;
    }

    .section-header {
        padding: 2rem 1.5rem;
    }

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

    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-actions {
        flex-direction: row;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 0.5rem;
    }

    .content-section {
        padding: 2rem 0;
        margin-bottom: 3rem;
    }

    .section-header {
        padding: 1.5rem 1rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

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

/* ===== PRODUCT DETAIL PAGE STYLES ===== */

/* Product Content Layout */
.product-content {
    margin-top: 2rem;
}

.product-content .row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -1rem;
}

.product-content .col-lg-6 {
    flex: 0 0 50%;
    max-width: 50%;
    padding: 0 1rem;
}

.product-content .col-lg-6:first-child {
    display: flex;
    align-items: flex-start;
}

/* Product Gallery Enhancements */
.product-gallery {
    width: 100%;
    position: relative;
}

.main-image-container {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    background: white;
}

.main-image-wrapper {
    position: relative;
    width: 100%;
    height: 400px;
    overflow: hidden;
}

.main-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.main-image-container:hover .main-image {
    transform: scale(1.05);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.main-image-container:hover .image-overlay {
    opacity: 1;
}

.zoom-btn {
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.zoom-btn:hover {
    background: white;
    transform: scale(1.1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* Product Info Enhancements */
.product-info {
    padding: 2rem;
    background: white;
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    height: fit-content;
}

/* Product Rating Enhancements */
.product-rating {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: rgba(var(--primary-rgb), 0.05);
    border-radius: 12px;
}

.stars {
    display: flex;
    gap: 0.25rem;
}

.stars i {
    color: #ffd700;
    font-size: 1.1rem;
    animation: starGlow 2s ease-in-out infinite alternate;
}

.rating-count {
    color: var(--text-muted);
    font-size: 0.9rem;
    font-weight: 500;
}

/* Product Pricing Enhancements */
.product-pricing {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(var(--primary-rgb), 0.05) 0%, rgba(var(--accent-rgb), 0.05) 100%);
    border-radius: 12px;
    position: relative;
}

.old-price {
    font-size: 1.1rem;
    color: var(--text-muted);
    text-decoration: line-through;
    margin-bottom: 0.5rem;
    position: relative;
}

.old-price::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--text-muted);
    transform: translateY(-50%);
    animation: priceGlow 2s ease-in-out infinite;
}

.current-price {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.price-amount {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: priceGlow 2s ease-in-out infinite;
}

.price-ask {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-color);
    animation: askPulse 2s ease-in-out infinite;
}

.savings {
    display: inline-block;
    background: #10b981;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
    animation: savingsBounce 1s ease-in-out infinite;
}

.savings-text {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Stock Status Enhancements */
.stock-status {
    margin-bottom: 2rem;
}

.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.95rem;
    position: relative;
    overflow: hidden;
}

.status-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.status-badge:hover::before {
    left: 100%;
}

.status-badge.in-stock {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    animation: stockPulse 2s ease-in-out infinite;
}

.status-badge.out-of-stock {
    background: linear-gradient(135deg, #ef4444, #dc2626);
    color: white;
}

.stock-warning {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 0.5rem;
    padding: 0.5rem 1rem;
    background: #fef3c7;
    color: #92400e;
    border-radius: 8px;
    font-size: 0.9rem;
    animation: warningShake 0.5s ease-in-out;
}

/* Product Details Enhancements */
.product-details {
    margin-bottom: 2rem;
    background: rgba(var(--primary-rgb), 0.02);
    border-radius: 12px;
    padding: 1.5rem;
}

.detail-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(var(--primary-rgb), 0.1);
    transition: all 0.3s ease;
}

.detail-item:hover {
    background: rgba(var(--primary-rgb), 0.05);
    border-radius: 8px;
    padding-left: 1rem;
    padding-right: 1rem;
}

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

.detail-label {
    font-weight: 600;
    color: var(--text-color);
    position: relative;
}

.detail-label::before {
    content: '';
    position: absolute;
    left: -1rem;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 4px;
    background: var(--primary-color);
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.detail-item:hover .detail-label::before {
    opacity: 1;
}

.detail-value {
    font-weight: 500;
    color: var(--text-muted);
    transition: color 0.3s ease;
}

.detail-value:hover {
    color: var(--primary-color);
}

/* Shipping Info Enhancements */
.shipping-info {
    margin-bottom: 2rem;
}

.shipping-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 1.5rem;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.95rem;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.shipping-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.shipping-badge:hover::before {
    left: 100%;
}

.shipping-badge.free {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    animation: freeShippingGlow 2s ease-in-out infinite;
}

.shipping-badge:not(.free) {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
}

/* Add to Cart Section Enhancements */
.add-to-cart-section {
    margin-bottom: 2rem;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(var(--primary-rgb), 0.05) 0%, rgba(var(--accent-rgb), 0.05) 100%);
    border-radius: 16px;
    position: relative;
    overflow: hidden;
}

.add-to-cart-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
}

.quantity-selector {
    margin-bottom: 1.5rem;
}

.quantity-selector label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text-color);
    position: relative;
}

.quantity-selector label::before {
    content: '';
    position: absolute;
    left: -1rem;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 4px;
    background: var(--primary-color);
    border-radius: 50%;
}

.quantity-select {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 2px solid rgba(var(--primary-rgb), 0.2);
    border-radius: 8px;
    background: white;
    font-size: 1rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.quantity-select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 4px 15px rgba(var(--primary-rgb), 0.2);
}

.cart-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-add-cart,
.btn-wishlist {
    flex: 1;
    min-width: 150px;
    padding: 1rem 1.5rem;
    border: none;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-add-cart::before,
.btn-wishlist::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.btn-add-cart:hover::before,
.btn-wishlist:hover::before {
    left: 100%;
}

.btn-add-cart {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    animation: addToCartPulse 2s ease-in-out infinite;
}

.btn-add-cart:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(var(--primary-rgb), 0.4);
}

.btn-wishlist {
    background: linear-gradient(135deg, #ef4444, #dc2626);
    color: white;
}

.btn-wishlist:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(239, 68, 68, 0.4);
}

/* Stock Alert Enhancements */
.stock-alert {
    margin-bottom: 2rem;
}

.alert {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    border-radius: 12px;
    font-weight: 500;
    border: none;
}

.alert-warning {
    background: #fef3c7;
    color: #92400e;
    border-left: 4px solid #f59e0b;
}

.alert-link {
    color: #d97706;
    text-decoration: none;
    font-weight: 600;
    margin-left: auto;
}

.alert-link:hover {
    text-decoration: underline;
}

/* Product Features Enhancements */
.product-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
    margin-bottom: 2rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(var(--primary-rgb), 0.1);
}

.feature-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-color);
}

.feature-item i {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.feature-item:hover i {
    transform: scale(1.1);
}

/* Product Tabs Enhancements */
.product-tabs {
    margin-top: 3rem;
    background: white;
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    position: relative;
}

.product-tabs::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-dark), var(--accent-color));
}

.tab-navigation {
    background: rgba(var(--primary-rgb), 0.02);
    border-bottom: 1px solid rgba(var(--primary-rgb), 0.1);
}

.nav-tabs {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    border: none;
}

.nav-item {
    flex: 1;
}

.nav-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1.5rem 1rem;
    background: transparent;
    border: none;
    color: var(--text-muted);
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    cursor: pointer;
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-dark));
    transition: width 0.3s ease;
}

.nav-link:hover::before {
    width: 100%;
}

.nav-link:hover {
    color: var(--primary-color);
    background: rgba(var(--primary-rgb), 0.05);
}

.nav-link.active {
    color: var(--primary-color);
    background: white;
    border-bottom: 3px solid var(--primary-color);
}

.nav-link.active::before {
    width: 100%;
}

.tab-content {
    padding: 2rem;
}

.tab-content-wrapper h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.tab-content-wrapper h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-dark));
    border-radius: 2px;
}

/* Manufacturers List Enhancements */
.manufacturers-list {
    background: rgba(var(--primary-rgb), 0.02);
    border-radius: 12px;
    padding: 1.5rem;
}

.table {
    margin: 0;
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.table th {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    font-weight: 600;
    padding: 1rem;
    border: none;
}

.manufacturer-code {
    background: rgba(var(--primary-rgb), 0.1);
    color: var(--primary-color);
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-weight: 600;
    font-family: var(--font-mono);
}

.manufacturer-name {
    font-weight: 500;
    color: var(--text-color);
}

/* Related Products Grid Enhancements */
.related-products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 1.5rem;
}

.related-product-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(var(--primary-rgb), 0.1);
}

.related-product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-color);
}

.related-product-card .product-image {
    height: 200px;
    overflow: hidden;
    position: relative;
}

.related-product-card .product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.related-product-card .product-info {
    padding: 1.5rem;
    background: white;
}

.related-product-card .product-name {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.related-product-card .product-name a {
    color: var(--text-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.related-product-card .product-name a:hover {
    color: var(--primary-color);
}

.related-product-card .product-sku {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
}

.related-product-card .product-price {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.related-product-card .product-stock {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
}

/* No Data State */
.no-data {
    text-align: center;
    padding: 3rem 2rem;
    color: var(--text-muted);
}

.no-data i {
    font-size: 3rem;
    margin-bottom: 1rem;
    opacity: 0.5;
}

/* Responsive Design for Product Detail */
@media (max-width: 768px) {
    .product-content .col-lg-6 {
        flex: 0 0 100%;
        max-width: 100%;
        margin-bottom: 2rem;
    }

    .product-info {
        padding: 1.5rem;
    }

    .current-price {
        font-size: 2rem;
    }

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

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

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

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

    .nav-item {
        flex: none;
    }

    .related-products-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

@media (max-width: 480px) {
    .product-info {
        padding: 1rem;
    }

    .current-price {
        font-size: 1.8rem;
    }

    .product-details {
        padding: 1rem;
    }

    .detail-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.25rem;
    }

    .add-to-cart-section {
        padding: 1.5rem;
    }

    .tab-content {
        padding: 1rem;
    }

    .related-product-card .product-info {
        padding: 1rem;
    }
}

/* ===== ANIMATIONS ===== */

@keyframes starGlow {

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

    50% {
        opacity: 0.8;
        transform: scale(1.1);
    }
}

@keyframes priceGlow {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.7;
    }
}

@keyframes askPulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

@keyframes savingsBounce {

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

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

@keyframes stockPulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.02);
    }
}

@keyframes warningShake {

    0%,
    100% {
        transform: translateX(0);
    }

    25% {
        transform: translateX(-5px);
    }

    75% {
        transform: translateX(5px);
    }
}

@keyframes freeShippingGlow {

    0%,
    100% {
        box-shadow: 0 0 0 rgba(16, 185, 129, 0.4);
    }

    50% {
        box-shadow: 0 0 20px rgba(16, 185, 129, 0.6);
    }
}

@keyframes addToCartPulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.02);
    }
}

/* ===== MODERN VIDEO HERO STYLES ===== */

/* Modern Video Background Hero */
.modern-video-hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: white;
    max-width: 800px;
    padding: 0 2rem;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    line-height: 1.6;
    opacity: 0.9;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 2.5rem;
}

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

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: #ffd700;
    margin-bottom: 0.25rem;
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.8;
}

.hero-actions {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-actions .btn {
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 10px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.hero-actions .btn-primary {
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: white;
    border-color: #ff6b35;
}

.hero-actions .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
}

.hero-actions .btn-outline {
    background: transparent;
    color: white;
    border-color: white;
}

.hero-actions .btn-outline:hover {
    background: white;
    color: var(--primary-color);
    transform: translateY(-2px);
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    text-align: center;
    color: white;
    animation: bounce 2s infinite;
}

.scroll-arrow {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.scroll-text {
    font-size: 0.9rem;
    opacity: 0.8;
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    40% {
        transform: translateX(-50%) translateY(-10px);
    }

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

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .hero-stats {
        gap: 2rem;
    }

    .stat-number {
        font-size: 1.5rem;
    }

    .hero-actions {
        flex-direction: column;
        align-items: center;
    }

    .hero-actions .btn {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-stats {
        gap: 1.5rem;
    }

    .stat-number {
        font-size: 1.25rem;
    }
}

/* ===== MODERN SECTION EKSTRA STYLES ===== */

/* Section spacing ve responsive margin */
.content-section {
    margin-bottom: 4rem;
    padding-top: 2rem;
    padding-bottom: 2rem;
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
    position: relative;
    z-index: 1;
    min-height: auto;
    height: auto;
    overflow: visible;
    display: block;
}

@media (max-width: 768px) {
    .content-section {
        margin-bottom: 2rem;
        padding-top: 1rem;
        padding-bottom: 1rem;
        border-radius: 10px;
    }
}

/* Hero Text */
.hero-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    padding: 2rem 0;
}

/* Stat Item */
.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0 1.5rem;
}

/* Quick View, Add Wishlist, Compare Butonlari */
.quick-view,
.add-wishlist,
.compare {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color, #1e293b);
    font-size: 1.1rem;
    margin: 0 0.25rem;
    transition: all 0.2s;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    cursor: pointer;
}

.quick-view:hover,
.add-wishlist:hover,
.compare:hover {
    background: var(--primary-color, #1e293b);
    color: #fff;
    border-color: var(--primary-color, #1e293b);
}

/* .ct (about paragrafi için) */
.ct {
    font-size: 1.08rem;
    color: #374151;
    margin-bottom: 1rem;
    line-height: 1.7;
}

/* Sectionlar arasi ekstra bosluk */
.main-content-wrapper>section+section {
    margin-top: 2.5rem;
}

/* Responsive düzeltmeler */
@media (max-width: 600px) {
    .main-content-wrapper>section+section {
        margin-top: 1.2rem;
    }

    .hero-text {
        padding: 1rem 0;
        gap: 1rem;
    }
}

/* ===== BRANDS SECTION STYLES ===== */

.brand-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 2rem;
    align-items: center;
    justify-items: center;
    margin: 2rem 0 1rem 0;
}

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

@media (max-width: 600px) {
    .brand-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
}

.brand-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    padding: 1.5rem 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s, box-shadow 0.2s;
    min-height: 90px;
    min-width: 120px;
}

.brand-card:hover {
    transform: translateY(-6px) scale(1.05);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
}

.brand-logo {
    max-width: 100px;
    max-height: 60px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: grayscale(0.2) brightness(0.95) contrast(1.1);
    transition: filter 0.2s, transform 0.2s;
}

.brand-card:hover .brand-logo {
    filter: grayscale(0) brightness(1.1) contrast(1.2);
    transform: scale(1.08) rotate(-2deg);
}

@media (max-width: 600px) {
    .brand-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .brand-card {
        padding: 1rem 0.5rem;
        min-width: 80px;
    }

    .brand-logo {
        max-width: 70px;
        max-height: 40px;
    }
}

/* ===== STATS SECTION STYLES ===== */

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2.5rem;
    align-items: stretch;
    justify-items: center;
    margin: 2rem 0 1rem 0;
}

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

@media (max-width: 600px) {
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1.2rem;
    }
}

.stat-card {
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.07);
    padding: 2.5rem 1.5rem 2rem 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s, box-shadow 0.2s;
    min-height: 170px;
    min-width: 140px;
    position: relative;
    overflow: hidden;
}

.stat-card:hover {
    transform: translateY(-8px) scale(1.04);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.13);
}

.stat-icon {
    font-size: 2.5rem;
    color: var(--primary-color, #1e293b);
    margin-bottom: 1.2rem;
    background: linear-gradient(135deg, #f3f4f6 60%, #e0e7ef 100%);
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    transition: background 0.2s, color 0.2s;
}

.stat-card:hover .stat-icon {
    background: linear-gradient(135deg, var(--primary-color, #1e293b) 60%, #64748b 100%);
    color: #fff;
}

.stat-number {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--primary-color, #1e293b);
    margin-bottom: 0.5rem;
    letter-spacing: 1px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.stat-label {
    font-size: 1.1rem;
    color: #64748b;
    font-weight: 600;
    text-align: center;
    letter-spacing: 0.5px;
}

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

    .stat-card {
        padding: 1.2rem 0.5rem 1.2rem 0.5rem;
        min-width: 100px;
        min-height: 110px;
    }

    .stat-icon {
        font-size: 1.6rem;
        width: 38px;
        height: 38px;
        margin-bottom: 0.7rem;
    }

    .stat-number {
        font-size: 1.3rem;
    }

    .stat-label {
        font-size: 0.95rem;
    }
}

/* Vitrin Ürünleri section düzeltme */
.section-header {
    margin-bottom: 3rem;
    padding: 2rem 0 1rem 0;
    position: static;
    z-index: auto;
}

.section-content {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    position: static;
    z-index: auto;
    min-height: 200px;
}

.hero-slider {
    margin-top: 2rem;
    position: relative;
}

/* Section'lar arasi ekstra bosluk */
.main-content-wrapper>section+section {
    margin-top: 3rem;
}

@media (max-width: 768px) {
    .section-header {
        margin-bottom: 2rem;
        padding: 1.5rem 0 0.5rem 0;
        position: static;
    }

    .section-content {
        margin-top: 1rem;
        padding-top: 1rem;
        min-height: 150px;
        position: static;
    }

    .main-content-wrapper>section+section {
        margin-top: 2rem;
    }
}

/* ===== MODERN SEARCH PAGE STYLES ===== */

/* Arama sayfasi ana container */
.search-page-container {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    margin: 2rem 0;
}

/* Arama türü seçimi */
.search-type-section {
    background: linear-gradient(135deg, var(--primary-color, #1e293b) 0%, var(--primary-dark, #0f172a) 100%);
    padding: 2rem;
    color: white;
}

.search-type-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-align: center;
    position: relative;
}

.search-type-title::after {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 2px;
}

.search-type-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.search-type-item {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.search-type-item:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.search-type-link {
    display: block;
    padding: 1rem 1.5rem;
    color: white;
    text-decoration: none;
    font-weight: 500;
    text-align: center;
    transition: all 0.3s ease;
}

.search-type-link:hover {
    color: white;
    text-decoration: none;
}

.search-type-link span {
    display: block;
    font-size: 0.9rem;
    opacity: 0.9;
    margin-top: 0.25rem;
}

/* Arama formu */
.search-form-section {
    padding: 3rem 2rem;
    background: white;
}

.search-form-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-color, #1e293b);
    margin-bottom: 2rem;
    text-align: center;
    position: relative;
}

.search-form-title::after {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color, #1e293b), var(--accent-color, #3b82f6));
    border-radius: 2px;
}

.search-form {
    max-width: 600px;
    margin: 0 auto;
}

.search-form-group {
    margin-bottom: 1.5rem;
    position: relative;
}

.search-form-label {
    display: block;
    font-weight: 600;
    color: var(--text-color, #1e293b);
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.search-form-control {
    width: 100%;
    padding: 1rem 1.5rem;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #f8fafc;
}

.search-form-control:focus {
    outline: none;
    border-color: var(--primary-color, #1e293b);
    background: white;
    box-shadow: 0 4px 16px rgba(var(--primary-rgb, 30, 41, 59), 0.1);
}

.search-form-select {
    width: 100%;
    padding: 1rem 1.5rem;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #f8fafc;
    cursor: pointer;
}

.search-form-select:focus {
    outline: none;
    border-color: var(--primary-color, #1e293b);
    background: white;
    box-shadow: 0 4px 16px rgba(var(--primary-rgb, 30, 41, 59), 0.1);
}

.search-submit-btn {
    width: 100%;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, var(--primary-color, #1e293b) 0%, var(--primary-dark, #0f172a) 100%);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.search-submit-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: left 0.5s ease;
}

.search-submit-btn:hover::before {
    left: 100%;
}

.search-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(var(--primary-rgb, 30, 41, 59), 0.3);
}

/* Responsive tasarim */
@media (max-width: 768px) {
    .search-type-section {
        padding: 1.5rem;
    }

    .search-type-list {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }

    .search-form-section {
        padding: 2rem 1rem;
    }

    .search-form-title {
        font-size: 1.5rem;
    }

    .search-form-control,
    .search-form-select {
        padding: 0.875rem 1.25rem;
        font-size: 0.95rem;
    }

    .search-submit-btn {
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .search-type-section {
        padding: 1rem;
    }

    .search-form-section {
        padding: 1.5rem 0.75rem;
    }

    .search-type-title {
        font-size: 1.25rem;
    }

    .search-form-title {
        font-size: 1.25rem;
    }
}

/* ===== MODERN ORDER DETAIL PAGE STYLES ===== */

/* Siparis detay sayfasi ana container */
.order-detail-container {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    margin: 2rem 0;
}

/* Siparis sorgulama formu */
.order-search-section {
    background: linear-gradient(135deg, var(--primary-color, #1e293b) 0%, var(--primary-dark, #0f172a) 100%);
    padding: 3rem 2rem;
    color: white;
    text-align: center;
}

.order-search-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    position: relative;
}

.order-search-title::after {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 2px;
}

.order-search-subtitle {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 2rem;
}

.order-search-form {
    max-width: 500px;
    margin: 0 auto;
    display: flex;
    gap: 1rem;
    align-items: center;
}

.order-search-input {
    flex: 1;
    padding: 1rem 1.5rem;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.order-search-input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.order-search-input:focus {
    outline: none;
    border-color: rgba(255, 255, 255, 0.5);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.order-search-btn {
    padding: 1rem 2rem;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.order-search-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

/* Siparis bilgileri bölümü */
.order-info-section {
    padding: 3rem 2rem;
    background: white;
}

.order-section-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-color, #1e293b);
    margin-bottom: 2rem;
    text-align: center;
    position: relative;
}

.order-section-title::after {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color, #1e293b), var(--accent-color, #3b82f6));
    border-radius: 2px;
}

/* Modern tablo stilleri */
.order-table {
    width: 100%;
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    margin-bottom: 2rem;
}

.order-table thead {
    background: linear-gradient(135deg, var(--primary-color, #1e293b) 0%, var(--primary-dark, #0f172a) 100%);
    color: white;
}

.order-table th {
    padding: 1.5rem 1rem;
    font-weight: 600;
    text-align: left;
    border: none;
    font-size: 1rem;
}

.order-table td {
    padding: 1.5rem 1rem;
    border-bottom: 1px solid #f1f5f9;
    vertical-align: middle;
}

.order-table tbody tr:hover {
    background: #f8fafc;
}

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

/* Durum badge'leri */
.status-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    text-align: center;
}

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

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

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

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

/* Aksiyon butonlari */
.order-action-btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    text-align: center;
    transition: all 0.3s ease;
    margin: 0.25rem;
    border: none;
    cursor: pointer;
}

.order-action-btn-primary {
    background: linear-gradient(135deg, var(--primary-color, #1e293b) 0%, var(--primary-dark, #0f172a) 100%);
    color: white;
}

.order-action-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(var(--primary-rgb, 30, 41, 59), 0.3);
    color: white;
    text-decoration: none;
}

.order-action-btn-danger {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    color: white;
}

.order-action-btn-danger:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(239, 68, 68, 0.3);
    color: white;
    text-decoration: none;
}

.order-action-btn-info {
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    color: white;
}

.order-action-btn-info:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(59, 130, 246, 0.3);
    color: white;
    text-decoration: none;
}

/* Ürün listesi */
.order-products-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.order-product-item {
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    margin-bottom: 1.5rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

.order-product-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
}

.order-product-content {
    display: flex;
    align-items: center;
    padding: 2rem;
    gap: 2rem;
}

.order-product-image {
    flex: 0 0 120px;
    height: 120px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.order-product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.order-product-info {
    flex: 1;
}

.order-product-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-color, #1e293b);
    margin-bottom: 0.5rem;
}

.order-product-sku {
    font-size: 0.9rem;
    color: #64748b;
    margin-bottom: 1rem;
}

.order-product-description {
    font-size: 0.95rem;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.order-product-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.order-product-quantity {
    background: #f1f5f9;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-weight: 600;
    color: var(--text-color, #1e293b);
}

.order-product-price {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-color, #1e293b);
}

/* Hata mesaji */
.order-error-message {
    background: #fef2f2;
    border: 1px solid #fecaca;
    color: #991b1b;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    font-size: 1.1rem;
    margin: 2rem 0;
}

/* Responsive tasarim */
@media (max-width: 768px) {
    .order-search-section {
        padding: 2rem 1rem;
    }

    .order-search-title {
        font-size: 1.5rem;
    }

    .order-search-form {
        flex-direction: column;
        gap: 1rem;
    }

    .order-search-input,
    .order-search-btn {
        width: 100%;
    }

    .order-info-section {
        padding: 2rem 1rem;
    }

    .order-section-title {
        font-size: 1.5rem;
    }

    .order-table {
        font-size: 0.9rem;
    }

    .order-table th,
    .order-table td {
        padding: 1rem 0.5rem;
    }

    .order-product-content {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .order-product-image {
        flex: 0 0 100px;
        height: 100px;
    }

    .order-product-meta {
        flex-direction: column;
        gap: 0.5rem;
    }
}

@media (max-width: 480px) {
    .order-search-section {
        padding: 1.5rem 0.75rem;
    }

    .order-info-section {
        padding: 1.5rem 0.75rem;
    }

    .order-search-title {
        font-size: 1.25rem;
    }

    .order-section-title {
        font-size: 1.25rem;
    }

    .order-table {
        font-size: 0.8rem;
    }

    .order-action-btn {
        display: block;
        width: 100%;
        margin: 0.5rem 0;
    }
}

/* ===== SEPETIM SAYFASI STILLERI ===== */

/* Modern Empty Cart */
.modern-empty-cart {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    min-height: 60vh;
    display: flex;
    align-items: center;
}

.empty-cart-content {
    text-align: center;
    max-width: 500px;
    margin: 0 auto;
    padding: 2rem;
}

.empty-cart-icon {
    font-size: 4rem;
    color: #6c757d;
    margin-bottom: 1.5rem;
}

.empty-cart-title {
    font-size: 2rem;
    font-weight: 600;
    color: #343a40;
    margin-bottom: 1rem;
}

.empty-cart-description {
    font-size: 1.1rem;
    color: #6c757d;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.empty-cart-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Modern Cart Page */
.modern-cart-page {
    padding: 2rem 0;
    background: #f8f9fa;
    min-height: 80vh;
}

.page-header {
    background: white;
    padding: 2rem 0;
    margin-bottom: 2rem;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

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

.page-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #343a40;
    margin-bottom: 0.5rem;
}

.page-meta {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.cart-count {
    font-size: 1.1rem;
    font-weight: 600;
    color: #007bff;
    background: #e3f2fd;
    padding: 0.5rem 1rem;
    border-radius: 20px;
}

.cart-description {
    color: #6c757d;
    font-size: 1rem;
}

/* Cart Content */
.cart-content {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 2rem;
    align-items: start;
}

/* Cart Items Section */
.cart-items-section {
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.cart-items-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    border-bottom: 1px solid #e9ecef;
    background: #f8f9fa;
}

.cart-items-header h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #343a40;
    margin: 0;
}

.btn-clear-cart {
    font-size: 0.9rem;
    padding: 0.5rem 1rem;
}

.cart-items {
    padding: 0;
}

/* Cart Item */
.cart-item {
    display: grid;
    grid-template-columns: 120px 1fr auto auto auto;
    gap: 1.5rem;
    align-items: center;
    padding: 1.5rem;
    border-bottom: 1px solid #e9ecef;
    transition: background-color 0.3s ease;
}

.cart-item:hover {
    background-color: #f8f9fa;
}

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

.item-image {
    width: 120px;
    height: 120px;
    border-radius: 8px;
    overflow: hidden;
    background: #f8f9fa;
}

.product-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.cart-item:hover .product-img {
    transform: scale(1.05);
}

.item-details {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.item-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
}

.item-title a {
    color: #343a40;
    text-decoration: none;
    transition: color 0.3s ease;
}

.item-title a:hover {
    color: #007bff;
}

.item-meta {
    display: flex;
    gap: 1rem;
    font-size: 0.9rem;
    color: #6c757d;
}

.item-sku {
    background: #e9ecef;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
}

.item-vat {
    color: #28a745;
    font-weight: 500;
}

.item-price {
    font-size: 1.2rem;
    font-weight: 600;
    color: #007bff;
}

/* Quantity Controls */
.item-quantity {
    display: flex;
    justify-content: center;
}

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

.quantity-btn {
    background: #f8f9fa;
    border: none;
    padding: 0.75rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
    color: #6c757d;
}

.quantity-btn:hover {
    background: #e9ecef;
    color: #343a40;
}

.quantity-btn:active {
    background: #dee2e6;
}

.quantity-input {
    width: 60px;
    text-align: center;
    border: none;
    padding: 0.75rem;
    font-size: 1rem;
    font-weight: 500;
    background: white;
}

.quantity-input:focus {
    outline: none;
    background: #f8f9fa;
}

.item-total {
    text-align: center;
    font-size: 1.2rem;
    font-weight: 600;
    color: #28a745;
}

.item-actions {
    display: flex;
    justify-content: center;
}

.btn-remove {
    background: #dc3545;
    color: white;
    border: none;
    padding: 0.75rem;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-remove:hover {
    background: #c82333;
}

/* Cart Summary */
.cart-summary {
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 2rem;
}

.summary-header {
    padding: 1.5rem;
    border-bottom: 1px solid #e9ecef;
    background: #f8f9fa;
}

.summary-header h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #343a40;
    margin: 0;
}

.summary-content {
    padding: 1.5rem;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid #f1f3f4;
}

.summary-row:last-child {
    border-bottom: none;
}

.summary-row.total {
    border-top: 2px solid #dee2e6;
    border-bottom: none;
    padding-top: 1rem;
    margin-top: 0.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    color: #28a745;
}

.summary-label {
    color: #6c757d;
    font-weight: 500;
}

.summary-value {
    font-weight: 600;
    color: #343a40;
}

.summary-row.total .summary-value {
    color: #28a745;
    font-size: 1.2rem;
}

.summary-actions {
    padding: 1.5rem;
    border-top: 1px solid #e9ecef;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.btn-continue-shopping {
    text-align: center;
    padding: 1rem;
}

.btn-checkout {
    text-align: center;
    padding: 1rem;
    font-size: 1.1rem;
    font-weight: 600;
}

/* Responsive Design */
@media (max-width: 992px) {
    .cart-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .cart-summary {
        position: static;
        order: -1;
    }
}

@media (max-width: 768px) {
    .modern-cart-page {
        padding: 1rem 0;
    }

    .page-header {
        padding: 1.5rem 0;
        margin-bottom: 1.5rem;
    }

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

    .cart-item {
        grid-template-columns: 1fr;
        gap: 1rem;
        text-align: center;
    }

    .item-image {
        width: 100px;
        height: 100px;
        margin: 0 auto;
    }

    .item-details {
        order: 1;
    }

    .item-quantity {
        order: 2;
    }

    .item-total {
        order: 3;
    }

    .item-actions {
        order: 4;
    }

    .cart-items-header {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .empty-cart-actions {
        flex-direction: column;
        align-items: center;
    }

    .empty-cart-actions .btn {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .page-title {
        font-size: 1.5rem;
    }

    .cart-item {
        padding: 1rem;
    }

    .summary-actions {
        padding: 1rem;
    }

    .btn-continue-shopping,
    .btn-checkout {
        padding: 0.875rem;
        font-size: 1rem;
    }
}

/* ===== ÜRÜNLER SAYFASI STILLERI ===== */

/* Modern Products Page */
.modern-products-page {
    padding: 2rem 0;
    background: #f8f9fa;
    min-height: 80vh;
}

/* Main Content Layout - Sadece ürünler sayfasi için */
.modern-products-page .main-content {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 2rem;
    align-items: start;
}

/* Sidebar - Sadece ürünler sayfasi için */
.modern-products-page .sidebar {
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 1.5rem;
    position: sticky;
    top: 2rem;
    height: fit-content;
}

/* Products Section - Sadece ürünler sayfasi için */
.modern-products-page .products-section {
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

/* Products Grid - Sadece ürünler sayfasi için */
.modern-products-page .products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
    padding: 1.5rem;
}

/* Product Card - Sadece ürünler sayfasi için */
.modern-products-page .product-card {
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    border-color: #007bff;
}

/* Product Image */
.product-image {
    position: relative;
    height: 200px;
    overflow: hidden;
    background: #f8f9fa;
}

.image-link {
    display: block;
    width: 100%;
    height: 100%;
    text-decoration: none;
}

.product-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

/* Image Overlay */
.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 123, 255, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-card:hover .image-overlay {
    opacity: 1;
}

.overlay-content {
    text-align: center;
    color: white;
    font-weight: 600;
}

.overlay-content i {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    display: block;
}

.overlay-content span {
    font-size: 1rem;
}

/* Product Info */
.product-info {
    padding: 1.5rem;
}

.product-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0 0 0.75rem 0;
    line-height: 1.4;
}

.product-title a {
    color: #343a40;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.product-description {
    color: #6c757d;
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0 0 1rem 0;
}

/* Product Meta */
.product-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 0.8rem;
    color: #6c757d;
}

.category-id,
.category-order {
    background: #e9ecef;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-weight: 500;
}

/* Product Actions */
.product-actions {
    display: flex;
    gap: 0.5rem;
}

.btn-view {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    font-size: 0.9rem;
    font-weight: 500;
    text-decoration: none;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.btn-view:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 123, 255, 0.3);
}

/* No Products */
.no-products {
    padding: 4rem 2rem;
    text-align: center;
}

.no-products-content {
    max-width: 400px;
    margin: 0 auto;
}

.no-products-content i {
    font-size: 4rem;
    color: #6c757d;
    margin-bottom: 1.5rem;
}

.no-products-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #343a40;
    margin-bottom: 1rem;
}

.no-products-content p {
    color: #6c757d;
    margin-bottom: 2rem;
    line-height: 1.6;
}

/* Category Count Badge */
.category-count {
    font-size: 1rem;
    font-weight: 600;
    color: #007bff;
    background: #e3f2fd;
    padding: 0.5rem 1rem;
    border-radius: 20px;
}

.category-description {
    color: #6c757d;
    font-size: 1rem;
    line-height: 1.5;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .modern-products-page .main-content {
        grid-template-columns: 250px 1fr;
        gap: 1.5rem;
    }

    .modern-products-page .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
        gap: 1.25rem;
    }
}

@media (max-width: 992px) {
    .modern-products-page .main-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .modern-products-page .sidebar {
        position: static;
        order: -1;
    }

    .modern-products-page .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 1rem;
    }
}

@media (max-width: 768px) {
    .modern-products-page {
        padding: 1rem 0;
    }

    .page-header {
        padding: 1.5rem 0;
        margin-bottom: 1.5rem;
    }

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

    .modern-products-page .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
        gap: 1rem;
        padding: 1rem;
    }

    .modern-products-page .product-image {
        height: 180px;
    }

    .modern-products-page .product-info {
        padding: 1rem;
    }

    .modern-products-page .product-title {
        font-size: 1.1rem;
    }

    .modern-products-page .product-meta {
        flex-direction: column;
        gap: 0.5rem;
    }

    .modern-products-page .no-products {
        padding: 3rem 1rem;
    }

    .modern-products-page .no-products-content h3 {
        font-size: 1.3rem;
    }
}

@media (max-width: 480px) {
    .page-title {
        font-size: 1.5rem;
    }

    .modern-products-page .products-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 0.75rem;
    }

    .modern-products-page .product-image {
        height: 160px;
    }

    .modern-products-page .product-info {
        padding: 0.875rem;
    }

    .modern-products-page .product-title {
        font-size: 1rem;
    }

    .modern-products-page .product-description {
        font-size: 0.85rem;
    }

    .modern-products-page .btn-view {
        padding: 0.625rem 0.875rem;
        font-size: 0.85rem;
    }

    .modern-products-page .no-products {
        padding: 2rem 0.75rem;
    }

    .modern-products-page .no-products-content i {
        font-size: 3rem;
    }

    .modern-products-page .no-products-content h3 {
        font-size: 1.2rem;
    }
}