
html, body {
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  background-color: #000;
  color: #fff;
  line-height: 1.6;
  padding: 0 1rem;
}

header, footer {
  background-color: #111;
  text-align: center;
  padding: 2rem 1rem;
}

h1, h2 {
  color: #0f0;
}

a {
  text-decoration: none;
  color: #0ff;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin-top: 1rem;
}

.card {
  background-color: #222;
  border: 1px solid #333;
  padding: 1.5rem;
  text-align: center;
  transition: background 0.3s, transform 0.2s;
  border-radius: 10px;
}

.card:hover {
  background-color: #0f0;
  color: #000;
  transform: scale(1.05);
}

.kir-form {
  background: #111;
  padding: 2rem;
  border-radius: 10px;
  max-width: 500px;
  margin: 2rem auto;
}

.kir-form label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: bold;
}

.kir-form input, .kir-form textarea {
  width: 100%;
  padding: 0.75rem;
  margin-bottom: 1rem;
  border: none;
  border-radius: 5px;
}

.kir-form button {
  background: #0f0;
  color: #000;
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 5px;
  font-weight: bold;
  cursor: pointer;
}

section {
  margin: 2rem 0;
}

@media (min-width: 1024px) {
  body {
    max-width: 100%;
    margin: 0;
  }
}
/* === KIR Drop Custom Styles === */
body {
  font-family: 'Poppins', sans-serif;
  background-color: #fff;
  color: #111;
  line-height: 1.6;
}

header, section, footer {
  max-width: 100%;
  margin: auto;
  padding: 40px 20px;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #000;
  color: #fff;
  position: sticky;
  top: 0;
  z-index: 999;
}

nav ul {
  display: flex;
  list-style: none;
  gap: 30px;
}

nav ul li {
  position: relative;
}

nav ul li ul {
  position: absolute;
  top: 100%;
  left: 0;
  background: #111;
  display: none;
  flex-direction: column;
  min-width: 140px;
  box-shadow: 0 8px 16px rgba(0,0,0,0.4);
}

nav ul li:hover ul {
  display: flex;
}

nav a {
  color: white;
  text-decoration: none;
  padding: 10px 15px;
  display: block;
}

section h2 {
  font-size: 28px;
  margin-bottom: 20px;
  text-align: center;
}

form input, form textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: 16px;
  border: 1px solid #ccc;
  border-radius: 4px;
}

form button {
  background: #000;
  color: #fff;
  border: none;
  padding: 12px 20px;
  font-weight: bold;
  cursor: pointer;
  border-radius: 4px;
}

footer {
  text-align: center;
  padding-top: 20px;
  font-size: 14px;
  background-color: #f9f9f9;
}


/* Fix unwanted white space under header */
body, html {
  margin: 0;
  padding: 0;
  width: 100%;
}

/* Ensure site is full width on PC */
.main-header, .category, .checkout {
  max-width: 100%;
  width: 100%;
  margin: 0;
}

/* Mobile responsiveness tweaks */
@media (max-width: 768px) {
  .main-header {
    flex-direction: column;
    text-align: center;
  }
}

/* Optional: Slightly improve form layout */
input, select, button {
  font-size: 1rem;
  padding: 0.75rem;
  border-radius: 8px;
  border: 1px solid #ccc;
  margin-bottom: 1rem;
}

button {
  background-color: black;
  color: white;
  cursor: pointer;
}

button:hover {
  background-color: #333;
}
