* {
margin: 0;
padding: 0;
box-sizing: border-box;
}

body {
font-family: 'Segoe UI', 'Roboto', Arial, sans-serif;
background: #FFFFFF;
color: #1a1a1a;
line-height: 1.6;
}

a {
color: #1a1a1a;
text-decoration: none;
transition: all 0.3s ease;
}

.container {
max-width: 1200px;
margin: 0 auto;
padding: 0 20px;
}

/* Top Bar */
.top-bar {
background: #FFFFFF;
border-bottom: 2px solid #ff0000;
color: #1a1a1a;
padding: 10px 0;
font-size: 14px;
}

.top-bar-content {
display: flex;
justify-content: space-between;
align-items: center;
flex-wrap: wrap;
gap: 15px;
}

/* City Selector with Dropdown */
.city-selector {
position: relative;
cursor: pointer;
display: inline-flex;
align-items: center;
gap: 8px;
padding: 5px 10px;
border-radius: 5px;
transition: all 0.3s ease;
color: #1a1a1a;
}

.city-selector:hover {
background: rgba(255, 0, 0, 0.05);
}

.city-selector strong {
color: #ff0000;
margin-left: 4px;
position: relative;
padding-right: 20px;
transition: all 0.3s ease;
}

.city-selector strong:after {
content: '▼';
position: absolute;
right: 0;
top: 50%;
transform: translateY(-50%);
font-size: 10px;
transition: transform 0.3s ease;
}

.city-selector.active strong:after {
transform: translateY(-50%) rotate(180deg);
}

.city-selector:hover strong {
text-shadow: 0 0 10px #ff0000;
}

/* City Dropdown */
.city-dropdown {
position: absolute;
top: calc(100% + 15px);
left: 0;
background: #FFFFFF;
border: 2px solid #ff0000;
border-radius: 10px;
min-width: 280px;
box-shadow:
0 10px 40px rgba(255, 0, 0, 0.2),
0 0 30px rgba(255, 0, 0, 0.1);
z-index: 3000;
opacity: 0;
visibility: hidden;
transform: translateY(-15px);
transition: all 0.3s ease;
}

.city-dropdown.show {
opacity: 1;
visibility: visible;
transform: translateY(0);
}

.city-dropdown-header {
padding: 18px 20px;
font-weight: 700;
color: #1a1a1a;
border-bottom: 2px solid #ff0000;
background: #f5f5f5;
border-radius: 8px 8px 0 0;
font-size: 13px;
text-transform: uppercase;
letter-spacing: 2px;
text-align: center;
}

.city-list {
max-height: 350px;
overflow-y: auto;
padding: 8px;
}

.city-list::-webkit-scrollbar {
width: 10px;
}

.city-list::-webkit-scrollbar-track {
background: #f5f5f5;
border-radius: 5px;
margin: 5px;
}

.city-list::-webkit-scrollbar-thumb {
background: #ff0000;
border-radius: 5px;
box-shadow: 0 0 10px rgba(255, 0, 0, 0.5);
}

.city-list::-webkit-scrollbar-thumb:hover {
background: #cc0000;
box-shadow: 0 0 15px rgba(255, 0, 0, 0.8);
}

.city-item {
padding: 14px 18px;
color: #1a1a1a;
cursor: pointer;
transition: all 0.3s ease;
border-radius: 8px;
font-size: 15px;
margin: 3px 0;
font-weight: 500;
}

.city-item:hover {
background: #ff0000;
color: #FFFFFF;
font-weight: 700;
transform: translateX(4px);
box-shadow:
0 0 20px rgba(255, 0, 0, 0.6),
inset 0 0 20px rgba(255, 255, 255, 0.1);
}

.city-item.active {
background: #f5f5f5;
color: #ff0000;
font-weight: 700;
border-left: 4px solid #ff0000;
padding-left: 14px;
}

.contact-info {
display: flex;
align-items: center;
gap: 10px;
color: #1a1a1a;
}

.separator {
color: #ff0000;
margin: 0 8px;
}

.social-links {
display: flex;
gap: 12px;
}

