/* ============================================
   متجري - تصميم عصاري واحترافي
   version: 2.0
   ============================================ */

/* ===== المتغيرات ===== */
:root {
    --primary: #6C63FF;
    --primary-dark: #5A52D5;
    --primary-light: #8B83FF;
    --primary-gradient: linear-gradient(135deg, #6C63FF 0%, #9D95FF 100%);
    
    --secondary: #FF6584;
    --secondary-light: #FF85A0;
    --secondary-gradient: linear-gradient(135deg, #FF6584 0%, #FF8A9E 100%);
    
    --accent: #00D2FF;
    --accent-gradient: linear-gradient(135deg, #00D2FF 0%, #3A7BD5 100%);
    
    --success: #00C9A7;
    --warning: #F9A826;
    --danger: #FF6B6B;
    
    --dark: #1A1A2E;
    --dark-secondary: #16213E;
    --dark-card: #1F2A4A;
    
    --gray-100: #F8F9FE;
    --gray-200: #EEF0F8;
    --gray-300: #DDE0EA;
    --gray-400: #B8BCC8;
    --gray-500: #8E93A5;
    --gray-600: #6B7082;
    --gray-700: #4A4F62;
    --gray-800: #2D3242;
    --gray-900: #1A1E2E;
    
    --shadow-sm: 0 2px 8px rgba(108, 99, 255, 0.08);
    --shadow-md: 0 8px 24px rgba(108, 99, 255, 0.12);
    --shadow-lg: 0 16px 48px rgba(108, 99, 255, 0.18);
    --shadow-xl: 0 32px 64px rgba(108, 99, 255, 0.25);
    --shadow-primary: 0 8px 32px rgba(108, 99, 255, 0.35);
    
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --radius-full: 9999px;
    
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    
    --font-ar: 'Cairo', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* ===== إعادة تعيين ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-ar);
    background: var(--gray-100);
    color: var(--gray-900);
    line-height: 1.6;
    padding-bottom: 85px;
    min-height: 100vh;
    direction: rtl;
}

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

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

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

/* ===== شاشة التحميل ===== */
.loader-overlay {
    position: fixed;
    inset: 0;
    background: var(--gray-100);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

.loader-overlay.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader-spinner {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    border: 4px solid var(--gray-300);
    border-top-color: var(--primary);
    animation: spin 0.8s linear infinite;
}

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

/* ===== الشريط العلوي ===== */
.top-nav {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(108, 99, 255, 0.08);
    padding: 12px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    min-height: 68px;
}

.top-nav .logo a {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
    font-size: 20px;
    color: var(--dark);
}

.top-nav .logo img {
    height: 40px;
    width: auto;
    border-radius: var(--radius-sm);
}

.top-nav .logo h1 {
    font-size: 20px;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.top-nav .actions {
    display: flex;
    align-items: center;
    gap: 6px;
}

.top-nav .actions a {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-700);
    font-size: 18px;
    transition: var(--transition);
    position: relative;
    background: transparent;
}

.top-nav .actions a:hover {
    background: var(--gray-200);
    color: var(--primary);
    transform: scale(1.05);
}

.top-nav .actions a:active {
    transform: scale(0.95);
}

.top-nav .actions .cart-badge {
    position: absolute;
    top: 2px;
    right: 2px;
    background: var(--secondary-gradient);
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    min-width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 4px;
    box-shadow: 0 2px 8px rgba(255, 101, 132, 0.4);
}

/* ===== الشريط السفلي ===== */
.bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-top: 1px solid rgba(108, 99, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: space-around;
    padding: 6px 8px 12px;
    padding-bottom: env(safe-area-inset-bottom, 12px);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.04);
}

.bottom-nav a {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2px;
    padding: 4px 12px;
    min-width: 56px;
    color: var(--gray-500);
    font-size: 10px;
    font-weight: 600;
    transition: var(--transition);
    position: relative;
    border-radius: var(--radius-md);
}

.bottom-nav a i {
    font-size: 22px;
    transition: var(--transition);
}

.bottom-nav a span {
    font-size: 10px;
    letter-spacing: 0.3px;
}

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

.bottom-nav a.active {
    color: var(--primary);
}

.bottom-nav a.active i {
    transform: translateY(-2px);
}

.bottom-nav a .badge {
    position: absolute;
    top: 0;
    right: 4px;
    background: var(--secondary-gradient);
    color: #fff;
    font-size: 9px;
    font-weight: 700;
    min-width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 4px;
    box-shadow: 0 2px 8px rgba(255, 101, 132, 0.4);
}

/* ===== البانر المتحرك ===== */
.hero-slider {
    position: relative;
    height: 400px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin: 16px 16px 24px;
    box-shadow: var(--shadow-lg);
}

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

.slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s ease, visibility 0.8s ease;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    padding: 40px 50px;
}

.slide::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.7) 0%, rgba(26, 26, 46, 0.3) 100%);
}

