/* DigitalShop - Elegant Premium Design */

/* ===== CSS Variables ===== */
:root {
    /* Primary Colors - Elegant Purple/Indigo */
    --primary: #6366f1;
    --primary-light: #818cf8;
    --primary-dark: #4f46e5;
    --primary-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    
    /* Secondary Colors */
    --secondary: #64748b;
    --secondary-light: #94a3b8;
    
    /* Accent Colors */
    --accent: #f59e0b;
    --accent-light: #fbbf24;
    
    /* Status Colors */
    --success: #10b981;
    --success-light: #34d399;
    --danger: #ef4444;
    --danger-light: #f87171;
    --warning: #f59e0b;
    --info: #3b82f6;
    
    /* Neutral Colors */
    --dark: #0f172a;
    --dark-light: #1e293b;
    --gray-900: #111827;
    --gray-800: #1f2937;
    --gray-700: #374151;
    --gray-600: #4b5563;
    --gray-500: #6b7280;
    --gray-400: #9ca3af;
    --gray-300: #d1d5db;
    --gray-200: #e5e7eb;
    --gray-100: #f3f4f6;
    --gray-50: #f9fafb;
    --white: #ffffff;
    
    /* Typography */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-display: 'Inter', var(--font-primary);
    
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
    --shadow-2xl: 0 25px 50px -12px rgb(0 0 0 / 0.25);
    --shadow-glow: 0 0 40px rgba(99, 102, 241, 0.15);
    
    /* Border Radius */
    --radius-sm: 0.375rem;
    --radius: 0.5rem;
    --radius-md: 0.75rem;
    --radius-lg: 1rem;
    --radius-xl: 1.5rem;
    --radius-2xl: 2rem;
    --radius-full: 9999px;
    
    /* Transitions */
    --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition: 300ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 500ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: 500ms cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

/* ===== Base Styles ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    background-color: var(--gray-50);
    color: var(--gray-700);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ===== Typography ===== */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 700;
    color: var(--gray-900);
    line-height: 1.3;
}

a {
    color: var(--primary);
    text-decoration: none;
    transition: color var(--transition-fast);
}

a:hover {
    color: var(--primary-dark);
}

/* ===== Navbar ===== */
.header {
    position: sticky;
    top: 0;
    z-index: 1100;
    background: #fff;
}

.navbar {
    background: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--gray-200);
    padding: 0.75rem 0;
    transition: all var(--transition);
}

.navbar .dropdown-menu {
    z-index: 1200;
    position: absolute;
}

.navbar.scrolled {
    box-shadow: var(--shadow-md);
}

.navbar-brand {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1.5rem;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.navbar-brand img {
    height: 40px;
}

.nav-link {
    font-weight: 500;
    color: var(--gray-600) !important;
    padding: 0.5rem 1rem !important;
    border-radius: var(--radius);
    transition: all var(--transition-fast);
    position: relative;
}

.nav-link:hover {
    color: var(--primary) !important;
    background: var(--gray-100);
}

.nav-link.active {
    color: var(--primary) !important;
}

/* Search Box */
.search-box {
    position: relative;
    max-width: 400px;
}

.search-box input {
    padding: 0.625rem 1rem 0.625rem 2.75rem;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-full);
    background: var(--gray-50);
    transition: all var(--transition-fast);
    width: 100%;
}

.search-box input:focus {
    border-color: var(--primary);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.1);
    outline: none;
}

.search-box i {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--gray-400);
}

/* Cart Icon */
.cart-icon {
    position: relative;
    padding: 0.5rem;
}

.cart-badge {
    position: absolute;
    top: 0;
    right: 0;
    background: var(--danger);
    color: white;
    font-size: 0.65rem;
    font-weight: 600;
    padding: 0.15rem 0.4rem;
    border-radius: var(--radius-full);
    min-width: 18px;
    text-align: center;
}

/* ===== Hero Section ===== */
.hero-section {
    background: var(--primary-gradient);
    position: relative;
    overflow: hidden;
    padding: 6rem 0;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hero-section::after {
    content: '';
    position: absolute;
    bottom: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.hero-content {
    position: relative;
    z-index: 1;
}

/* ===== Full Screen Hero Slider ===== */
.hero-fullscreen-slider {
    margin-top: 0;
    position: relative;
}

.hero-slide-fullscreen {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.4) 100%);
    z-index: 0;
}

.hero-content-animate {
    animation: slideInLeft 0.8s ease-out;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.text-shadow {
    text-shadow: 2px 2px 10px rgba(0,0,0,0.3);
}

.hero-price {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    padding: 1rem 2rem;
    border-radius: 1rem;
    display: inline-block;
}

.hero-product-showcase {
    position: relative;
    perspective: 1000px;
}

.hero-product-image {
    max-height: 500px;
    object-fit: cover;
    transition: transform 0.5s ease;
    box-shadow: 0 30px 60px rgba(0,0,0,0.3);
}

.hero-product-showcase:hover .hero-product-image {
    transform: rotateY(-5deg) rotateX(5deg) scale(1.02);
}

/* Hero slider arrows completely hidden */
#heroSlider .carousel-control-prev,
#heroSlider .carousel-control-next {
    display: none !important;
}

