

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

body {
  font-family: Meiryo UI;
  background-color: var(--light-bg);
  line-height: 1.6;
}

/* ==================== HEADER STYLES ==================== */

.header {
  background: white;
  padding: 6px 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.navbar-brand img {
  height: 70px;
  width: auto;
}

.delivery-info {
  font-size: 14px;
  color: var(--dark-text);
  display: flex;
  align-items: center;
  gap: 5px;
}

.search-container {
  position: relative;
  flex-grow: 1;
  margin: 0 20px;
}

.search-box {
  width: 100%;
  padding: 12px 50px 12px 20px;
  border: 2px solid #e0e0e0;
  border-radius: 25px;
  font-size: 16px;
  outline: none;
  transition: border-color 0.3s;
}

.search-box:focus {
  border-color: var(--primary-green);
}

.search-icon {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  color: #999;
  font-size: 18px;
}

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

.login-btn {
  background: none;
  border: none;
  font-size: 16px;
  color: var(--dark-text);
  cursor: pointer;
}

.cart-btn {
  background: var(--dark-text);
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 8px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  transition: background 0.3s;
}

.cart-btn:hover {
  background: var(--primary-green);
}

/* ==================== FOOTER STYLES ==================== */

.footer {
  background: #f8f9fa;
  padding: 50px 0 20px 0;
  margin-top: 60px;
  border-top: 1px solid #e0e0e0;
}

.footer h6 {
  font-weight: bold;
  color: #333;
  margin-bottom: 20px;
  font-size: 16px;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

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

.footer-links a {
  color: #666;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--primary-green);
}

.app-download {
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
}

.app-download img {
  height: 40px;
  border-radius: 8px;
  transition: transform 0.3s ease;
}

.app-download img:hover {
  transform: scale(1.05);
}

.social-icons {
  display: flex;
  gap: 10px;
}

.social-icons a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-decoration: none;
  transition: transform 0.3s ease;
}

.social-icons a:hover {
  transform: scale(1.1);
}

.social-icons .facebook {
  background: #3b5998;
}

.social-icons .twitter {
  background: #1da1f2;
}

.social-icons .instagram {
  background: #e4405f;
}

.social-icons .linkedin {
  background: #0077b5;
}

.social-icons .threads {
  background: #333;
}

.footer-bottom {
  border-top: 1px solid #e0e0e0;
  padding-top: 20px;
  margin-top: 30px;
  font-size: 13px;
  color: #666;
}

/* ==================== RESPONSIVE DESIGN ==================== */

@media (max-width: 768px) {
  .header .container-fluid {
    flex-wrap: wrap;
    gap: 15px;
  }

  .search-container {
    order: 3;
    width: 100%;
    margin: 0;
  }
}

@media (max-width: 576px) {
  .navbar-brand img {
    height: 60px;
  }
}