.slide.active {
    opacity: 1;
    visibility: visible;
}

.slide-content {
    position: relative;
    z-index: 2;
    color: #fff;
    max-width: 600px;
}

.slide-content h2 {
    font-size: 38px;
    font-weight: 800;
    margin-bottom: 12px;
    line-height: 1.2;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.slide-content p {
    font-size: 16px;
    opacity: 0.9;
    margin-bottom: 20px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.slide-content .btn {
    display: inline-block;
    padding: 14px 36px;
    background: var(--primary-gradient);
    color: #fff;
    border-radius: var(--radius-full);
    font-weight: 700;
    font-size: 15px;
    box-shadow: var(--shadow-primary);
    transition: var(--transition);
}

.slide-content .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(108, 99, 255, 0.5);
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 5;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #fff;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.slider-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-50%) scale(1.05);
}

.slider-btn.prev { left: 16px; }
.slider-btn.next { right: 16px; }

.slider-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
    display: flex;
    gap: 8px;
}

.slider-dots .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: var(--transition);
}

.slider-dots .dot.active {
    background: #fff;
    width: 30px;
    border-radius: 10px;
}

/* ===== الهيرو البديل ===== */
.hero {
    text-align: center;
    padding: 50px 20px;
    margin: 16px;
    border-radius: var(--radius-lg);
    background: var(--primary-gradient);
    color: #fff;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 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.3;
}

.hero h2 {
    font-size: 32px;
    font-weight: 800;
    position: relative;
    z-index: 1;
}

.hero p {
    font-size: 16px;
    opacity: 0.9;
    margin: 12px 0 24px;
    position: relative;
    z-index: 1;
}

.hero .btn {
    display: inline-block;
    padding: 14px 40px;
    background: #fff;
    color: var(--primary);
    border-radius: var(--radius-full);
    font-weight: 700;
    font-size: 15px;
    position: relative;
    z-index: 1;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
    transition: var(--transition);
}

.hero .btn:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
}

/* ===== رأس القسم ===== */
.section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
    margin: 28px 0 16px;
}

.section-header h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--dark);
    display: flex;
    align-items: center;
    gap: 8px;
}

.section-header h3 i {
    color: var(--primary);
    font-size: 22px;
}

.section-header a {
    font-size: 13px;
    font-weight: 600;
    color: var(--primary);
    padding: 6px 16px;
    border-radius: var(--radius-full);
    background: rgba(108, 99, 255, 0.1);
    transition: var(--transition);
}

.section-header a:hover {
    background: var(--primary);
    color: #fff;
}

/* ===== التصنيفات الدائرية ===== */
.categories-circle {
    display: flex;
    gap: 16px;
    padding: 0 20px 8px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.categories-circle::-webkit-scrollbar {
    display: none;
}

.category-circle-item {
    flex: 0 0 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    scroll-snap-align: start;
    transition: var(--transition);
}

.category-circle-item:hover {
    transform: translateY(-4px);
}

.category-circle-item .circle-image {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    overflow: hidden;
    background: var(--gray-200);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid transparent;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.category-circle-item:hover .circle-image {
    border-color: var(--primary);
    box-shadow: var(--shadow-md);
}

.category-circle-item .circle-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.category-circle-item .circle-image i {
    font-size: 28px;
    color: var(--gray-500);
}

.category-circle-item span {
    font-size: 12px;
    font-weight: 600;
    color: var(--gray-700);
    text-align: center;
    line-height: 1.3;
}

/* ===== شبكة المنتجات ===== */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 16px;
    padding: 0 20px;
}

.product-card {
    background: #fff;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    position: relative;
}

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

.product-card .image {
    position: relative;
    padding-top: 100%;
    background: var(--gray-200);
    overflow: hidden;
}

.product-card .image img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

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

.product-card .image .badge {
    position: absolute;
    z-index: 3;
    font-size: 10px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: var(--radius-full);
    color: #fff;
    letter-spacing: 0.5px;
}

.product-card .image .badge-featured {
    top: 10px;
    right: 10px;
    background: var(--warning);
    box-shadow: 0 4px 16px rgba(249, 168, 38, 0.4);
}

.product-card .image .badge-outofstock {
    top: 10px;
    left: 10px;
    background: var(--gray-500);
}

.product-card .image .badge-sale {
    top: 10px;
    right: 10px;
    background: var(--secondary-gradient);
    box-shadow: 0 4px 16px rgba(255, 101, 132, 0.4);
}

.product-card .name {
    padding: 12px 14px 4px;
    font-weight: 600;
    font-size: 14px;
    color: var(--gray-800);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 44px;
}

.product-card .price {
    padding: 0 14px 14px;
    font-size: 18px;
    font-weight: 800;
    color: var(--primary);
}

.product-card .price .old-price {
    font-size: 13px;
    font-weight: 500;
    color: var(--gray-400);
    text-decoration: line-through;
    margin-right: 8px;
}

.product-card .btn-add {
    width: calc(100% - 28px);
    margin: 0 14px 14px;
    padding: 10px;
    background: var(--primary-gradient);
    color: #fff;
    border-radius: var(--radius-full);
    font-weight: 700;
    font-size: 14px;
    transition: var(--transition);
    box-shadow: 0 4px 16px rgba(108, 99, 255, 0.3);
}

.product-card .btn-add:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(108, 99, 255, 0.4);
}