#heroSlider .carousel-indicators {
    bottom: 40px;
}

#heroSlider .carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,0.5);
    background: transparent;
    margin: 0 8px;
    transition: all var(--transition);
}

#heroSlider .carousel-indicators button.active {
    background: white;
    border-color: white;
    transform: scale(1.2);
}

.z-1 {
    z-index: 1;
}

/* Stats Counter Section */
.stats-counter-section {
    background: linear-gradient(180deg, var(--gray-50) 0%, var(--white) 100%);
    border-bottom: 1px solid var(--gray-200);
}

.stats-counter-item {
    padding: 2rem 1rem;
    border-radius: var(--radius-xl);
    transition: all var(--transition);
}

.stats-counter-item:hover {
    background: var(--white);
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
}

.stats-icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    background: var(--gray-100);
    border-radius: 50%;
    transition: all var(--transition);
}

.stats-counter-item:hover .stats-icon {
    background: var(--primary);
}

.stats-counter-item:hover .stats-icon i {
    color: white !important;
}

.stats-number {
    font-family: var(--font-display);
}

/* Old Hero Slider Section (kept for backward compatibility) */
.hero-slider-section {
    margin-top: 0;
}

.hero-slide {
    min-height: 450px;
    display: flex;
    align-items: center;
    padding: 3rem 0;
}

.hero-slide h1 {
    font-size: 2.75rem;
    font-weight: 800;
    color: white;
    margin-bottom: 1rem;
    text-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.hero-slide p {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.9);
}

#heroSlider .carousel-control-prev,
#heroSlider .carousel-control-next {
    width: 50px;
    height: 50px;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    margin: 0 1rem;
    opacity: 0;
    transition: opacity var(--transition);
}

#heroSlider:hover .carousel-control-prev,
#heroSlider:hover .carousel-control-next {
    opacity: 1;
}

#heroSlider .carousel-indicators {
    bottom: 20px;
}

#heroSlider .carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,0.5);
    background: transparent;
    margin: 0 5px;
}

#heroSlider .carousel-indicators button.active {
    background: white;
    border-color: white;
}

/* Search Section */
.search-section {
    position: relative;
    z-index: 10;
}

.hero-search-form .form-control {
    border-radius: 0;
    border: 2px solid var(--gray-200);
    padding: 0.875rem 1rem;
}

.hero-search-form .form-control:focus {
    border-color: var(--primary);
    box-shadow: none;
}

.hero-search-form .input-group-text {
    border: 2px solid var(--gray-200);
    border-right: none;
}

.hero-search-form .input-group-text,
.hero-search-form .form-control,
.hero-search-form .btn {
    border-radius: 0;
}

.hero-search-form .input-group > :first-child {
    border-radius: var(--radius-lg) 0 0 var(--radius-lg);
}

.hero-search-form .input-group > :last-child {
    border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
}

/* Old Hero Section (kept for backward compatibility) */
.hero-section {
    background: var(--primary-gradient);
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
}

.hero-section h1 {
    font-size: 3.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.hero-section p {
    font-size: 1.25rem;
    color: rgba(255,255,255,0.9);
    margin-bottom: 2rem;
}

.hero-search {
    max-width: 600px;
    margin: 0 auto;
}

.hero-search .form-control {
    padding: 1.25rem 1.5rem;
    font-size: 1.1rem;
    border: none;
    border-radius: var(--radius-lg) 0 0 var(--radius-lg);
    box-shadow: var(--shadow-xl);
}

.hero-search .btn {
    padding: 1.25rem 2rem;
    border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
    font-weight: 600;
}

/* ===== Section Titles ===== */
.section-title {
    text-align: center;
    margin-bottom: 3rem;
}

/* Features Banner */
.features-banner {
    border-bottom: 1px solid var(--gray-200);
}

.feature-box {
    background: white;
    border-radius: var(--radius-lg);
    transition: all var(--transition);
}

.feature-box:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.feature-box .feature-icon {
    flex-shrink: 0;
}

.feature-box h6 {
    font-size: 0.9rem;
}

.feature-box small {
    font-size: 0.75rem;
    display: block;
    line-height: 1.3;
}

@media (max-width: 767px) {
    .feature-box {
        flex-direction: column !important;
        text-align: center !important;
    }
    .feature-box .text-start {
        text-align: center !important;
    }
}

.section-title h2 {
    font-size: 2.25rem;
    font-weight: 800;
    margin-bottom: 0.75rem;
    position: relative;
    display: inline-block;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--primary-gradient);
    border-radius: var(--radius-full);
}

.section-title p {
    color: var(--gray-500);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 1rem auto 0;
}