.social-icon {
padding: 5px 12px;
border: 1px solid #e0e0e0;
border-radius: 4px;
font-size: 12px;
font-weight: 600;
transition: all 0.3s ease;
color: #1a1a1a;
}

.social-icon:hover {
border-color: #ff0000;
background: #ff0000;
color: #FFFFFF;
box-shadow: 0 0 15px rgba(255, 0, 0, 0.5);
}

/* Main Header */
.main-header {
background: #FFFFFF;
border-bottom: 1px solid #e0e0e0;
padding: 20px 0;
position: sticky;
top: 0;
z-index: 1000;
box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.header-content {
display: flex;
justify-content: space-between;
align-items: center;
gap: 30px;
}

/* Logo */
.logo {
flex-shrink: 0;
}

.logo h1 {
font-family: 'Impact', 'Arial Black', sans-serif;
color: #fff;
font-size: 32px;
letter-spacing: 6px;
font-weight: 900;
margin: 0;
text-shadow:
0 0 10px #ff0000,
0 0 20px #ff0000,
0 0 30px #ff0000,
0 0 40px #ff0000;
animation: neonPulse 2s ease-in-out infinite;
}

@keyframes neonPulse {
0%, 100% {
text-shadow:
0 0 10px #ff0000,
0 0 20px #ff0000,
0 0 30px #ff0000;
}
50% {
text-shadow:
0 0 15px #ff0000,
0 0 30px #ff0000,
0 0 45px #ff0000,
0 0 60px #ff0000;
}
}

.logo-subtitle {
color: #ff0000;
font-size: 11px;
letter-spacing: 3px;
font-weight: 600;
display: block;
margin-top: -5px;
}

/* Navigation */
.main-nav {
flex: 1;
display: flex;
justify-content: center;
}

.nav-menu {
list-style: none;
display: flex;
gap: 30px;
align-items: center;
}

.nav-menu li a {
color: #1a1a1a;
font-weight: 600;
font-size: 15px;
position: relative;
padding: 8px 0;
transition: all 0.3s ease;
}

.nav-menu li a:after {
content: '';
position: absolute;
bottom: 0;
left: 0;
width: 0;
height: 2px;
background: #ff0000;
transition: width 0.3s ease;
box-shadow: 0 0 10px #ff0000;
}

.nav-menu li a:hover {
color: #ff0000;
}

.nav-menu li a:hover:after {
width: 100%;
}

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

.mobile-menu-toggle span {
width: 28px;
height: 3px;
background: #1a1a1a;
border-radius: 2px;
transition: all 0.3s ease;
}

.mobile-menu-toggle:hover span {
background: #ff0000;
box-shadow: 0 0 10px #ff0000;
}

/* Header Actions */
.header-actions {
display: flex;
gap: 15px;
align-items: center;
}

.header-actions button {
background: none;
border: 1px solid #e0e0e0;
color: #1a1a1a;
font-size: 18px;
cursor: pointer;
position: relative;
padding: 8px 12px;
border-radius: 6px;
transition: all 0.3s ease;
}

.header-actions button:hover {
border-color: #ff0000;
color: #ff0000;
box-shadow: 0 0 15px rgba(255, 0, 0, 0.3);
}

.badge {
background: #ff0000;
color: #FFFFFF;
border-radius: 50%;
font-size: 10px;
font-weight: 700;
padding: 2px 6px;
position: absolute;
top: -5px;
right: -5px;
box-shadow: 0 0 10px #ff0000;
}

/* Search Overlay */
.search-overlay {
display: none;
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: rgba(0, 0, 0, 0.85);
z-index: 2000;
align-items: center;
justify-content: center;
}

.search-container {
position: relative;
width: 90%;
max-width: 600px;
}

.search-input {
width: 100%;
padding: 20px 60px 20px 20px;
font-size: 18px;
background: #FFFFFF;
border: 2px solid #e0e0e0;
border-radius: 50px;
color: #1a1a1a;
outline: none;
transition: all 0.3s ease;
}

.search-input:focus {
border-color: #ff0000;
box-shadow: 0 0 20px rgba(255, 0, 0, 0.3);
}

.search-close {
position: absolute;
right: 20px;
top: 50%;
transform: translateY(-50%);
background: none;
border: none;
color: #1a1a1a;
font-size: 32px;
cursor: pointer;
transition: color 0.3s ease;
}

.search-close:hover {
color: #ff0000;
}

/* Hero Section */
.hero {
background: #FFFFFF;
padding: 80px 0;
text-align: center;
border-bottom: 2px solid #ff0000;
}

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

.hero-title {
font-size: 36px;
color: #1a1a1a;
margin-bottom: 20px;
line-height: 1.3;
}

.neon-text {
display: inline-block;
color: #fff;
font-size: 56px;
font-weight: 900;
text-shadow:
0 0 70px #ff0000,
0 0 10px #ff0000;
}

@keyframes neonFlicker {
0%, 19%, 21%, 23%, 25%, 54%, 56%, 100% {
text-shadow:
0 0 10px #ff0000,
0 0 20px #ff0000,
0 0 30px #ff0000,
0 0 40px #ff0000,
0 0 70px #ff0000;
}
20%, 24%, 55% {
text-shadow: none;
}
}

.hero-subtitle {
color: #666666;
font-size: 18px;
margin-bottom: 30px;
}

.cta-button {
background: #ff0000;
border: none;
padding: 16px 45px;
border-radius: 50px;
color: #FFFFFF;
font-weight: 700;
font-size: 16px;
cursor: pointer;
text-transform: uppercase;
letter-spacing: 1px;
box-shadow: 0 0 20px rgba(255, 0, 0, 0.5);
transition: all 0.3s ease;
}

.cta-button:hover {
background: #1a1a1a;
color: #FFFFFF;
box-shadow:
0 0 30px rgba(255, 0, 0, 0.7),
0 0 50px rgba(255, 0, 0, 0.4);
transform: translateY(-2px);
}

/* Categories Section */
.categories {
padding: 60px 0;
background: #FFFFFF;
}

.section-title {
font-size: 36px;
text-align: center;
color: #1a1a1a;
margin-bottom: 50px;
text-transform: uppercase;
letter-spacing: 2px;
}

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

.category-card {
background: #FFFFFF;
padding: 35px 25px;
border-radius: 15px;
text-align: center;
border: 2px solid #e0e0e0;
transition: all 0.3s ease;
cursor: pointer;
}

.category-card:hover {
border-color: #ff0000;
background: #FFFFFF;
box-shadow:
0 0 25px rgba(255, 0, 0, 0.3),
inset 0 0 25px rgba(255, 0, 0, 0.05);
transform: translateY(-5px);
}

.category-icon {
color: #ff0000;
margin-bottom: 15px;
}

.category-card h3 {
color: #1a1a1a;
font-size: 22px;
margin-bottom: 12px;
font-weight: 700;
}

.category-card p {
color: #666666;
font-size: 14px;
margin-bottom: 15px;
}

.category-link {
color: #ff0000;
font-weight: 600;
font-size: 14px;
display: inline-block;
transition: all 0.3s ease;
}

.category-link:hover {
text-shadow: 0 0 10px #ff0000;
}

/* Products Section */
.products {
padding: 60px 0;
background: #f8f8f8;
}

.products-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 30px;
}