.product-card .btn-add:active {
    transform: scale(0.96);
}

.product-card .btn-add[disabled] {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none !important;
}

/* ===== صفحة المنتجات ===== */
.products-page .filters {
    padding: 16px 20px;
    display: flex;
    gap: 12px;
    overflow-x: auto;
    scrollbar-width: none;
}

.products-page .filters::-webkit-scrollbar {
    display: none;
}

.products-page .filters .filter-btn {
    padding: 8px 20px;
    border-radius: var(--radius-full);
    font-size: 13px;
    font-weight: 600;
    background: var(--gray-200);
    color: var(--gray-700);
    white-space: nowrap;
    transition: var(--transition);
}

.products-page .filters .filter-btn.active {
    background: var(--primary-gradient);
    color: #fff;
    box-shadow: var(--shadow-primary);
}

.products-page .filters .filter-btn:hover:not(.active) {
    background: var(--gray-300);
}

/* ===== صفحة المنتج ===== */
.product-detail {
    padding: 20px;
}

.product-detail .gallery {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: #fff;
    box-shadow: var(--shadow-sm);
}

.product-detail .gallery .main-image {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
}

.product-detail .gallery .thumbnails {
    display: flex;
    gap: 10px;
    padding: 12px;
    overflow-x: auto;
    scrollbar-width: none;
}

.product-detail .gallery .thumbnails::-webkit-scrollbar {
    display: none;
}

.product-detail .gallery .thumbnails img {
    width: 60px;
    height: 60px;
    border-radius: var(--radius-sm);
    object-fit: cover;
    cursor: pointer;
    border: 2px solid transparent;
    transition: var(--transition);
    flex-shrink: 0;
}

.product-detail .gallery .thumbnails img:hover,
.product-detail .gallery .thumbnails img.active {
    border-color: var(--primary);
}

.product-detail .info {
    padding: 20px 0;
}

.product-detail .info h1 {
    font-size: 24px;
    font-weight: 800;
    color: var(--dark);
}

.product-detail .info .price-detail {
    font-size: 28px;
    font-weight: 800;
    color: var(--primary);
    margin: 12px 0;
}

.product-detail .info .price-detail .old-price {
    font-size: 18px;
    color: var(--gray-400);
    text-decoration: line-through;
    margin-right: 12px;
}

.product-detail .info .description {
    color: var(--gray-600);
    line-height: 1.8;
    margin: 12px 0 20px;
}

.product-detail .info .quantity {
    display: flex;
    align-items: center;
    gap: 16px;
    margin: 16px 0;
}

.product-detail .info .quantity button {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--gray-200);
    font-size: 18px;
    font-weight: 700;
    color: var(--gray-700);
    transition: var(--transition);
}

.product-detail .info .quantity button:hover {
    background: var(--primary);
    color: #fff;
}

.product-detail .info .quantity span {
    font-size: 20px;
    font-weight: 700;
    min-width: 40px;
    text-align: center;
}