/* ===== Category Cards ===== */
.category-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 2rem;
    text-align: center;
    box-shadow: var(--shadow);
    transition: all var(--transition);
    border: 1px solid var(--gray-100);
    text-decoration: none;
    display: block;
}

.category-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-light);
}

.category-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.25rem;
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary) 100%);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    transition: all var(--transition);
}

.category-card:hover .category-icon {
    transform: scale(1.1) rotate(5deg);
}

.category-card h5 {
    font-weight: 700;
    color: var(--gray-800);
    margin-bottom: 0.5rem;
}

.category-card span {
    color: var(--gray-500);
    font-size: 0.875rem;
}

/* ===== Product Cards ===== */
.product-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all var(--transition);
    border: 1px solid var(--gray-100);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl), var(--shadow-glow);
}

.product-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4/3;
}

.product-image img,
.product-card .card-img-top {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.product-card:hover .product-image img,
.product-card:hover .card-img-top {
    transform: scale(1.08);
}

.product-badges {
    position: absolute;
    top: 1rem;
    left: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.badge-featured {
    background: var(--accent);
    color: white;
    padding: 0.35rem 0.75rem;
    border-radius: var(--radius-full);
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.badge-sale {
    background: var(--danger);
}

.product-actions {
    position: absolute;
    top: 1rem;
    right: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    opacity: 0;
    transform: translateX(10px);
    transition: all var(--transition);
}

.product-card:hover .product-actions {
    opacity: 1;
    transform: translateX(0);
}

.action-btn {
    width: 40px;
    height: 40px;
    background: var(--white);
    border: none;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-fast);
    color: var(--gray-600);
}

.action-btn:hover {
    background: var(--primary);
    color: white;
    transform: scale(1.1);
}

.action-btn.favorited {
    background: var(--danger);
    color: white;
}

.product-content,
.product-card .card-body {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.product-category {
    font-size: 0.75rem;
    color: var(--primary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.5rem;
}

.product-title,
.product-card .card-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--gray-800);
    margin-bottom: 0.75rem;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-title a,
.product-card .card-title a {
    color: inherit;
    text-decoration: none;
}

.product-title a:hover,
.product-card .card-title a:hover {
    color: var(--primary);
}

.product-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 0.875rem;
}

.product-rating,
.rating {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.product-rating i,
.rating i {
    color: var(--accent);
    font-size: 0.75rem;
}

.product-rating span,
.rating span {
    color: var(--gray-500);
    margin-left: 0.25rem;
}

.product-sales {
    color: var(--gray-500);
}

.product-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
    padding-top: 1rem;
    border-top: 1px solid var(--gray-100);
}

.product-price,
.price {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
}

.price-current {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary);
}

.price-old {
    font-size: 0.875rem;
    color: var(--gray-400);
    text-decoration: line-through;
}

.btn-cart {
    width: 42px;
    height: 42px;
    background: var(--primary);
    border: none;
    border-radius: var(--radius);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.btn-cart:hover {
    background: var(--primary-dark);
    transform: scale(1.05);
}

/* ===== Featured Products Slider ===== */
.featured-section {
    background: linear-gradient(180deg, var(--gray-50) 0%, var(--white) 100%);
    padding: 5rem 0;
}

/* ===== Stats Section ===== */
.stats-section {
    background: var(--primary-gradient);
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3z' fill='%23ffffff' fill-opacity='0.05' fill-rule='evenodd'/%3E%3C/svg%3E");
}

.stat-item {
    text-align: center;
    color: white;
    position: relative;
    z-index: 1;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    opacity: 0.9;
}

/* ===== CTA Section ===== */
.cta-section {
    background: var(--gray-900);
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.3) 0%, transparent 70%);
    border-radius: 50%;
}

.cta-content {
    position: relative;
    z-index: 1;
    text-align: center;
}

.cta-section h2 {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-section p {
    color: var(--gray-400);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

/* ===== Footer ===== */
.footer {
    background: var(--gray-900);
    padding: 4rem 0 0;
}

.footer-brand {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1.75rem;
    color: white;
    margin-bottom: 1rem;
}

.footer-description {
    color: var(--gray-400);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.footer-social {
    display: flex;
    gap: 0.75rem;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: var(--gray-800);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-400);
    transition: all var(--transition-fast);
}

.footer-social a:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-3px);
}

.footer h5,
.footer h6 {
    color: white;
    font-weight: 700;
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: var(--gray-400) !important;
    transition: all var(--transition-fast);
    display: inline-flex;
    align-items: center;
}

.footer-links a:hover {
    color: white !important;
    padding-left: 5px;
}

.footer a {
    color: var(--gray-400) !important;
}

.footer a:hover {
    color: white !important;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
    color: var(--gray-400);
}

.footer-contact i {
    color: var(--primary);
    margin-top: 0.25rem;
}