.product-card {
background: #FFFFFF;
border-radius: 15px;
overflow: hidden;
border: 2px solid #e0e0e0;
transition: all 0.3s ease;
}

.product-card:hover {
border-color: #ff0000;
transform: translateY(-5px);
box-shadow: 0 0 25px rgba(255, 0, 0, 0.3);
}

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

.product-badge {
position: absolute;
top: 10px;
left: 10px;
background: #ff0000;
color: #FFFFFF;
padding: 5px 12px;
border-radius: 20px;
font-size: 12px;
font-weight: 700;
box-shadow: 0 0 10px rgba(255, 0, 0, 0.5);
}

.product-badge.hot {
background: #ff0000;
animation: neonPulse 2s infinite;
}

.wishlist-btn {
position: absolute;
top: 10px;
right: 10px;
background: rgba(255, 255, 255, 0.9);
border: 1px solid #e0e0e0;
color: #1a1a1a;
font-size: 20px;
width: 40px;
height: 40px;
border-radius: 50%;
cursor: pointer;
transition: all 0.3s ease;
}

.wishlist-btn:hover {
background: #ff0000;
color: #FFFFFF;
border-color: #ff0000;
box-shadow: 0 0 15px rgba(255, 0, 0, 0.5);
}

.product-info {
padding: 20px;
}

