/* VParts Inc - Rebuilt Local Styles - Matching Original Site */
* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Open Sans', Arial, sans-serif; line-height: 1.6; color: #424242; background: #fff; }
a { color: #ee9d2b; text-decoration: none; }
a:hover { color: #f1ae4f; text-decoration: underline; }
img { max-width: 100%; height: auto; }

/* Header - Dark theme matching original */
.page-header { background: #0a0a0a; padding: 15px 0; }
.header-content { max-width: 1200px; margin: 0 auto; padding: 0 20px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; }
.logo img { max-height: 60px; }
.nav-sections { background: #0a0a0a; border-top: 1px solid #424242; }
.navigation { max-width: 1200px; margin: 0 auto; }
.navigation ul { list-style: none; display: flex; flex-wrap: wrap; }
.navigation li { position: relative; }
.navigation a { display: block; padding: 15px 20px; color: #fff; font-weight: 600; text-transform: uppercase; font-size: 14px; }
.navigation a:hover { background: #424242; color: #ee9d2b; text-decoration: none; }

/* Hero/Banner */
.hero-section { background: linear-gradient(135deg, #0a0a0a 0%, #424242 100%); color: #fff; padding: 60px 20px; text-align: center; }
.hero-section h1 { font-size: 2.5em; margin-bottom: 20px; }
.hero-section p { font-size: 1.2em; max-width: 800px; margin: 0 auto 30px; color: #e0e0e0; }

/* Main Content */
.page-main { max-width: 1200px; margin: 0 auto; padding: 40px 20px; }
.page-title { font-size: 2em; color: #0a0a0a; margin-bottom: 30px; border-bottom: 3px solid #ee9d2b; padding-bottom: 15px; }

/* Categories Grid */
.categories-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 30px; margin: 40px 0; }
.category-card { background: #fff; border-radius: 8px; box-shadow: 0 4px 15px rgba(0,0,0,0.1); overflow: hidden; transition: transform 0.3s, box-shadow 0.3s; border: 1px solid #e0e0e0; }
.category-card:hover { transform: translateY(-5px); box-shadow: 0 8px 25px rgba(0,0,0,0.15); border-color: #ee9d2b; }
.category-card img { width: 100%; height: 200px; object-fit: cover; }
.category-card h3 { padding: 20px; font-size: 1.3em; color: #0a0a0a; }
.category-card p { padding: 0 20px 20px; color: #757575; }

/* Products */
.products-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 25px; }
.product-item { background: #fff; border: 1px solid #e0e0e0; border-radius: 6px; padding: 20px; text-align: center; transition: box-shadow 0.3s, border-color 0.3s; }
.product-item:hover { box-shadow: 0 4px 20px rgba(0,0,0,0.1); border-color: #ee9d2b; }
.product-item img { max-height: 150px; margin-bottom: 15px; }
.product-item h4 { font-size: 1em; margin-bottom: 10px; min-height: 48px; color: #424242; }
.product-item .price { font-size: 1.2em; color: #ee9d2b; font-weight: 700; }
.product-item .btn { display: inline-block; margin-top: 15px; padding: 10px 25px; background: #ee9d2b; color: #fff; border-radius: 5px; font-weight: 600; }
.product-item .btn:hover { background: #b75822; text-decoration: none; }

/* Search */
.search-box { display: flex; max-width: 600px; margin: 0 auto 40px; }
.search-box input { flex: 1; padding: 15px 20px; border: 2px solid #e0e0e0; border-radius: 5px 0 0 5px; font-size: 16px; background: #f9fafb; }
.search-box input:focus { border-color: #ee9d2b; outline: none; }
.search-box button { padding: 15px 30px; background: #ee9d2b; color: #fff; border: none; border-radius: 0 5px 5px 0; cursor: pointer; font-weight: 600; }
.search-box button:hover { background: #b75822; }

/* Footer - Dark theme matching original */
.page-footer { background: #0a0a0a; color: #fff; padding: 50px 20px 20px; margin-top: 60px; }
.footer-content { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 40px; }
.footer-column h4 { font-size: 1.2em; margin-bottom: 20px; color: #ee9d2b; }
.footer-column ul { list-style: none; }
.footer-column li { margin-bottom: 10px; }
.footer-column a { color: #c2c2c2; }
.footer-column a:hover { color: #ee9d2b; }
.footer-bottom { text-align: center; padding-top: 30px; margin-top: 30px; border-top: 1px solid #424242; color: #9e9e9e; }

/* Buttons - Orange theme */
.btn-primary { display: inline-block; padding: 12px 30px; background: #ee9d2b; color: #fff; border-radius: 5px; font-weight: 600; border: none; cursor: pointer; }
.btn-primary:hover { background: #b75822; text-decoration: none; }
.btn-secondary { display: inline-block; padding: 12px 30px; background: #424242; color: #fff; border-radius: 5px; font-weight: 600; }
.btn-secondary:hover { background: #0a0a0a; text-decoration: none; }

/* Responsive */
@media (max-width: 768px) {
    .header-content { flex-direction: column; text-align: center; }
    .navigation ul { flex-direction: column; }
    .navigation a { padding: 12px 15px; }
    .hero-section h1 { font-size: 1.5em; }
    .hero-section p { font-size: 1em; }
    .page-title { font-size: 1.5em; }
    .about-section { grid-template-columns: 1fr !important; }
}