.footer-bottom {
    border-top: 1px solid var(--gray-800);
    padding: 1.5rem 0;
    margin-top: 3rem;
}

.footer-bottom p {
    color: var(--gray-500);
    margin: 0;
}

.footer .text-muted {
    color: var(--gray-500) !important;
}

.footer-payments {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.footer-payments img {
    height: 30px;
    opacity: 0.7;
    transition: opacity var(--transition-fast);
}

.footer-payments img:hover {
    opacity: 1;
}

/* ===== Buttons ===== */
.btn {
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius);
    transition: all var(--transition-fast);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    border: none;
}

.btn-primary {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}

.btn-primary:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-gradient {
    background: var(--primary-gradient);
    color: white;
    border: none;
}

.btn-gradient:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg), 0 10px 30px rgba(99, 102, 241, 0.3);
    color: white;
}

.btn-outline-primary {
    border: 2px solid var(--primary);
    color: var(--primary);
    background: transparent;
}

.btn-outline-primary:hover {
    background: var(--primary);
    color: white;
}

.btn-white {
    background: white;
    color: var(--gray-800);
}

.btn-white:hover {
    background: var(--gray-100);
    transform: translateY(-2px);
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

/* ===== Forms ===== */
.form-control {
    padding: 0.875rem 1rem;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius);
    transition: all var(--transition-fast);
    font-size: 0.95rem;
}

.form-control:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.1);
    outline: none;
}

.form-label {
    font-weight: 600;
    color: var(--gray-700);
    margin-bottom: 0.5rem;
}

.form-floating > .form-control {
    padding: 1.5rem 1rem 0.5rem;
}

.input-group-text {
    background-color: var(--gray-100);
    border: 2px solid var(--gray-200);
    border-right: none;
}

/* ===== Cards ===== */
.card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    transition: all var(--transition);
}

.card:hover {
    box-shadow: var(--shadow-lg);
}

.card-header {
    background: var(--gray-50);
    border-bottom: 1px solid var(--gray-200);
    padding: 1rem 1.5rem;
    font-weight: 600;
}

.card-body {
    padding: 1.5rem;
}

/* ===== Alerts ===== */
.alert {
    border: none;
    border-radius: var(--radius);
    padding: 1rem 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.alert-success {
    background: rgba(16, 185, 129, 0.1);
    color: var(--success);
}

.alert-danger {
    background: rgba(239, 68, 68, 0.1);
    color: var(--danger);
}

.alert-warning {
    background: rgba(245, 158, 11, 0.1);
    color: var(--warning);
}

.alert-info {
    background: rgba(59, 130, 246, 0.1);
    color: var(--info);
}

/* ===== Badges ===== */
.badge {
    padding: 0.35rem 0.75rem;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 0.75rem;
}

.badge-primary,
.bg-primary {
    background: var(--primary) !important;
}

.badge-success,
.bg-success {
    background: var(--success) !important;
}

.badge-danger,
.bg-danger {
    background: var(--danger) !important;
}

.badge-warning,
.bg-warning {
    background: var(--warning) !important;
}

/* ===== Tables ===== */
.table {
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.table thead {
    background: var(--gray-50);
}

.table thead th {
    font-weight: 600;
    color: var(--gray-600);
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 0.5px;
    padding: 1rem;
    border-bottom: 2px solid var(--gray-200);
}

.table tbody td {
    padding: 1rem;
    vertical-align: middle;
}

/* ===== Pagination ===== */
.pagination {
    gap: 0.25rem;
}

.page-link {
    border: none;
    padding: 0.5rem 0.875rem;
    border-radius: var(--radius);
    color: var(--gray-600);
    font-weight: 500;
    transition: all var(--transition-fast);
}

.page-link:hover {
    background: var(--gray-100);
    color: var(--primary);
}

.page-item.active .page-link {
    background: var(--primary);
    color: white;
}

/* ===== Dashboard Sidebar ===== */
.dashboard-sidebar {
    background: var(--white);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow);
    padding: 1.5rem;
    position: sticky;
    top: 100px;
}

.dashboard-sidebar .nav-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.875rem 1rem;
    color: var(--gray-600);
    border-radius: var(--radius);
    font-weight: 500;
    transition: all var(--transition-fast);
    margin-bottom: 0.25rem;
}

.dashboard-sidebar .nav-link i {
    width: 20px;
    text-align: center;
}

.dashboard-sidebar .nav-link:hover {
    background: var(--gray-100);
    color: var(--primary);
}

.dashboard-sidebar .nav-link.active {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
}

/* ===== Admin Sidebar ===== */
.admin-sidebar {
    width: 260px;
    min-height: 100vh;
    background: var(--gray-900);
    position: fixed;
    left: 0;
    top: 0;
    padding: 1.5rem;
    z-index: 1000;
}

.admin-sidebar .brand {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1.5rem;
    color: white;
    margin-bottom: 2rem;
    display: block;
}

