/* General Body and Container Styles */
body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f7f6;
    color: #333;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.header {
  background: white;
  padding: 1rem 0;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 100;
}

.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo span {
  background: #000;
  color: white;
  padding: 0.5rem 1rem;
  font-weight: bold;
  font-size: 1.2rem;
}

.nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-link {
  text-decoration: none;
  color: #666;
  font-weight: 500;
  transition: color 0.3s;
}

.nav-link:hover,
.nav-link.active {
  color: #000;
}

.cart-icon {
  font-size: 1.2rem;
  cursor: pointer;
}

.signup-btn {
  background: #000;
  color: white;
  padding: 0.5rem 1rem;
  text-decoration: none;
  font-weight: 500;
  transition: background 0.3s;
}

.signup-btn:hover {
  background: #333;
}

/* Minimalist Contact Form Styles */
.contact-container {
    max-width: 600px;
    margin: 50px auto;
    padding: 30px;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.contact-container h2 {
    text-align: center;
    color: #333;
    margin-bottom: 10px;
}

.contact-container p {
    text-align: center;
    color: #777;
    margin-bottom: 30px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-weight: bold;
    margin-bottom: 8px;
    color: #555;
}

.form-group input, .form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 16px;
    box-sizing: border-box;
    font-family: 'Roboto', sans-serif;
}

.form-group input:focus, .form-group textarea:focus {
    border-color: #000;
    outline: none;
}

button[type="submit"] {
    width: 100%;
    padding: 12px;
    background-color: #000;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 18px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

button[type="submit"]:hover {
    background-color: #fff;
    color: #000;
    border: 1px solid #000;
}

/* Footer Styles */
.footer {
  background: #000;
  color: white;
  padding: 3rem 0 1rem;
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 2rem;
}

.footer-logo {
  background: white;
  color: black;
  padding: 0.5rem 1rem;
  display: inline-block;
  margin-bottom: 1rem;
  font-weight: bold;
}

.footer-brand p {
  color: #ccc;
  line-height: 1.6;
}

.footer-section h4 {
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.footer-section ul {
  list-style: none;
  padding: 0;
}

.footer-section ul li {
  margin-bottom: 0.5rem;
}

.footer-section ul li a, .footer-section a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-section ul li a:hover, .footer-section a:hover {
  color: white;
}

.footer-section p {
  color: #ccc;
  line-height: 1.6;
}

.footer-bottom {
  border-top: 1px solid #555;
  padding-top: 1rem;
  text-align: center;
  color: #ccc;
}

.view-more-btn a {
  color: white;
  text-decoration: none;
}

.buy-btn a {
  color: white;
  text-decoration: none;
}