.product-detail .info .btn-add-cart {
    width: 100%;
    padding: 16px;
    background: var(--primary-gradient);
    color: #fff;
    border-radius: var(--radius-full);
    font-size: 17px;
    font-weight: 700;
    box-shadow: var(--shadow-primary);
    transition: var(--transition);
}

.product-detail .info .btn-add-cart:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(108, 99, 255, 0.5);
}

/* ===== صفحة السلة ===== */
.cart-page .cart-item {
    background: #fff;
    border-radius: var(--radius-md);
    padding: 16px;
    margin-bottom: 12px;
    box-shadow: var(--shadow-sm);
    display: flex;
    gap: 16px;
    align-items: center;
}

.cart-page .cart-item img {
    width: 80px;
    height: 80px;
    border-radius: var(--radius-sm);
    object-fit: cover;
    flex-shrink: 0;
}

.cart-page .cart-item .details {
    flex: 1;
}

.cart-page .cart-item .details .name {
    font-weight: 600;
    font-size: 15px;
}

.cart-page .cart-item .details .price {
    color: var(--primary);
    font-weight: 700;
    font-size: 16px;
}

.cart-page .cart-item .quantity-control {
    display: flex;
    align-items: center;
    gap: 8px;
}

.cart-page .cart-item .quantity-control button {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: var(--gray-200);
    font-weight: 700;
    transition: var(--transition);
}

.cart-page .cart-item .quantity-control button:hover {
    background: var(--primary);
    color: #fff;
}

.cart-page .cart-item .remove {
    color: var(--danger);
    font-size: 18px;
    padding: 8px;
    border-radius: 50%;
    transition: var(--transition);
}

.cart-page .cart-item .remove:hover {
    background: rgba(255, 107, 107, 0.1);
}

.cart-page .cart-total {
    background: #fff;
    border-radius: var(--radius-md);
    padding: 20px;
    box-shadow: var(--shadow-sm);
    margin: 16px 0;
}

.cart-page .cart-total .total-row {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    font-weight: 600;
}

.cart-page .cart-total .total-row.grand {
    font-size: 20px;
    border-top: 2px solid var(--gray-200);
    padding-top: 16px;
    margin-top: 8px;
    color: var(--primary);
}

.cart-page .btn-checkout {
    width: 100%;
    padding: 16px;
    background: var(--success);
    color: #fff;
    border-radius: var(--radius-full);
    font-size: 17px;
    font-weight: 700;
    box-shadow: 0 8px 32px rgba(0, 201, 167, 0.4);
    transition: var(--transition);
}

.cart-page .btn-checkout:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(0, 201, 167, 0.5);
}

/* ===== صفحة الحساب ===== */
.account-page .profile-card {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 30px 20px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    margin-bottom: 20px;
}

.account-page .profile-card .avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: var(--primary-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    color: #fff;
    margin: 0 auto 16px;
    box-shadow: 0 8px 32px rgba(108, 99, 255, 0.3);
}

.account-page .profile-card .name {
    font-size: 20px;
    font-weight: 700;
}

.account-page .profile-card .email {
    color: var(--gray-500);
    font-size: 14px;
}

.account-page .menu-list {
    background: #fff;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.account-page .menu-list a {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 20px;
    border-bottom: 1px solid var(--gray-200);
    transition: var(--transition);
    color: var(--gray-700);
}

.account-page .menu-list a:last-child {
    border-bottom: none;
}

.account-page .menu-list a:hover {
    background: var(--gray-100);
    color: var(--primary);
}

.account-page .menu-list a i {
    width: 24px;
    text-align: center;
    font-size: 18px;
}

.account-page .menu-list a .arrow {
    margin-right: auto;
    color: var(--gray-400);
}

/* ===== صفحة الدخول ===== */
.auth-page {
    min-height: calc(100vh - 140px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.auth-page .auth-card {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 40px 30px;
    max-width: 420px;
    width: 100%;
    box-shadow: var(--shadow-lg);
}

.auth-page .auth-card .logo-auth {
    text-align: center;
    margin-bottom: 30px;
}

.auth-page .auth-card .logo-auth i {
    font-size: 48px;
    color: var(--primary);
}

.auth-page .auth-card .logo-auth h2 {
    font-size: 24px;
    font-weight: 800;
    margin-top: 8px;
}

.auth-page .auth-card .form-group {
    margin-bottom: 18px;
}

.auth-page .auth-card .form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 6px;
    font-size: 14px;
    color: var(--gray-700);
}

.auth-page .auth-card .form-group input {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-sm);
    font-size: 15px;
    transition: var(--transition);
    background: var(--gray-100);
}