.admin-sidebar .nav-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.875rem 1rem;
    color: var(--gray-400);
    border-radius: var(--radius);
    font-weight: 500;
    transition: all var(--transition-fast);
    margin-bottom: 0.25rem;
}

.admin-sidebar .nav-link:hover {
    background: var(--gray-800);
    color: white;
}

.admin-sidebar .nav-link.active {
    background: var(--primary);
    color: white;
}

.admin-content {
    margin-left: 260px;
    padding: 2rem;
    min-height: 100vh;
    background: var(--gray-50);
}

/* ===== Stat Cards ===== */
.stat-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 1.5rem;
    box-shadow: var(--shadow);
    transition: all var(--transition);
}

.stat-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.stat-card .stat-icon {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.stat-card .stat-value {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--gray-900);
}

.stat-card .stat-label {
    color: var(--gray-500);
    font-size: 0.875rem;
}

.stat-card .stat-change {
    font-size: 0.75rem;
    font-weight: 600;
}

.stat-card .stat-change.positive {
    color: var(--success);
}

.stat-card .stat-change.negative {
    color: var(--danger);
}

/* ===== Breadcrumb ===== */
.breadcrumb {
    background: transparent;
    padding: 0;
    margin: 0;
}

.breadcrumb-item a {
    color: var(--gray-500);
}

.breadcrumb-item a:hover {
    color: var(--primary);
}

.breadcrumb-item.active {
    color: var(--gray-700);
}

/* ===== Dropdown ===== */
.dropdown-menu {
    border: none;
    box-shadow: var(--shadow-xl);
    border-radius: var(--radius-lg);
    padding: 0.5rem;
}

.dropdown-item {
    padding: 0.625rem 1rem;
    border-radius: var(--radius);
    font-weight: 500;
    transition: all var(--transition-fast);
}

.dropdown-item:hover {
    background: var(--gray-100);
    color: var(--primary);
}

/* Fix dropdown overflow in tables */
.dropdown-toggle-no-caret::after {
    display: none;
}

.table .dropdown-menu.show {
    position: fixed !important;
    z-index: 1070 !important;
}

/* ===== Modal ===== */
.modal-content {
    border: none;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-2xl);
}

.modal-header {
    border-bottom: 1px solid var(--gray-200);
    padding: 1.25rem 1.5rem;
}

.modal-body {
    padding: 1.5rem;
}

.modal-footer {
    border-top: 1px solid var(--gray-200);
    padding: 1rem 1.5rem;
}

/* ===== Tooltips ===== */
.tooltip-inner {
    background: var(--gray-900);
    padding: 0.5rem 0.75rem;
    border-radius: var(--radius);
    font-size: 0.8rem;
}

/* ===== Empty State ===== */
.empty-state {
    text-align: center;
    padding: 4rem 2rem;
}

.empty-state .icon {
    width: 100px;
    height: 100px;
    background: var(--gray-100);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2.5rem;
    color: var(--gray-400);
}

.empty-state h4 {
    margin-bottom: 0.5rem;
}

.empty-state p {
    color: var(--gray-500);
    margin-bottom: 1.5rem;
}

/* ===== Gallery ===== */
.gallery-thumb {
    cursor: pointer;
    opacity: 0.7;
    transition: var(--transition);
    object-fit: cover;
    border-radius: var(--radius);
}

.gallery-thumb:hover,
.gallery-thumb.active {
    opacity: 1;
    border: 2px solid var(--primary);
}

/* ===== File Upload ===== */
.file-upload {
    position: relative;
    border: 2px dashed var(--gray-300);
    border-radius: var(--radius-lg);
    padding: 2rem;
    text-align: center;
    cursor: pointer;
    transition: all var(--transition);
    background: var(--gray-50);
    overflow: hidden;
}

.file-upload:hover {
    border-color: var(--primary);
    background: rgba(99, 102, 241, 0.05);
}

.file-upload input {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    opacity: 0;
    cursor: pointer;
}

/* ===== Cart ===== */
.cart-item:last-child {
    border-bottom: none !important;
}

