.site-header {
  border-bottom: 1px solid #ddd;
}

.header-banner {
  background-color: #1f2933;
  padding: 18px 0;
  text-align: center;
}

.brand-name {
  color: #ffffff;
  font-size: 26px;
  font-weight: 700;
  letter-spacing: 1px;
}
.nav-bar {
  display: flex;
  justify-content: center;
  padding: 12px 0;
  background-color: #ffffff;
}

.nav-bar nav a {
  margin: 0 16px;
  text-decoration: none;
  color: #1f2933;
  font-weight: 600;
}

.nav-bar nav a:hover {
  color: #c62828;
}

/* ===== HEADER ===== */
.site-header {
  background: #1f2933;
  color: #ffffff;
}

.header-banner {
  background: #c62828;
  text-align: center;
  padding: 12px 0;
}

.header-banner h1 {
  margin: 0;
  font-size: 22px;
  letter-spacing: 1px;
}
/* ===== DROPDOWN CATEGORIES ===== */
.dropdown-columns {
  display: grid;
  grid-template-columns: repeat(3, minmax(180px, 1fr));
  gap: 24px;
  padding: 16px;
}

.dropdown-group {
  min-width: 160px;
}

.dropdown-title {
  font-size: 13px;
  font-weight: bold;
  margin-bottom: 8px;
  color: #c62828;
  text-transform: uppercase;
}

.dropdown-group a {
  display: block;
  padding: 6px 0;
  font-size: 14px;
}

/* ===== NAV BAR ===== */
.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  padding: 14px 0;
}

.nav-link {
  color: #ffffff;
  text-decoration: none;
  font-weight: bold;
  cursor: pointer;
}

/* ===== DROPDOWN ===== */
.dropdown {
  position: relative;
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #ffffff;
  min-width: 220px;
  box-shadow: 0 6px 16px rgba(0,0,0,0.2);
  z-index: 1000;
}

.dropdown-menu a {
  display: block;
  padding: 10px 14px;
  color: #222;
  text-decoration: none;
  font-size: 14px;
}

.dropdown-menu a:hover {
  background: #f2f2f2;
}

/* SHOW MENU */
.dropdown:hover .dropdown-menu {
  display: block;
}



* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  background: #f7f7f7;
  color: #222;
}

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

/* HEADER */
.site-header {
  background: #1f2a44;
  color: #fff;
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  color: #3412f8;
  text-decoration: none;
  font-weight: bold;
  font-size: 18px;
}

nav a {
  color: #fff;
  text-decoration: none;
  margin-left: 20px;
  font-size: 14px;
}

nav a:hover {
  text-decoration: underline;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  position: relative;
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #1e1e1e;
  padding: 10px 0;
  min-width: 220px;
  border-radius: 6px;
  z-index: 1000;
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #1e1e1e;
  padding: 20px;
  border-radius: 6px;
  z-index: 1000;
}

.dropdown-menu.show {
  display: grid;
}

.dropdown-columns {
  grid-template-columns: repeat(3, minmax(180px, 1fr));
  gap: 24px;
}

.dropdown-group a {
  display: block;
  padding: 6px 0;
  color: #ffffff;
  text-decoration: none;
}


.dropdown-toggle {
  background: none;
  border: none;
  color: #ffffff;
  font-size: 16px;
  cursor: pointer;
}

/* BUTTONS */
.btn-primary {
  display: inline-block;
  background: #c62828;
  color: #fff;
  padding: 10px 18px;
  text-decoration: none;
  border-radius: 4px;
  font-weight: bold;
}

.btn-secondary {
  display: inline-block;
  background: #e0e0e0;
  color: #222;
  padding: 10px 18px;
  text-decoration: none;
  border-radius: 4px;
  margin-left: 10px;
}

/* FOOTER */
.site-footer {
  background: #1f2a44;
  color: #fff;
  margin-top: 40px;
}

.site-footer p {
  margin: 0;
  font-size: 13px;
}
.site-footer a:hover {
  color: #38bdf8;
}

/* ===== HOME PRODUCT CATEGORIES ===== */
.category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.category-card {
  position: relative;
  background: #ffffff;
  border: 1px solid #ddd;
  padding: 30px 20px;
  text-align: center;
  font-weight: bold;
  cursor: pointer;
}

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

/* Dropdown menu */
.category-card .dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background: #ffffff;
  border: 1px solid #ddd;
  box-shadow: 0 6px 14px rgba(0,0,0,0.15);
  z-index: 10;
}

.category-card .dropdown-menu a {
  display: block;
  padding: 10px;
  text-decoration: none;
  color: #222;
  font-weight: normal;
}

.category-card .dropdown-menu a:hover {
  background: #f5f5f5;
}

/* Show on hover */
.category-card:hover .dropdown-menu {
  display: block;
}
.category-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

.category-card {
  padding: 16px 10px;
  font-size: 14px;
}
.contact-section {
  padding: 60px 0;
}

.contact-section h1 {
  margin-bottom: 10px;
}

.contact-section p {
  max-width: 600px;
  margin-bottom: 30px;
}

.contact-form {
  max-width: 600px;
}

.contact-form label {
  display: block;
  margin-top: 18px;
  margin-bottom: 6px;
  font-weight: 600;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 15px 20px;
  font-size: 15px;
  border: 1px solid #ccc;
  border-radius: 4px;
  margin-bottom: 18px;
}

.contact-form textarea {
  resize: vertical;
   margin-bottom: 12px;
}

.contact-form button {
  margin-top: 24px;
  padding: 15px 20px;
  font-size: 16px;
}

@media (max-width: 900px) {
  .category-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 500px) {
  .category-grid {
    grid-template-columns: 1fr;
  }
}