.product-title {
color: #1a1a1a;
font-size: 18px;
margin-bottom: 10px;
font-weight: 600;
}

.product-price {
color: #ff0000;
font-size: 24px;
font-weight: 700;
margin-bottom: 15px;
}

.old-price {
color: #999999;
text-decoration: line-through;
font-size: 16px;
margin-right: 10px;
}

/* Info Section */
.info-section {
padding: 60px 0;
background: #FFFFFF;
}

.info-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 30px;
}

.info-card {
text-align: center;
padding: 30px 20px;
background: #FFFFFF;
border-radius: 12px;
border: 2px solid #e0e0e0;
transition: all 0.3s ease;
}

.info-card:hover {
border-color: #ff0000;
box-shadow: 0 0 20px rgba(255, 0, 0, 0.2);
}

.info-icon {
font-size: 48px;
margin-bottom: 15px;
color: #ff0000;
}

.info-card h3 {
color: #1a1a1a;
font-size: 20px;
margin-bottom: 10px;
}

.info-card p {
color: #666666;
font-size: 14px;
}

/* Footer */
.footer {
background: #f8f8f8;
color: #1a1a1a;
padding: 50px 0 20px;
border-top: 3px solid #ff0000;
}

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

.footer-column h3,
.footer-column h4 {
color: #1a1a1a;
margin-bottom: 20px;
font-size: 18px;
}

.footer-title {
color: #ff0000;
text-shadow: 0 0 10px #ff0000;
}

.footer-column p {
color: #666666;
line-height: 1.8;
margin-bottom: 20px;
}

.footer-links {
list-style: none;
}

.footer-links li {
margin-bottom: 12px;
}

.footer-links a {
color: #666666;
transition: all 0.3s ease;
}

.footer-links a:hover {
color: #ff0000;
text-shadow: 0 0 10px rgba(255, 0, 0, 0.5);
}

.footer-social {
display: flex;
gap: 15px;
}

.social-btn {
padding: 10px 20px;
border: 1px solid #e0e0e0;
border-radius: 5px;
color: #1a1a1a;
transition: all 0.3s ease;
}

.social-btn:hover {
border-color: #ff0000;
background: #ff0000;
color: #FFFFFF;
box-shadow: 0 0 15px rgba(255, 0, 0, 0.5);
}

.footer-bottom {
border-top: 1px solid #e0e0e0;
padding-top: 30px;
display: flex;
justify-content: space-between;
align-items: center;
flex-wrap: wrap;
gap: 20px;
}

.footer-legal {
display: flex;
gap: 20px;
}

.footer-legal a {
color: #666666;
font-size: 13px;
}

.footer-legal a:hover {
color: #ff0000;
}

/* Breadcrumbs */
.breadcrumbs {
background: #f8f8f8;
padding: 15px 0;
border-bottom: 1px solid #e0e0e0;
}

.breadcrumbs .container {
display: flex;
align-items: center;
gap: 5px;
}

.breadcrumbs a {
color: #666666;
transition: color 0.3s;
font-size: 14px;
}

.breadcrumbs a:hover {
color: #ff0000;
text-shadow: 0 0 10px rgba(255, 0, 0, 0.5);
}

.breadcrumbs .separator {
color: #ff0000;
margin: 0 8px;
font-size: 14px;
}

.breadcrumbs .current {
color: #1a1a1a;
font-size: 14px;
font-weight: 600;
}

/* Catalog Section */
.catalog-section {
background: #f8f8f8;
padding: 40px 0 60px;
min-height: 100vh;
}

.catalog-layout {
display: grid;
grid-template-columns: 280px 1fr;
gap: 40px;
align-items: start;
}

/* Sidebar Filters */
.catalog-sidebar {
background: #FFFFFF;
border: 2px solid #e0e0e0;
border-radius: 15px;
padding: 25px;
position: sticky;
top: 90px;
max-height: calc(100vh - 120px);
overflow-y: auto;
}

