:root { --primary-color: #ff6b35; --secondary-color: #2c3e50; --accent-color: #f39c12; }
body { font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; }
/* Navigation */
.navbar { background-color: var(--secondary-color) !important; box-shadow: 0 2px 10px rgba(0,0,0,0.1); }
.navbar-brand { font-weight: bold; font-size: 1.5rem; color: var(--primary-color) !important; }
.nav-link { color: white !important; margin: 0 10px; transition: color 0.3s ease; }
.nav-link:hover { color: var(--primary-color) !important; }
/* Hero Section */
.accessories-hero { height: 60vh; background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('../public/image/mock/accessories.jpg'); background-size: cover; background-position: center; display: flex; align-items: center; justify-content: center; text-align: center; color: white; }
.accessories-hero h1 { font-size: 3.5rem; font-weight: bold; text-shadow: 2px 2px 4px rgba(0,0,0,0.7); }
/* Accessories Content */
.accessories-content { padding: 80px 0; }
.category-card { background: white; border-radius: 15px; padding: 30px; text-align: center; box-shadow: 0 5px 15px rgba(0,0,0,0.1); transition: transform 0.3s ease; height: 100%; margin-bottom: 30px; }
.category-card:hover { transform: translateY(-10px); }
.category-icon { font-size: 3rem; color: var(--primary-color); margin-bottom: 20px; }
.product-card { border: none; border-radius: 15px; overflow: hidden; box-shadow: 0 5px 15px rgba(0,0,0,0.1); transition: transform 0.3s ease; margin-bottom: 30px; }
.product-card:hover { transform: translateY(-5px); }
.product-card img { height: 200px; object-fit: cover; }
.price-tag { background: var(--primary-color); color: white; padding: 5px 15px; border-radius: 20px; font-weight: bold; display: inline-block; }
.filter-section { background: #f8f9fa; padding: 30px; border-radius: 15px; margin-bottom: 40px; }
.filter-btn { background: white; border: 2px solid var(--primary-color); color: var(--primary-color); padding: 10px 20px; border-radius: 25px; margin: 5px; transition: all 0.3s ease; }
.filter-btn:hover, .filter-btn.active { background: var(--primary-color); color: white; }
.feature-highlight { background: linear-gradient(135deg, var(--primary-color), var(--accent-color)); color: white; padding: 60px 0; border-radius: 15px; margin: 60px 0; }
.feature-icon-large { font-size: 4rem; margin-bottom: 20px; }
/* Footer */
.footer { background-color: #1a252f; color: white; padding: 40px 0 20px; }
.footer h5 { color: var(--primary-color); margin-bottom: 20px; }
.footer a { color: #bdc3c7; text-decoration: none; transition: color 0.3s ease; }
.footer a:hover { color: var(--primary-color); }
.social-icons a { font-size: 1.5rem; margin: 0 10px; }
/* Responsive */
@media (max-width: 768px) { .accessories-hero h1 { font-size: 2.5rem; } }