.auth-page .auth-card .form-group input:focus {
    border-color: var(--primary);
    background: #fff;
    box-shadow: 0 0 0 4px rgba(108, 99, 255, 0.1);
}

.auth-page .auth-card .btn-auth {
    width: 100%;
    padding: 14px;
    background: var(--primary-gradient);
    color: #fff;
    border-radius: var(--radius-full);
    font-size: 16px;
    font-weight: 700;
    box-shadow: var(--shadow-primary);
    transition: var(--transition);
}

.auth-page .auth-card .btn-auth:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(108, 99, 255, 0.5);
}

.auth-page .auth-card .auth-link {
    text-align: center;
    margin-top: 16px;
    color: var(--gray-500);
    font-size: 14px;
}

.auth-page .auth-card .auth-link a {
    color: var(--primary);
    font-weight: 600;
}

/* ===== إدارة الأدمن ===== */
.admin-page .stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 12px;
    padding: 0 20px;
}

.admin-page .stat-card {
    background: #fff;
    border-radius: var(--radius-md);
    padding: 18px 16px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

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

.admin-page .stat-card .number {
    font-size: 28px;
    font-weight: 800;
    color: var(--primary);
}

.admin-page .stat-card .label {
    font-size: 13px;
    color: var(--gray-500);
    margin-top: 4px;
}

/* ===== تنبيهات ===== */
.alert {
    padding: 14px 20px;
    border-radius: var(--radius-sm);
    margin: 12px 20px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 12px;
}

.alert-success {
    background: rgba(0, 201, 167, 0.12);
    color: var(--success);
    border-right: 4px solid var(--success);
}

.alert-danger {
    background: rgba(255, 107, 107, 0.12);
    color: var(--danger);
    border-right: 4px solid var(--danger);
}

.alert-warning {
    background: rgba(249, 168, 38, 0.12);
    color: var(--warning);
    border-right: 4px solid var(--warning);
}

.alert-info {
    background: rgba(0, 210, 255, 0.12);
    color: var(--accent);
    border-right: 4px solid var(--accent);
}

/* ===== بحث ===== */
.search-page .search-box {
    padding: 16px 20px;
}

.search-page .search-box input {
    width: 100%;
    padding: 14px 20px;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-full);
    font-size: 16px;
    background: #fff;
    transition: var(--transition);
}

.search-page .search-box input:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(108, 99, 255, 0.1);
}

/* ===== عدم وجود نتائج ===== */
.empty-state {
    text-align: center;
    padding: 60px 20px;
}

.empty-state i {
    font-size: 64px;
    color: var(--gray-300);
    margin-bottom: 16px;
}

.empty-state h3 {
    font-size: 20px;
    color: var(--gray-700);
}

.empty-state p {
    color: var(--gray-500);
}

/* ===== تحسينات الاستجابة ===== */
@media (min-width: 768px) {
    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        gap: 20px;
        padding: 0 24px;
    }
    
    .hero-slider {
        height: 500px;
        margin: 20px 24px 30px;
    }
    
    .slide-content h2 {
        font-size: 48px;
    }
    
    .categories-circle {
        gap: 24px;
        padding: 0 24px 8px;
    }
    
    .category-circle-item {
        flex: 0 0 100px;
    }
    
    .category-circle-item .circle-image {
        width: 90px;
        height: 90px;
    }
    
    .top-nav {
        padding: 16px 32px;
    }
    
    .section-header {
        padding: 0 24px;
        margin: 32px 0 20px;
    }
}

@media (min-width: 1024px) {
    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
        gap: 24px;
        padding: 0 32px;
    }
    
    .hero-slider {
        height: 560px;
        margin: 20px 32px 32px;
    }
    
    .top-nav {
        padding: 16px 48px;
    }
    
    .section-header {
        padding: 0 32px;
        margin: 40px 0 24px;
    }
    
    .categories-circle {
        padding: 0 32px 8px;
    }
}