.catalog-sidebar::-webkit-scrollbar {
width: 8px;
}

.catalog-sidebar::-webkit-scrollbar-track {
background: #f5f5f5;
border-radius: 4px;
}

.catalog-sidebar::-webkit-scrollbar-thumb {
background: #ff0000;
border-radius: 4px;
}

.sidebar-header {
display: flex;
justify-content: space-between;
align-items: center;
margin-bottom: 25px;
padding-bottom: 15px;
border-bottom: 2px solid #ff0000;
}

.sidebar-header h3 {
color: #1a1a1a;
font-size: 22px;
margin: 0;
text-transform: uppercase;
letter-spacing: 1px;
}

.clear-filters {
background: none;
border: 1px solid #ff0000;
color: #ff0000;
padding: 8px 15px;
border-radius: 6px;
cursor: pointer;
font-size: 13px;
font-weight: 600;
transition: all 0.3s ease;
}

.clear-filters:hover {
background: #ff0000;
color: #FFFFFF;
box-shadow: 0 0 15px rgba(255, 0, 0, 0.5);
transform: translateX(2px);
}

.filter-group {
margin-bottom: 30px;
}

.filter-title {
color: #1a1a1a;
font-size: 16px;
margin-bottom: 15px;
font-weight: 600;
text-transform: uppercase;
letter-spacing: 0.5px;
}

.filter-options {
display: flex;
flex-direction: column;
gap: 12px;
}

.filter-checkbox {
display: flex;
align-items: center;
cursor: pointer;
color: #666666;
font-size: 14px;
transition: all 0.3s ease;
padding: 5px;
border-radius: 5px;
}

.filter-checkbox:hover {
color: #ff0000;
background: rgba(255, 0, 0, 0.05);
}

.filter-checkbox input[type="checkbox"] {
margin-right: 10px;
width: 18px;
height: 18px;
cursor: pointer;
accent-color: #ff0000;
}

.filter-checkbox span:first-of-type {
flex: 1;
}

.filter-checkbox .count {
color: #999999;
font-size: 12px;
margin-left: 8px;
}

/* Price Range Filter */
.price-range {
display: flex;
flex-direction: column;
gap: 15px;
}

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

.price-inputs input {
width: 100%;
padding: 10px;
background: #FFFFFF;
border: 1px solid #e0e0e0;
border-radius: 6px;
color: #1a1a1a;
font-size: 14px;
transition: border-color 0.3s;
}

.price-inputs input:focus {
outline: none;
border-color: #ff0000;
box-shadow: 0 0 10px rgba(255, 0, 0, 0.2);
}

.price-inputs span {
color: #999999;
font-weight: 600;
}

.price-slider {
width: 100%;
height: 6px;
background: #e0e0e0;
border-radius: 3px;
outline: none;
accent-color: #ff0000;
cursor: pointer;
}

/* Catalog Content */
.catalog-content {
display: flex;
flex-direction: column;
gap: 30px;
}

/* Catalog Toolbar */
.catalog-toolbar {
background: #FFFFFF;
border: 2px solid #e0e0e0;
border-radius: 15px;
padding: 20px 25px;
display: flex;
justify-content: space-between;
align-items: center;
flex-wrap: wrap;
gap: 20px;
}

.toolbar-left {
display: flex;
align-items: center;
gap: 20px;
flex-wrap: wrap;
}

.mobile-filter-toggle {
display: none;
background: #ff0000;
border: none;
padding: 10px 20px;
border-radius: 8px;
color: #FFFFFF;
font-weight: 700;
cursor: pointer;
align-items: center;
gap: 8px;
transition: all 0.3s;
}

.mobile-filter-toggle:hover {
background: #1a1a1a;
box-shadow: 0 0 20px rgba(255, 0, 0, 0.5);
}

.mobile-filter-toggle svg {
width: 20px;
height: 20px;
}

.catalog-title {
color: #1a1a1a;
font-size: 28px;
margin: 0;
font-weight: 700;
text-transform: uppercase;
letter-spacing: 1px;
}

