/* Vevor-style CSS for GardenPartsPro */
:root {
  --gpp-primary: #1a3a5c;
  --gpp-accent: #FFD700;
  --gpp-dark: #0d1f30;
  --gpp-light: #f5f7fa;
  --gpp-gray: #6c757d;
}

/* Top Bar */
.site-top-bar {
  background: var(--gpp-dark);
  color: white;
  padding: 8px 0;
  font-size: 13px;
}
.site-top-bar a { color: white; text-decoration: none; }
.top-bar-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.top-bar-left { display: flex; gap: 20px; }
.top-bar-right { display: flex; gap: 15px; align-items: center; }
.top-bar-right a:hover { color: var(--gpp-accent); }
.top-bar-divider { color: var(--gpp-gray); }

/* Header */
.site-header {
  background: white;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
}
.header-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 15px 20px;
  display: flex;
  align-items: center;
  gap: 30px;
}
.site-logo img { height: 50px; }
.header-search {
  flex: 1;
  display: flex;
  border: 2px solid var(--gpp-primary);
  border-radius: 4px;
  overflow: hidden;
}
.header-search select {
  border: none;
  padding: 10px 15px;
  background: var(--gpp-light);
  font-size: 14px;
  min-width: 140px;
}
.header-search input {
  flex: 1;
  border: none;
  padding: 10px 15px;
  font-size: 14px;
}
.header-search button {
  background: var(--gpp-primary);
  color: white;
  border: none;
  padding: 10px 25px;
  font-weight: bold;
  cursor: pointer;
}
.header-icons {
  display: flex;
  gap: 20px;
  align-items: center;
}
.header-icon {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 12px;
  color: var(--gpp-primary);
  text-decoration: none;
}
.header-icon:hover { color: var(--gpp-accent); }
.header-icon span { font-size: 20px; }

/* Navigation */
.main-nav {
  background: var(--gpp-primary);
}
.nav-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
}
.nav-categories {
  background: var(--gpp-dark);
  color: white;
  padding: 12px 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: bold;
  min-width: 220px;
}
.nav-links {
  display: flex;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}
.nav-links li a {
  color: white;
  text-decoration: none;
  padding: 14px 20px;
  display: block;
  font-size: 14px;
  font-weight: 500;
}
.nav-links li a:hover { background: var(--gpp-accent); color: var(--gpp-dark); }

/* Hero Banner */
.hero-section {
  background: linear-gradient(135deg, var(--gpp-primary), var(--gpp-dark));
  color: white;
  padding: 60px 20px;
  text-align: center;
}
.hero-content {
  max-width: 800px;
  margin: 0 auto;
}
.hero-section h1 {
  font-size: 42px;
  margin-bottom: 15px;
}
.hero-section h2 {
  font-size: 24px;
  color: var(--gpp-accent);
  margin-bottom: 20px;
}
.hero-section p {
  font-size: 18px;
  opacity: 0.9;
  margin-bottom: 30px;
}
.hero-btn {
  display: inline-block;
  background: var(--gpp-accent);
  color: var(--gpp-dark);
  padding: 15px 40px;
  font-weight: bold;
  text-decoration: none;
  border-radius: 4px;
  font-size: 16px;
}

/* Category Section */
.category-section {
  padding: 50px 20px;
  background: white;
}
.section-title {
  text-align: center;
  font-size: 28px;
  color: var(--gpp-primary);
  margin-bottom: 40px;
}
.category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  max-width: 1400px;
  margin: 0 auto;
}
.category-card {
  border: 1px solid #eee;
  padding: 30px 20px;
  text-align: center;
  border-radius: 8px;
  transition: all 0.3s;
  text-decoration: none;
  color: var(--gpp-dark);
}
.category-card:hover {
  border-color: var(--gpp-primary);
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
  transform: translateY(-3px);
}
.category-card .icon { font-size: 48px; margin-bottom: 15px; }
.category-card h3 { font-size: 16px; margin-bottom: 5px; }
.category-card p { font-size: 13px; color: var(--gpp-gray); }

/* Products Section */
.products-section {
  padding: 50px 20px;
  background: var(--gpp-light);
}
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  max-width: 1400px;
  margin: 0 auto;
}
.product-card {
  background: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  transition: all 0.3s;
}
.product-card:hover {
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
  transform: translateY(-5px);
}
.product-image {
  height: 200px;
  background: var(--gpp-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gpp-gray);
}
.product-info { padding: 20px; }
.product-title {
  font-size: 15px;
  color: var(--gpp-dark);
  margin-bottom: 10px;
  line-height: 1.4;
}
.product-price {
  font-size: 22px;
  color: var(--gpp-primary);
  font-weight: bold;
}
.product-price .old {
  font-size: 14px;
  color: var(--gpp-gray);
  text-decoration: line-through;
  margin-left: 10px;
  font-weight: normal;
}
.product-btn {
  display: block;
  background: var(--gpp-primary);
  color: white;
  text-align: center;
  padding: 12px;
  text-decoration: none;
  margin-top: 15px;
  border-radius: 4px;
  font-weight: bold;
}
.product-btn:hover { background: var(--gpp-dark); }

/* Features Section */
.features-section {
  padding: 50px 20px;
  background: white;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}
.feature-item {
  text-align: center;
  padding: 30px;
}
.feature-icon {
  font-size: 48px;
  margin-bottom: 20px;
}
.feature-item h3 { font-size: 18px; color: var(--gpp-dark); margin-bottom: 10px; }
.feature-item p { font-size: 14px; color: var(--gpp-gray); }

/* Newsletter */
.newsletter-section {
  background: var(--gpp-primary);
  color: white;
  padding: 50px 20px;
  text-align: center;
}
.newsletter-section h2 { font-size: 24px; margin-bottom: 15px; }
.newsletter-form {
  max-width: 500px;
  margin: 0 auto;
  display: flex;
  gap: 10px;
}
.newsletter-form input {
  flex: 1;
  padding: 15px;
  border: none;
  border-radius: 4px;
}
.newsletter-form button {
  background: var(--gpp-accent);
  color: var(--gpp-dark);
  border: none;
  padding: 15px 30px;
  font-weight: bold;
  cursor: pointer;
  border-radius: 4px;
}

/* Footer */
.site-footer {
  background: var(--gpp-dark);
  color: white;
  padding: 50px 20px 20px;
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  max-width: 1400px;
  margin: 0 auto 40px;
}
.footer-col h4 {
  color: var(--gpp-accent);
  margin-bottom: 20px;
  font-size: 16px;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col li { margin-bottom: 10px; }
.footer-col a { color: rgba(255,255,255,0.8); text-decoration: none; font-size: 14px; }
.footer-col a:hover { color: var(--gpp-accent); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 20px;
  text-align: center;
  font-size: 13px;
  color: rgba(255,255,255,0.6);
}