/* ===== تحسين الوضع الليلي ===== */
@media (prefers-color-scheme: dark) {
    :root {
        --gray-100: #1A1A2E;
        --gray-200: #252540;
        --gray-300: #333355;
        --gray-700: #D0D0E0;
        --gray-600: #B0B0C8;
        --gray-500: #8E8EA8;
        --gray-400: #6E6E88;
        --gray-800: #E8E8F0;
        --gray-900: #F5F5FF;
        --dark: #F5F5FF;
    }
    
    .top-nav {
        background: rgba(26, 26, 46, 0.92);
        border-bottom-color: rgba(255, 255, 255, 0.05);
    }
    
    .bottom-nav {
        background: rgba(26, 26, 46, 0.95);
        border-top-color: rgba(255, 255, 255, 0.05);
    }
    
    .product-card {
        background: var(--gray-200);
    }
    
    .cart-page .cart-item,
    .cart-page .cart-total,
    .account-page .profile-card,
    .account-page .menu-list,
    .auth-page .auth-card,
    .admin-page .stat-card {
        background: var(--gray-200);
    }
    
    .product-detail .gallery {
        background: var(--gray-200);
    }
    
    .search-page .search-box input {
        background: var(--gray-200);
        border-color: var(--gray-300);
        color: var(--gray-900);
    }
}



/* ============================================
   سلايدر مبتكر مع تأثير فلاش الكاميرا
   ============================================ */

.hero-slider {
    position: relative;
    height: 420px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin: 16px 16px 24px;
    box-shadow: var(--shadow-lg);
    background: var(--gray-200);
}

/* إطار الصورة مثل الكاميرا */
.slider-frame {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: var(--radius-lg);
}

.slider-frame::before {
    content: '';
    position: absolute;
    inset: 8px;
    border: 3px solid rgba(255, 255, 255, 0.15);
    border-radius: calc(var(--radius-lg) - 8px);
    z-index: 3;
    pointer-events: none;
    box-shadow: inset 0 0 60px rgba(0, 0, 0, 0.1);
}

/* زوايا الإطار مثل الكاميرا */
.slider-frame .corner {
    position: absolute;
    z-index: 4;
    width: 30px;
    height: 30px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    pointer-events: none;
}

.slider-frame .corner-tl {
    top: 16px;
    left: 16px;
    border-right: 0;
    border-bottom: 0;
    border-radius: 4px 0 0 0;
}

.slider-frame .corner-tr {
    top: 16px;
    right: 16px;
    border-left: 0;
    border-bottom: 0;
    border-radius: 0 4px 0 0;
}

.slider-frame .corner-bl {
    bottom: 16px;
    left: 16px;
    border-right: 0;
    border-top: 0;
    border-radius: 0 0 0 4px;
}

.slider-frame .corner-br {
    bottom: 16px;
    right: 16px;
    border-left: 0;
    border-top: 0;
    border-radius: 0 0 4px 0;
}

/* عدسة الكاميرا في الزاوية */
.slider-frame .lens-badge {
    position: absolute;
    bottom: 20px;
    right: 20px;
    z-index: 5;
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    padding: 6px 14px 6px 10px;
    border-radius: var(--radius-full);
    color: #fff;
    font-size: 11px;
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.slider-frame .lens-badge .lens-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--secondary-gradient);
    animation: pulse-dot 1.5s ease-in-out infinite;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.4; transform: scale(0.8); }
}

/* شريط عدسة الكاميرا */
.slider-frame .film-strip {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    z-index: 5;
    background: rgba(255, 255, 255, 0.1);
    overflow: hidden;
}

.slider-frame .film-strip .progress {
    height: 100%;
    background: var(--primary-gradient);
    width: 0%;
    transition: width 0.1s linear;
}

/* حاوية الشرائح */
.slider-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.6s ease, transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    padding: 40px 50px;
    transform: scale(1.05);
}

.slide.active {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
}

/* تأثير فلاش الكاميرا */
.slide .flash-effect {
    position: absolute;
    inset: 0;
    z-index: 2;
    background: white;
    opacity: 0;
    pointer-events: none;
}

.slide.active .flash-effect {
    animation: camera-flash 0.8s ease-out forwards;
}

@keyframes camera-flash {
    0% { opacity: 0.9; }
    30% { opacity: 0.9; }
    60% { opacity: 0.3; }
    100% { opacity: 0; }
}

/* تأثير الضوضاء (Noise) */
.slide .noise-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    opacity: 0.04;
    pointer-events: none;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='1'/%3E%3C/svg%3E");
    background-size: 200px 200px;
}




/* ============================================
   سلايدر مبتكر - تأثير كاميرا فلاش
   ============================================ */

.hero-slider {
    position: relative;
    height: 420px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin: 16px 16px 24px;
    box-shadow: var(--shadow-lg);
    background: var(--gray-200);
}