.products-count {
color: #666666;
font-size: 14px;
padding: 5px 12px;
background: #f5f5f5;
border-radius: 20px;
border: 1px solid #e0e0e0;
}

.toolbar-right {
display: flex;
align-items: center;
gap: 15px;
}

.sort-select {
padding: 10px 15px;
background: #FFFFFF;
border: 1px solid #e0e0e0;
border-radius: 8px;
color: #1a1a1a;
font-size: 14px;
cursor: pointer;
transition: all 0.3s;
min-width: 200px;
}

.sort-select:hover,
.sort-select:focus {
border-color: #ff0000;
outline: none;
box-shadow: 0 0 10px rgba(255, 0, 0, 0.2);
}

.sort-select option {
background: #FFFFFF;
color: #1a1a1a;
}

.view-toggle {
display: flex;
gap: 8px;
}

.view-btn {
background: #FFFFFF;
border: 1px solid #e0e0e0;
padding: 8px 12px;
border-radius: 6px;
color: #1a1a1a;
cursor: pointer;
transition: all 0.3s;
display: flex;
align-items: center;
justify-content: center;
}

.view-btn:hover {
border-color: #ff0000;
color: #ff0000;
}

.view-btn.active {
border-color: #ff0000;
background: #ff0000;
color: #FFFFFF;
box-shadow: 0 0 15px rgba(255, 0, 0, 0.3);
}

.view-btn svg {
width: 20px;
height: 20px;
}

/* Products Grid */
.catalog-products {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
gap: 25px;
}

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

.catalog-products .product-card {
background: #FFFFFF;
border: 2px solid #e0e0e0;
border-radius: 15px;
overflow: hidden;
transition: all 0.3s ease;
display: flex;
flex-direction: column;
}

.catalog-products .product-card:hover {
border-color: #ff0000;
transform: translateY(-5px);
box-shadow:
0 10px 30px rgba(255, 0, 0, 0.3),
0 0 40px rgba(255, 0, 0, 0.1);
}

.product-image {
position: relative;
background: #f5f5f5;
overflow: hidden;
}