/* ===== Loading ===== */
.spinner-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(5px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.loading-spinner {
    width: 50px;
    height: 50px;
    border: 3px solid var(--gray-200);
    border-top-color: var(--primary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* ===== Scrollbar ===== */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: var(--gray-100);
}

::-webkit-scrollbar-thumb {
    background: var(--gray-300);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--gray-400);
}

/* ===== Animations ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.animate-fadeInUp {
    animation: fadeInUp 0.6s ease forwards;
}

.animate-fadeIn {
    animation: fadeIn 0.4s ease forwards;
}

/* ===== Responsive ===== */
@media (max-width: 991px) {
    .hero-section h1 {
        font-size: 2.5rem;
    }
    
    .admin-sidebar {
        width: 100%;
        position: relative;
        min-height: auto;
        padding: 1rem;
    }
    
    .admin-content {
        margin-left: 0;
    }
}

@media (max-width: 768px) {
    .hero-section {
        padding: 4rem 0;
        text-align: center;
    }
    
    .hero-section h1 {
        font-size: 2rem;
    }
    
    .section-title h2 {
        font-size: 1.75rem;
    }
    
    .product-image {
        aspect-ratio: 16/10;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .footer {
        text-align: center;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .product-card .card-img-top {
        height: 180px;
    }
}

/* ===== Utility Classes ===== */
.text-gradient {
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.bg-gradient {
    background: var(--primary-gradient);
}

.glass {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.hover-lift {
    transition: transform var(--transition);
}

.hover-lift:hover {
    transform: translateY(-5px);
}

/* Review Stars */
.review-stars {
    display: inline-flex;
    gap: 2px;
}

.review-stars i {
    color: var(--accent);
}

/* Rating Input (Star Selection) */
.rating-input {
    display: flex;
    gap: 8px;
}

.rating-input .star-btn {
    cursor: pointer;
    font-size: 1.75rem;
    color: #ccc !important;
    transition: color 0.2s ease;
}

.rating-input .star-btn:hover {
    color: #f59e0b !important;
}

.rating-input .star-btn.active {
    color: #f59e0b !important;
}

/* Price Tag */
.price-tag {
    background: var(--primary);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: var(--radius);
    font-weight: 600;
}

/* Checkout */
.checkout-step {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.checkout-step .step-number {
    width: 30px;
    height: 30px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    font-weight: 600;
}

/* Toast */
.toast-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 9999;
}

.toast {
    border: none;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
}

/* ===== Enhanced Professional Styles ===== */

/* Better Typography */
.display-font {
    font-family: var(--font-display);
    font-weight: 700;
}

.section-spacing {
    padding: 5rem 0;
}

.section-spacing-lg {
    padding: 7rem 0;
}

/* Enhanced Section Titles */
.section-title-modern {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title-modern h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--gray-900);
    margin-bottom: 1rem;
    font-family: var(--font-display);
}

.section-title-modern p {
    color: var(--gray-500);
    font-size: 1.125rem;
    max-width: 600px;
    margin: 0 auto;
}

.section-title-modern .title-decoration {
    width: 80px;
    height: 4px;
    background: var(--primary-gradient);
    border-radius: 2px;
    margin: 1rem auto 0;
}

/* Enhanced Cards */
.card-modern {
    border: none;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.card-modern:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-2xl);
}

/* Gradient Backgrounds */
.bg-gradient-primary {
    background: var(--primary-gradient);
}

.bg-gradient-success {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
}

.bg-gradient-info {
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
}

.bg-gradient-warning {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
}

.bg-gradient-dark {
    background: linear-gradient(135deg, #1f2937 0%, #111827 100%);
}

/* Animated Buttons */
.btn-animated {
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-animated::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;
    z-index: -1;
}

.btn-animated:hover::before {
    left: 100%;
}

/* Enhanced Rounded Pill */
.rounded-pill-xl {
    border-radius: 50px;
}

/* Glassmorphism Effect */
.glass-effect {
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.18);
}

/* Icon Boxes */
.icon-box {
    width: 80px;
    height: 80px;
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition);
}

.icon-box-sm {
    width: 50px;
    height: 50px;
}

.icon-box-lg {
    width: 100px;
    height: 100px;
}

/* Floating Animation */
@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.floating {
    animation: float 3s ease-in-out infinite;
}

/* Pulse Animation */
@keyframes pulse-soft {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.05);
        opacity: 0.8;
    }
}

.pulse-soft {
    animation: pulse-soft 2s ease-in-out infinite;
}

/* Scroll Reveal */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease-out;
}

.reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* Enhanced Product Hover Effects */
.product-card-enhanced {
    position: relative;
    overflow: hidden;
}

.product-card-enhanced::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(99, 102, 241, 0.1) 100%);
    opacity: 0;
    transition: opacity var(--transition);
    pointer-events: none;
    z-index: 1;
}

.product-card-enhanced:hover::before {
    opacity: 1;
}

/* Better Form Inputs */
.form-control-modern {
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 0.875rem 1.25rem;
    font-size: 1rem;
    transition: all var(--transition-fast);
}

.form-control-modern:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.1);
}

/* Enhanced Footer */
.footer-modern {
    background: linear-gradient(180deg, var(--gray-900) 0%, #0a0a0a 100%);
}

.footer-widget-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.75rem;
}

.footer-widget-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--primary);
    border-radius: 2px;
}

/* Dividers */
.divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gray-300), transparent);
    margin: 3rem 0;
}

.divider-vertical {
    width: 1px;
    height: 100%;
    background: linear-gradient(180deg, transparent, var(--gray-300), transparent);
}

/* Text Effects */
.text-highlight {
    background: linear-gradient(120deg, var(--primary-light) 0%, var(--primary-light) 100%);
    background-repeat: no-repeat;
    background-size: 100% 0.3em;
    background-position: 0 88%;
}