/* إطار زجاجي حول السلايدر */
.hero-slider::before {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: calc(var(--radius-lg) + 4px);
    padding: 3px;
    background: var(--primary-gradient);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    z-index: 1;
    pointer-events: none;
    opacity: 0.6;
}

/* تدرج خلفية السلايدر */
.hero-slider::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.3) 0%, rgba(26, 26, 46, 0.05) 100%);
    z-index: 1;
    pointer-events: none;
}

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

.slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    padding: 40px 50px;
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    transform: scale(1.1);
    filter: blur(8px) brightness(0.7);
}

.slide.active {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
    filter: blur(0) brightness(1);
}

/* ===== تأثير فلاش الكاميرا ===== */
.slide::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0) 70%);
    opacity: 0;
    z-index: 3;
    pointer-events: none;
}

.slide.active::before {
    animation: cameraFlash 0.6s ease-out forwards;
}

@keyframes cameraFlash {
    0% {
        opacity: 1;
        transform: scale(0.5);
    }
    50% {
        opacity: 0.8;
        transform: scale(1.2);
    }
    100% {
        opacity: 0;
        transform: scale(1.5);
    }
}

/* ===== إطار الصورة في السلايدر ===== */
.slide .slide-content {
    position: relative;
    z-index: 4;
    color: #fff;
    max-width: 600px;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 30px 40px;
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transform: translateY(30px);
    opacity: 0;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1) 0.3s;
}

.slide.active .slide-content {
    transform: translateY(0);
    opacity: 1;
}

.slide-content h2 {
    font-size: 38px;
    font-weight: 800;
    margin-bottom: 12px;
    line-height: 1.2;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.slide-content h2 .highlight {
    color: var(--secondary);
    position: relative;
}

.slide-content h2 .highlight::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--secondary-gradient);
    border-radius: 4px;
    animation: underlinePulse 2s ease-in-out infinite;
}

@keyframes underlinePulse {
    0%, 100% { width: 100%; }
    50% { width: 60%; margin: 0 auto; }
}

.slide-content p {
    font-size: 16px;
    opacity: 0.9;
    margin-bottom: 20px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.slide-content .btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 36px;
    background: var(--primary-gradient);
    color: #fff;
    border-radius: var(--radius-full);
    font-weight: 700;
    font-size: 15px;
    box-shadow: var(--shadow-primary);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.slide-content .btn::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, transparent 50%);
    transform: translateX(-100%);
    transition: transform 0.4s ease;
}

.slide-content .btn:hover::after {
    transform: translateX(0);
}

.slide-content .btn:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 12px 40px rgba(108, 99, 255, 0.5);
}

/* ===== أزرار التحكم ===== */
.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 5;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    cursor: pointer;
}

.slider-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.slider-btn:active {
    transform: translateY(-50%) scale(0.95);
}

.slider-btn.prev { left: 16px; }
.slider-btn.next { right: 16px; }

/* ===== نقاط التقدم ===== */
.slider-dots {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
    display: flex;
    gap: 10px;
}

.slider-dots .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: var(--transition);
    position: relative;
}

.slider-dots .dot::after {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 2px solid transparent;
    transition: var(--transition);
}

.slider-dots .dot.active {
    background: #fff;
    transform: scale(1.2);
}

.slider-dots .dot.active::after {
    border-color: rgba(255, 255, 255, 0.5);
}

.slider-dots .dot:hover {
    transform: scale(1.3);
    background: rgba(255, 255, 255, 0.6);
}

/* ===== مؤشر التقدم الزمني ===== */
.slider-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 3px;
    background: var(--primary-gradient);
    z-index: 5;
    width: 0%;
    transition: none;
    border-radius: 0 3px 3px 0;
}

/* ============================================
   تصنيفات مبتكرة - بطاقات ثلاثية الأبعاد
   ============================================ */

.categories-section {
    padding: 0 16px 8px;
}

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

.category-card {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    aspect-ratio: 1;
    background: var(--gray-200);
    transition: var(--transition);
    cursor: pointer;
    box-shadow: var(--shadow-sm);
}

.category-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(0, 0, 0, 0.6) 100%);
    z-index: 1;
    transition: var(--transition);
}

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

.category-card:hover::before {
    background: linear-gradient(180deg, transparent 20%, rgba(0, 0, 0, 0.8) 100%);
}

.category-card .cat-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.category-card:hover .cat-image {
    transform: scale(1.12);
}

.category-card .cat-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 16px 14px;
    z-index: 2;
    color: #fff;
}

