/* ===== Base ===== */
* { margin: 0; padding: 0; box-sizing: border-box; }
/* Use same uppercase bold style site-wide */


body,
h1, h2, h3, h4, h5, h6,
.nav-links a,
.category-text h2,
.category-text a,
.new-arrivals h2,
.product h3,
.product p,
.footer-links summary,
.footer-links a,
.footer-extra a,
.footer-legal p {
  font-family: 'Arial',sans-serif;
  font-weight: 300;          /* bold */
   /* all caps */
  letter-spacing: 0.5px;     /* slight spacing for the clean look */
}

/* ===== Navbar (same as contact) ===== */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 20px;
  position: sticky;
  top: 0;
  background: #fff;
  z-index: 1000;
}
.nav-links {
  list-style: none;
  display: flex;
  gap: 25px;
}
.nav-links li a {
  text-decoration: none;
  color: #111;
  font-weight: bold;
  font-size: 14px;
  font-family: ;
}
.nav-links li a.active { text-decoration: underline; }
.nav-center {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
.logo img { height: 40px; width: auto; }

.nav-right {
  display: flex;
  align-items: center;
  gap: 8px;
}
.icon-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid #111;
  color: #111;
  transition: all 0.3s ease;
}
.icon-btn:hover { background:#111; color:#fff; }
.icon-btn svg { width:20px; height:20px; }

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 24px; height: 18px;
  border: none;
  background: none;
  cursor: pointer;
}
.hamburger span {
  display: block;
  height: 3px;
  background: #111;
  border-radius: 2px;
  transition: 0.3s;
}
.hamburger.open span:nth-child(1){transform:rotate(45deg) translateY(7px);}
.hamburger.open span:nth-child(2){opacity:0;}
.hamburger.open span:nth-child(3){transform:rotate(-45deg) translateY(-7px);}

@media (max-width: 768px) {
  .hamburger { display: flex; }
  .nav-links {
    position: absolute;
    top: 60px;
    left: 0;
    right: 0;
    background: #fff;
    flex-direction: column;
    gap: 20px;
    padding: 20px;
    display: none;
  }
  .nav-links.open { display: flex; }
}

/* ===== About Section ===== */
.about-section {
  padding: 60px 8%;
  background: #f7f7f7;
}
.about-container {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 60px;
}
.about-info h2 {
  font-size: 0.9rem;
  text-transform: uppercase;
  margin-bottom: 12px;
  font-weight: 700;
}
.about-info ul {
  list-style: none;
  margin: 0 0 30px;
  font-size: 0.8rem;
}
.about-info li { margin-bottom: 8px; }
.about-info a {
  text-decoration: none;
  color: #111;
}
.about-info a:hover { text-decoration: underline; }

.about-content h1 {
  font-size: 1.3rem;
  margin-bottom: 20px;
  font-weight: 700;
}
.about-content h2 {
  font-size: 0.8rem;
  margin-top: 30px;
  margin-bottom: 12px;
  font-weight: 700;
}
.about-content p {
  margin-bottom: 16px;
  font-size: 0.8rem;
  line-height: 1.8;
}

/* Responsive */
@media (max-width: 900px) {
  .about-container { grid-template-columns: 1fr; }
  .about-info { display: none; }   /* hide left column on mobile */
}