/* Loading Skeleton */
.skeleton {
    background: linear-gradient(90deg, var(--gray-200) 25%, var(--gray-100) 50%, var(--gray-200) 75%);
    background-size: 200% 100%;
    animation: skeleton-loading 1.5s infinite;
}

@keyframes skeleton-loading {
    0% {
        background-position: 200% 0;
    }
    100% {
        background-position: -200% 0;
    }
}

/* Counter Animation */
.counter-value {
    font-size: 3rem;
    font-weight: 800;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Badge Styles */
.badge-gradient {
    background: var(--primary-gradient);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: var(--radius-full);
    font-weight: 600;
}

.badge-outline {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
}

/* Enhanced Shadows */
.shadow-colored {
    box-shadow: 0 20px 40px rgba(99, 102, 241, 0.2);
}

.shadow-soft {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

/* Hide elements on specific pages */
.home-page .hero-fullscreen-slider + .search-section {
    display: none;
}

/* Responsive Typography */
@media (max-width: 767px) {
    .display-3 {
        font-size: 2rem;
    }
    
    .display-5 {
        font-size: 1.5rem;
    }
    
    .section-spacing {
        padding: 3rem 0;
    }
    
    .section-title-modern h2 {
        font-size: 1.75rem;
    }
    
    .hero-slide-fullscreen {
        min-height: 70vh;
    }
    
    .hero-content-animate h1 {
        font-size: 1.75rem;
    }
}

/* Print Styles */
@media print {
    .header, .footer, .btn, .no-print {
        display: none !important;
    }
    
    body {
        background: white;
    }
}

/* ===== Seller/Dashboard Panel Responsive ===== */

/* Overflow fix for mobile */
html, body {
    overflow-x: hidden;
    max-width: 100vw;
}

/* Seller Sidebar Mobile Toggle */
.seller-menu-toggle {
    display: none;
    position: fixed;
    bottom: 20px;
    left: 20px;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--success);
    color: white;
    border: none;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.4);
    z-index: 1050;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s;
}
.seller-menu-toggle:hover {
    background: #059669;
    transform: scale(1.05);
}
.seller-menu-toggle i {
    transition: transform 0.3s;
}
.seller-menu-toggle.active i {
    transform: rotate(90deg);
}

/* Dashboard Sidebar Overlay */
.dashboard-sidebar-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.5);
    z-index: 999;
}
.dashboard-sidebar-overlay.active {
    display: block;
}

/* Responsive Seller/Dashboard Panel */
@media (max-width: 991.98px) {
    /* Container tam genişlik */
    .container {
        padding-left: 12px;
        padding-right: 12px;
        max-width: 100%;
    }
    
    /* Dashboard Sidebar Mobile */
    .dashboard-sidebar {
        position: fixed;
        top: 0;
        left: 0;
        width: 280px;
        height: 100vh;
        max-height: 100vh;
        overflow-y: auto;
        border-radius: 0;
        z-index: 1000;
        transform: translateX(-100%);
        transition: transform 0.3s ease;
        padding-top: 2rem;
    }
    .dashboard-sidebar.show {
        transform: translateX(0);
    }
    
    /* Mobile Menu Toggle Button */
    .seller-menu-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    /* Seller Panel Grid düzəlişləri - sidebar gizlə */
    .col-lg-3.mb-4:has(.dashboard-sidebar) {
        position: absolute;
        width: 0;
        padding: 0;
        margin: 0 !important;
        overflow: hidden;
    }
    
    /* Main content tam genişlik */
    .col-lg-9 {
        flex: 0 0 100%;
        max-width: 100%;
        width: 100%;
    }
    
    /* Stat Cards Grid */
    .row.g-4 > .col-md-3,
    .row.g-3 > .col-md-3,
    .row.g-4 > .col-6.col-md-3,
    .row.g-3 > .col-6.col-md-3 {
        flex: 0 0 50%;
        max-width: 50%;
    }
    
    /* Card düzəlişləri */
    .card {
        border-radius: 10px;
    }
    .card-body {
        padding: 1rem;
    }
}