.product-image-placeholder {
width: 100%;
height: 220px;
display: flex;
align-items: center;
justify-content: center;
background: linear-gradient(135deg, #f5f5f5 0%, #e0e0e0 100%);
}

.product-image-placeholder svg {
opacity: 0.3;
transition: opacity 0.3s;
}

.product-card:hover .product-image-placeholder svg {
opacity: 0.6;
}

.product-badge {
position: absolute;
top: 10px;
left: 10px;
background: #ff0000;
color: #FFFFFF;
padding: 5px 12px;
border-radius: 20px;
font-size: 11px;
font-weight: 700;
text-transform: uppercase;
box-shadow: 0 0 10px rgba(255, 0, 0, 0.5);
z-index: 2;
}

.product-badge.hot {
animation: neonPulse 2s ease-in-out infinite;
}

.wishlist-btn {
position: absolute;
top: 10px;
right: 10px;
background: rgba(255, 255, 255, 0.9);
border: 1px solid #e0e0e0;
color: #1a1a1a;
font-size: 20px;
width: 40px;
height: 40px;
border-radius: 50%;
cursor: pointer;
transition: all 0.3s ease;
display: flex;
align-items: center;
justify-content: center;
z-index: 2;
}

.wishlist-btn:hover {
background: #ff0000;
color: #FFFFFF;
border-color: #ff0000;
box-shadow: 0 0 15px rgba(255, 0, 0, 0.5);
transform: scale(1.1);
}

.product-info {
padding: 20px;
display: flex;
flex-direction: column;
flex: 1;
}

.product-brand {
color: #ff0000;
font-size: 11px;
font-weight: 700;
text-transform: uppercase;
letter-spacing: 1px;
margin-bottom: 5px;
}

.product-title {
color: #1a1a1a;
font-size: 18px;
margin-bottom: 10px;
font-weight: 600;
line-height: 1.3;
}

.product-features {
display: flex;
gap: 8px;
margin: 10px 0;
flex-wrap: wrap;
}

.product-features span {
background: #f5f5f5;
color: #666666;
padding: 4px 10px;
border-radius: 12px;
font-size: 11px;
font-weight: 600;
border: 1px solid #e0e0e0;
transition: all 0.3s;
}

.product-card:hover .product-features span {
border-color: #ff0000;
color: #1a1a1a;
}

.product-bottom {
display: flex;
justify-content: space-between;
align-items: center;
margin-top: auto;
padding-top: 15px;
}

.product-price {
color: #ff0000;
font-size: 24px;
font-weight: 700;
margin: 0;
text-shadow: 0 0 10px rgba(255, 0, 0, 0.3);
}

.old-price {
color: #999999;
text-decoration: line-through;
font-size: 16px;
margin-right: 10px;
display: inline-block;
}

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

.pagination-btn {
background: #FFFFFF;
border: 2px solid #e0e0e0;
color: #1a1a1a;
padding: 10px 18px;
border-radius: 8px;
cursor: pointer;
font-weight: 600;
font-size: 14px;
transition: all 0.3s ease;
min-width: 44px;
}

.pagination-btn:hover:not(:disabled) {
border-color: #ff0000;
color: #ff0000;
}

.pagination-btn.active {
border-color: #ff0000;
background: #ff0000;
color: #FFFFFF;
box-shadow: 0 0 15px rgba(255, 0, 0, 0.5);
}

.pagination-btn:disabled {
opacity: 0.3;
cursor: not-allowed;
}

/* Mobile Filter Close Button */
.mobile-filter-close {
display: none;
width: 100%;
background: #ff0000;
border: none;
padding: 12px;
border-radius: 8px;
color: #FFFFFF;
font-weight: 700;
cursor: pointer;
margin-top: 20px;
text-transform: uppercase;
letter-spacing: 1px;
transition: all 0.3s;
}

.mobile-filter-close:hover {
background: #1a1a1a;
box-shadow: 0 0 20px rgba(255, 0, 0, 0.5);
}

/* Responsive Design */
@media (max-width: 968px) {
.header-content {
flex-wrap: wrap;
}

.main-nav {
order: 4;
width: 100%;
display: none;
margin-top: 20px;
}

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

.nav-menu {
flex-direction: column;
gap: 15px;
padding: 20px 0;
}

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

.logo h1 {
font-size: 24px;
letter-spacing: 4px;
}

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

.neon-text {
font-size: 40px;
}

.footer-bottom {
flex-direction: column;
text-align: center;
}

.catalog-layout {
grid-template-columns: 1fr;
}

.catalog-sidebar {
position: fixed;
left: -100%;
top: 0;
height: 100vh;
width: 320px;
max-width: 85vw;
z-index: 3000;
overflow-y: auto;
transition: left 0.3s ease;
max-height: 100vh;
border-radius: 0;
border-right: 2px solid #ff0000;
}

.catalog-sidebar.active {
left: 0;
box-shadow: 10px 0 40px rgba(0, 0, 0, 0.2);
}

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

.mobile-filter-close {
display: block;
}

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

.catalog-toolbar {
padding: 15px 20px;
}
}

@media (max-width: 640px) {
.top-bar-content {
flex-direction: column;
text-align: center;
gap: 10px;
}

.city-dropdown {
left: 50%;
transform: translateX(-50%) translateY(-15px);
}

.city-dropdown.show {
transform: translateX(-50%) translateY(0);
}

.categories-grid,
.products-grid,
.info-grid {
grid-template-columns: 1fr;
}

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

.hero {
padding: 50px 0;
}

.catalog-products {
grid-template-columns: 1fr;
}

.toolbar-left,
.toolbar-right {
width: 100%;
}

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

.view-toggle {
display: none;
}

.sort-select {
min-width: auto;
flex: 1;
}

.breadcrumbs {
font-size: 12px;
}

.catalog-title {
font-size: 20px;
}

.products-count {
font-size: 12px;
}
}

@media (max-width: 480px) {
.catalog-section {
padding: 20px 0 40px;
}

.catalog-toolbar {
gap: 15px;
}

.toolbar-left {
gap: 15px;
}

.product-title {
font-size: 16px;
}

.product-price {
font-size: 20px;
}
}
