body {
  font-family: 'Open Sans', sans-serif;
  margin: 0;
  padding: 0;
  padding-top: 120px;
  background-color: #fff; /* full white background */
  color: #333;
}

/* Container */
.container {
  max-width: 100%;
  margin: 0;
  background: none;
  min-height: 100vh;
  box-shadow: none;
}

/* Header */
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 25px;
  background: #fff;
  border-bottom: 1px solid #eee;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

/* Adjust sections to account for sticky header height */
section {
  scroll-margin-top: 120px;
}

.logo-img {
  height: 90px;
  width: auto;
}

/* Welcome Banner */
.welcome {
  background: #b39d5d;
  text-align: left;
  padding: 12px 20px;
  color: #fff;
  font-size: 18px;
  margin: 15px;
  border-radius: 5px;
  font-family: 'Georgia', serif;
  font-weight: 500;
  letter-spacing: 0.5px;
}

/* Hero */
.hero img {
  width: 100%;
  display: block;
  border-radius: 10px;
  margin-top: 10px;
}

/* Gallery */
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 15px;
  padding: 20px;
}
.gallery img {
  width: 100%;
  border-radius: 10px;
  object-fit: cover;
}

/* Floating Buttons */
.floating-btn {
  position: fixed;
  right: 20px;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: #fff;
  text-decoration: none;
  box-shadow: 0 4px 10px rgba(0,0,0,0.25);
  transition: transform 0.3s ease, background 0.3s ease;
  z-index: 1000;
}
.whatsapp-btn { bottom: 20px; background: #25D366; }
.shop-btn { bottom: 90px; background: #a78c48; }
.floating-btn:hover {
  transform: scale(1.1);
  background: #fff;
  color: #000;
}

/* Footer */
.footer {
  background: #fff6f2;
  text-align: center;
  padding: 15px;
  border-top: 1px solid #eee;
  font-size: 14px;
  color: #555;
}

/* Navigation (desktop default) */
.nav-menu {
  flex: 0.7;
  margin: 0 15px;
}

.nav-menu ul {
  display: flex;
  justify-content: space-around;
  gap: 30px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-menu ul li a {
  text-decoration: none;
  color: #b39d5d;
  font-weight: 600;
  font-size: 18px;
  position: relative;
  padding: 10px 0;
  transition: color 0.3s ease;
}

.nav-menu ul li a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 0;
  height: 2px;
  background: #b39d5d;
  transition: width 0.3s ease;
}

.nav-menu ul li a:hover::after,
.nav-menu ul li a.active::after {
  width: 100%;
}

/* Cart */
.cart-btn {
  background: #b39d5d;
  border: none;
  padding: 10px 12px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 18px;
  color: #fff;
}

/* Hamburger (hidden by default) */
.menu-toggle {
  display: none;
  font-size: 26px;
  background: none;
  border: none;
  cursor: pointer;
  color: #b39d5d;
  z-index: 1100;
  margin-left: 10px;
}

/* Mobile Header */
@media (max-width: 768px) {
  .header {
    justify-content: space-between;
    padding: 10px 15px;
    width: 100%;
    box-sizing: border-box;
  }

  .logo-img {
    height: 60px;
  }

  .menu-toggle {
    display: block;
    font-size: 24px;
    color: #b39d5d;
  }

  /* Mobile nav (collapsed by default) */
  .nav-menu {
    max-height: 0;
    overflow: hidden;
    flex-direction: column;
    width: 100%;
    margin: 0;
    padding: 0;
    background: #b39d5d;
    border-radius: 0 0 12px 12px;
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 999;
    transition: max-height 0.4s ease;
  }

  .nav-menu.active {
    max-height: 400px; /* enough space for links */
    padding: 15px 15px;
  }

  .nav-menu ul {
    flex-direction: column;
    gap: 12px;
    padding: 0;
    margin: 0;
  }

  .nav-menu ul li a {
    color: #fff;
    font-size: 16px;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255,255,255,0.2);
  }

  .nav-menu ul li:last-child a {
    border-bottom: none;
  }

  .cart-wrapper {
    display: none;
  }
}

/* Contact Links */
.contact-item a {
  color: #b39d5d;
  text-decoration: none;
}
.contact-item a:hover {
  text-decoration: underline;
}

/* Smooth animation */
@keyframes slideDown {
  from { opacity: 0; transform: translateY(-15px); }
  to { opacity: 1; transform: translateY(0); }
}

html {
  scroll-behavior: smooth;
}