@media (max-width: 767.98px) {
    /* Container tam genişlik */
    .container {
        padding-left: 10px;
        padding-right: 10px;
        max-width: 100%;
    }
    
    /* Daha kiçik stat cards */
    .row.g-4 > .col-md-3,
    .row.g-3 > .col-md-3 {
        flex: 0 0 50%;
        max-width: 50%;
    }
    
    .stat-card {
        padding: 0.85rem;
    }
    .stat-card .stat-value {
        font-size: 1.2rem;
    }
    .stat-card .stat-icon {
        width: 36px;
        height: 36px;
        font-size: 0.95rem;
    }
    
    /* Card header responsive */
    .card-header.d-flex {
        flex-direction: column;
        gap: 8px;
        align-items: flex-start !important;
    }
    .card-header .btn {
        width: 100%;
    }
    
    /* Table responsive */
    .table-responsive {
        font-size: 0.82rem;
    }
    .table td, .table th {
        padding: 0.45rem 0.35rem;
        white-space: nowrap;
    }
    .table .btn-sm {
        padding: 0.2rem 0.4rem;
        font-size: 0.72rem;
    }
    
    /* Form Controls */
    .form-control, .form-select {
        font-size: 0.88rem;
    }
    
    /* Input Group responsive - overflow fix */
    .input-group .input-group-text {
        font-size: 0.75rem;
        padding: 0.35rem 0.5rem;
        max-width: 40%;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    
    /* Modal responsive */
    .modal-dialog {
        margin: 0.5rem;
        max-width: calc(100% - 1rem);
    }
    .modal-body {
        padding: 0.85rem;
    }
    
    /* List Group */
    .list-group-item {
        padding: 0.65rem;
    }
    
    /* Badge düzəlişləri */
    .badge {
        font-size: 0.68rem;
        padding: 0.25em 0.45em;
    }
    
    /* Row gutter */
    .row {
        --bs-gutter-x: 0.75rem;
    }
    .row.g-3, .row.g-4 {
        --bs-gutter-x: 0.75rem;
        --bs-gutter-y: 0.75rem;
    }
    
    /* Padding düzəlişləri */
    .py-5, .py-md-5 {
        padding-top: 1.25rem !important;
        padding-bottom: 1.25rem !important;
    }
    .p-4 {
        padding: 0.85rem !important;
    }
}

@media (max-width: 575.98px) {
    /* Container tam genişlik */
    .container {
        padding-left: 8px;
        padding-right: 8px;
        max-width: 100%;
    }
    
    .container-fluid {
        padding-left: 8px;
        padding-right: 8px;
    }
    
    .py-5 {
        padding-top: 1rem !important;
        padding-bottom: 1rem !important;
    }
    
    .py-4 {
        padding-top: 0.75rem !important;
        padding-bottom: 0.75rem !important;
    }
    
    /* Row gütter düzəlişi */
    .row {
        --bs-gutter-x: 0.5rem;
    }
    .row.g-3, .row.g-4 {
        --bs-gutter-x: 0.5rem;
        --bs-gutter-y: 0.5rem;
    }
    
    /* Heading sizes */
    h2 {
        font-size: 1.3rem;
    }
    h4 {
        font-size: 1.1rem;
    }
    h5 {
        font-size: 0.95rem;
    }
    
    /* Button group responsive */
    .btn-group {
        flex-direction: column;
        width: 100%;
    }
    .btn-group .btn {
        width: 100%;
        border-radius: var(--radius) !important;
        margin-bottom: 5px;
    }
    
    /* Alert düzəlişləri */
    .alert {
        padding: 0.6rem;
        font-size: 0.85rem;
    }
    
    /* Card düzəlişləri */
    .card {
        border-radius: 8px;
    }
    .card-body {
        padding: 0.75rem;
    }
    .card-header {
        padding: 0.6rem 0.75rem;
    }
    
    /* Pagination responsive */
    .pagination {
        flex-wrap: wrap;
        gap: 3px;
    }
    .page-link {
        padding: 0.3rem 0.5rem;
        font-size: 0.8rem;
    }
    
    /* Dashboard sidebar col gizlə */
    .col-lg-3.mb-4:has(.dashboard-sidebar) {
        display: none;
    }
    
    /* Stat card düzəlişləri */
    .stat-card {
        padding: 0.75rem;
    }
    .stat-card .stat-value {
        font-size: 1.1rem;
    }
    .stat-card .stat-icon {
        width: 32px;
        height: 32px;
        font-size: 0.9rem;
    }
    .stat-card .stat-label {
        font-size: 0.75rem;
    }
    
    /* Table düzəlişləri */
    .table-responsive {
        margin-left: -8px;
        margin-right: -8px;
        padding-left: 8px;
        padding-right: 8px;
        width: calc(100% + 16px);
    }
    
    /* Form düzəlişləri */
    .form-control, .form-select {
        font-size: 0.85rem;
        padding: 0.4rem 0.6rem;
    }
    
    /* Button düzəlişləri */
    .btn {
        padding: 0.4rem 0.75rem;
        font-size: 0.85rem;
    }
    .btn-sm {
        padding: 0.25rem 0.5rem;
        font-size: 0.75rem;
    }
    
    /* Input Group responsive - overflow fix */
    .input-group {
        flex-wrap: wrap;
    }
    .input-group .input-group-text {
        font-size: 0.7rem;
        padding: 0.35rem 0.5rem;
        white-space: normal;
        word-break: break-all;
        max-width: 100%;
        flex: 0 0 100%;
        border-radius: var(--radius) var(--radius) 0 0 !important;
    }
    .input-group .form-control {
        flex: 0 0 100%;
        border-radius: 0 0 var(--radius) var(--radius) !important;
    }