.category-card .cat-content .cat-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(8px);
    margin-bottom: 8px;
    font-size: 16px;
    transition: var(--transition);
}

.category-card:hover .cat-content .cat-icon {
    background: var(--primary-gradient);
    transform: rotate(8deg) scale(1.1);
}

.category-card .cat-content .cat-name {
    font-size: 14px;
    font-weight: 700;
    display: block;
    line-height: 1.3;
}

.category-card .cat-content .cat-count {
    font-size: 11px;
    opacity: 0.7;
}

/* ===== تصنيفات دائرية (بديل) ===== */
.categories-circle {
    display: flex;
    gap: 20px;
    padding: 0 16px 8px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.categories-circle::-webkit-scrollbar {
    display: none;
}

.category-circle-item {
    flex: 0 0 90px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    scroll-snap-align: start;
    transition: var(--transition);
    text-decoration: none;
}

.category-circle-item:hover {
    transform: translateY(-6px);
}

.category-circle-item .circle-wrapper {
    position: relative;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    padding: 3px;
    background: var(--primary-gradient);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.category-circle-item:hover .circle-wrapper {
    box-shadow: var(--shadow-lg);
    transform: scale(1.05);
}

.category-circle-item .circle-wrapper .circle-image {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    overflow: hidden;
    background: var(--gray-100);
    display: flex;
    align-items: center;
    justify-content: center;
}

.category-circle-item .circle-wrapper .circle-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.category-circle-item:hover .circle-wrapper .circle-image img {
    transform: scale(1.1);
}

.category-circle-item .circle-wrapper .circle-image i {
    font-size: 30px;
    color: var(--gray-500);
}

.category-circle-item .circle-wrapper .cat-badge {
    position: absolute;
    bottom: -4px;
    right: -4px;
    background: var(--secondary-gradient);
    color: #fff;
    font-size: 9px;
    font-weight: 700;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(255, 101, 132, 0.4);
    border: 2px solid #fff;
}

.category-circle-item .cat-name {
    font-size: 13px;
    font-weight: 600;
    color: var(--gray-700);
    text-align: center;
    line-height: 1.3;
}

/* ============================================
   استجابة التصميم
   ============================================ */

@media (min-width: 768px) {
    .hero-slider {
        height: 500px;
        margin: 20px 24px 30px;
    }
    
    .slide-content {
        padding: 40px 50px;
    }
    
    .slide-content h2 {
        font-size: 48px;
    }
    
    .categories-grid {
        grid-template-columns: repeat(6, 1fr);
        gap: 20px;
    }
    
    .categories-section {
        padding: 0 24px 8px;
    }
    
    .categories-circle {
        padding: 0 24px 8px;
        gap: 28px;
    }
    
    .category-circle-item {
        flex: 0 0 110px;
    }
    
    .category-circle-item .circle-wrapper {
        width: 100px;
        height: 100px;
    }
}

@media (min-width: 1024px) {
    .hero-slider {
        height: 560px;
        margin: 20px 32px 32px;
    }
    
    .slide-content h2 {
        font-size: 56px;
    }
    
    .categories-grid {
        grid-template-columns: repeat(8, 1fr);
        gap: 24px;
    }
    
    .categories-section {
        padding: 0 32px 8px;
    }
    
    .categories-circle {
        padding: 0 32px 8px;
        gap: 32px;
    }
    
    .category-circle-item {
        flex: 0 0 120px;
    }
    
    .category-circle-item .circle-wrapper {
        width: 110px;
        height: 110px;
    }
}

@media (max-width: 480px) {
    .hero-slider {
        height: 320px;
        border-radius: var(--radius-md);
        margin: 12px 12px 20px;
    }
    
    .slide-content {
        padding: 16px 20px;
    }
    
    .slide-content h2 {
        font-size: 24px;
    }
    
    .slide-content p {
        font-size: 13px;
    }
    
    .slide-content .btn {
        padding: 10px 24px;
        font-size: 13px;
    }
    
    .slider-btn {
        width: 36px;
        height: 36px;
        font-size: 14px;
    }
    
    .slider-btn.prev { left: 8px; }
    .slider-btn.next { right: 8px; }
    
    .categories-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 12px;
    }
    
    .category-circle-item {
        flex: 0 0 70px;
    }
    
    .category-circle-item .circle-wrapper {
        width: 64px;
        height: 64px;
    }
    
    .category-circle-item .cat-name {
        font-size: 11px;
    }
}