
:root {

    --am-blue: #0099cc;

    --am-blue-dark: #007aa3;

    --am-black: #1a1a1a;

    --am-gray: #666;

    --am-light: #f5f5f5;

    --am-white: #fff;

}

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

body { font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; background: var(--am-white); color: var(--am-black); }

.gf-icon { width: 20px; height: 20px; vertical-align: middle; }

.gf-icon-lg { width: 32px; height: 32px; }

.top-bar { background: var(--am-light); padding: 8px 40px; display: flex; justify-content: space-between; align-items: center; font-size: 13px; border-bottom: 1px solid #ddd; }

.top-bar a { color: var(--am-gray); text-decoration: none; }

.top-bar a:hover { color: var(--am-blue); }

.header { background: var(--am-white); padding: 15px 40px; display: flex; justify-content: space-between; align-items: center; border-bottom: 1px solid #ddd; }

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

.logo-main { font-size: 36px; font-weight: 300; color: var(--am-blue); }

.logo-main span { font-weight: 700; }

.logo-sub { font-size: 12px; color: var(--am-gray); margin-left: 5px; }

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

.parts-finder { background: var(--am-light); border: 1px solid #ddd; padding: 10px 20px; border-radius: 4px; display: flex; align-items: center; gap: 8px; font-size: 14px; color: var(--am-gray); cursor: pointer; }

.search-box { display: flex; align-items: center; background: var(--am-white); border: 1px solid #ddd; border-radius: 4px; overflow: hidden; width: 400px; }

.search-box input { border: none; padding: 12px 15px; flex: 1; font-size: 14px; outline: none; }

.search-box button { background: var(--am-blue); border: none; padding: 12px 15px; cursor: pointer; }

.header-right { display: flex; align-items: center; gap: 25px; }

.header-link { display: flex; flex-direction: column; align-items: center; color: var(--am-gray); text-decoration: none; font-size: 12px; }

.header-link:hover { color: var(--am-blue); }

.nav { background: var(--am-blue); }

.nav ul { display: flex; justify-content: center; list-style: none; }

.nav a { display: block; padding: 12px 25px; color: white; text-decoration: none; font-weight: 500; font-size: 14px; transition: background 0.2s; }

.nav a:hover { background: var(--am-blue-dark); }

.hero { background: linear-gradient(135deg, #1a1a1a 0%, #333 100%); min-height: 450px; display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden; }

.hero-content { text-align: center; color: white; z-index: 2; }

.hero-tagline { font-size: 72px; font-weight: 900; font-style: italic; text-transform: uppercase; letter-spacing: -2px; margin-bottom: 20px; }

.hero-subtitle { font-size: 24px; margin-bottom: 30px; }

.hero-btn { display: inline-block; background: var(--am-blue); color: white; padding: 15px 50px; text-decoration: none; font-weight: 700; font-size: 18px; border-radius: 4px; transition: background 0.2s; }

.hero-btn:hover { background: var(--am-blue-dark); }

.categories-section { padding: 50px 40px; text-align: center; }

.categories-section h2 { font-size: 24px; margin-bottom: 30px; }

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

.category-card { background: var(--am-light); border-radius: 8px; padding: 30px; text-align: center; transition: all 0.2s; cursor: pointer; }

.category-card:hover { background: #e8e8e8; transform: translateY(-3px); }

.category-card img { height: 100px; object-fit: contain; margin-bottom: 15px; }

.category-card h3 { font-size: 16px; font-weight: 600; }

.featured { padding: 50px 40px; }

.featured h2 { font-size: 24px; font-weight: 700; margin-bottom: 30px; }

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

.product-card { background: white; border: 1px solid #eee; border-radius: 8px; padding: 20px; text-align: center; transition: box-shadow 0.2s; }

.product-card:hover { box-shadow: 0 4px 20px rgba(0,0,0,0.1); }

.product-image { height: 200px; display: flex; align-items: center; justify-content: center; margin-bottom: 15px; }

.product-image img { max-width: 100%; max-height: 100%; object-fit: contain; }

.product-brand { font-size: 12px; color: var(--am-blue); font-weight: 600; margin-bottom: 5px; }

.product-name { font-weight: 600; font-size: 14px; margin-bottom: 10px; min-height: 40px; }

.product-price { font-size: 20px; font-weight: 700; color: var(--am-black); margin-bottom: 15px; }

.product-btn { display: inline-block; background: var(--am-blue); color: white; padding: 10px 30px; border-radius: 4px; text-decoration: none; font-weight: 600; font-size: 14px; transition: background 0.2s; }

.product-btn:hover { background: var(--am-blue-dark); }

.cta-section { background: var(--am-blue); padding: 50px 40px; text-align: center; color: white; }

.cta-section h2 { font-size: 28px; margin-bottom: 10px; }

.cta-section p { font-size: 16px; margin-bottom: 25px; opacity: 0.9; }

.cta-btn { display: inline-block; background: white; color: var(--am-blue); padding: 15px 40px; border-radius: 4px; text-decoration: none; font-weight: 700; }

.dealer-section { background: var(--am-black); padding: 60px 40px; text-align: center; color: white; }

.dealer-section h2 { font-size: 32px; margin-bottom: 15px; }

.dealer-section > p { color: #999; margin-bottom: 30px; }

.dealer-cards { display: flex; justify-content: center; gap: 30px; flex-wrap: wrap; }

.dealer-card { background: #333; padding: 30px; border-radius: 8px; width: 300px; text-align: left; }

.dealer-card h3 { font-size: 18px; margin-bottom: 10px; }

.dealer-card p { font-size: 14px; color: #ccc; margin-bottom: 5px; }

.dealer-card a { display: inline-block; margin-top: 15px; color: var(--am-blue); text-decoration: none; font-weight: 600; }

.footer { background: var(--am-black); color: #999; padding: 40px; }

.footer-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 30px; margin-bottom: 30px; }

.footer h4 { color: white; font-size: 14px; font-weight: 700; margin-bottom: 15px; }

.footer ul { list-style: none; }

.footer li { margin-bottom: 8px; }

.footer a { color: #999; text-decoration: none; font-size: 13px; }

.footer a:hover { color: var(--am-blue); }

.footer-bottom { text-align: center; padding-top: 30px; border-top: 1px solid #333; font-size: 12px; }

.nw-badge { position: fixed; bottom: 20px; right: 20px; background: linear-gradient(135deg, #3b82f6, #1d4ed8); color: white; padding: 12px 20px; border-radius: 30px; font-size: 13px; font-weight: 600; box-shadow: 0 4px 20px rgba(59,130,246,0.4); display: flex; align-items: center; gap: 8px; text-decoration: none; z-index: 1000; }

.nw-badge:hover { transform: translateY(-2px); }

@media (max-width: 1200px) { .products-grid { grid-template-columns: repeat(3, 1fr); } .categories-grid { grid-template-columns: repeat(2, 1fr); } }

@media (max-width: 900px) { .products-grid { grid-template-columns: repeat(2, 1fr); } .header { flex-direction: column; gap: 15px; } .search-box { width: 100%; } }

@media (max-width: 600px) { .products-grid { grid-template-columns: 1fr; } .categories-grid { grid-template-columns: 1fr; } .footer-grid { grid-template-columns: repeat(2, 1fr); } }

