* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: #fffaf7;
  color: #3c2a21;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

/* ============================================
   HEADER & NAVIGATION
   ============================================ */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 60px;
  background-color: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  position: sticky;
  top: 0;
  z-index: 1000;
  position: relative;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 1001;
}

.brand img {
  width: 50px;
  height: 50px;
}

.brand h1 {
  font-size: 1.4rem;
  font-weight: 700;
}

/* Hamburger Menu - Hidden on Desktop */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 1001;
}

.menu-toggle span {
  width: 26px;
  height: 3px;
  background-color: #4b2e19;
  transition: all 0.3s ease;
}

/* Desktop Navigation */
nav ul {
  display: flex;
  list-style: none;
  gap: 25px;
  margin: 0;
  padding: 0;
}

nav a {
  position: relative;
  text-decoration: none;
  color: #4b2e19;
  font-weight: 600;
  padding: 6px 2px;
  transition: color 0.3s;
}

nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0%;
  height: 2px;
  background-color: #7a4a2f;
  transition: width 0.3s;
}

nav a:hover {
  color: #7a4a2f;
}

nav a:hover::after {
  width: 100%;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  position: relative;
  height: 85vh;
  overflow: hidden;
}

.slides img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1s;
}

.slides img.show {
  opacity: 1;
}

.hero-overlay {
  position: absolute;
  top: 50%;
  left: 10%;
  transform: translateY(-50%);
  color: #fff;
  max-width: 500px;
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.4);
  z-index: 2;
}

.hero-overlay h2 {
  font-size: 2.5em;
  margin-bottom: 15px;
}

.hero-overlay p {
  font-size: 1.1em;
}

/* Slideshow Controls */
.arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 2em;
  color: #fff;
  cursor: pointer;
  padding: 10px;
  user-select: none;
  z-index: 3;
}

.left {
  left: 10px;
}

.right {
  right: 10px;
}

.dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 3;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #fff;
  opacity: 0.6;
  cursor: pointer;
}

.dot.active {
  opacity: 1;
}

/* ============================================
   SECTIONS
   ============================================ */
section {
  padding: 80px 20px;
}

/* ABOUT */
#about {
  text-align: center;
  background-color: #fffdfb;
}

#about h2 {
  font-size: 2.2em;
  margin-bottom: 20px;
}

#about p {
  max-width: 700px;
  margin: 0 auto;
  font-size: 1.05em;
  line-height: 1.6;
}

/* BESTSELLERS */
#bestsellers {
  text-align: center;
  background: linear-gradient(135deg, #d7b59c, #a47449);
}

#bestsellers h2 {
  font-size: 2.2em;
  margin-bottom: 40px;
  color: #3c2a21;
}

.bestsellers-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px;
}

.item {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  width: 300px;
  transition: transform 0.3s ease;
}

.item:hover {
  transform: translateY(-5px);
}

.item img {
  height: 200px;
  object-fit: cover;
  border-top-left-radius: 16px;
  border-top-right-radius: 16px;
  width: 100%;
}

.item h3 {
  font-size: 1.3em;
  margin: 15px 0 5px;
  color: #4b2e19;
}

.item p {
  padding: 0 15px 20px;
  font-size: 0.95em;
  color: #5a4635;
}

.menu-button {
  display: inline-block;
  margin-top: 50px;
  padding: 12px 30px;
  background-color: #4b2e19;
  color: #fff;
  border-radius: 30px;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.3s ease;
}

.menu-button:hover {
  background-color: #7a4a2f;
}

/* FIND US */
.find {
  text-align: center;
}

.find h3 {
  font-size: 2em;
  margin-bottom: 10px;
}

.map-inner {
  max-width: 900px;
  margin: 40px auto 0;
  display: flex;
  flex-wrap: wrap;
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.map-image {
  flex: 1;
  min-width: 300px;
}

.map-image iframe {
  width: 100%;
  height: 300px;
  border: none;
}

.map-info {
  flex: 1;
  padding: 20px;
  text-align: left;
  min-width: 300px;
}

.map-info h4 {
  font-size: 1.3em;
  margin-bottom: 10px;
}

.ghost {
  margin-top: 15px;
  padding: 10px 20px;
  border: 2px solid #4b2e19;
  background: transparent;
  color: #4b2e19;
  border-radius: 25px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease;
}

.ghost:hover {
  background-color: #4b2e19;
  color: #fff;
}

/* FOOTER */
footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  padding: 50px 20px;
  background: #3c2a21;
  color: #fff;
}

.footer-col {
  max-width: 250px;
  margin: 15px;
}

.footer-col h5 {
  margin-bottom: 10px;
  font-size: 1.1em;
}

.socials {
  display: flex;
  gap: 10px;
  margin-top: 10px;
}

.socials img {
  width: 24px;
  height: 24px;
}

.copyright {
  background: #2a1b14;
  text-align: center;
  padding: 10px;
  font-size: 0.9em;
}

/* ============================================
   MOBILE RESPONSIVE - TABLETS & PHONES
   ============================================ */
@media screen and (max-width: 768px) {
  
  /* HEADER */
  header {
    padding: 15px 20px;
  }

  .brand img {
    width: 40px;
    height: 40px;
  }

  .brand h1 {
    font-size: 1.2rem;
  }

  /* SHOW HAMBURGER MENU */
  .menu-toggle {
    display: flex;
  }

  /* TRANSFORM NAVIGATION TO MOBILE MENU */
  nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    width: 100%;
    background-color: #fff;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
  }

  nav.active {
    max-height: 500px;
  }

  nav ul {
    flex-direction: column;
    padding: 0;
    gap: 0;
  }

  nav ul li {
    width: 100%;
    border-bottom: 1px solid #f0f0f0;
  }

  nav ul li:last-child {
    border-bottom: none;
  }

  nav a {
    display: block;
    width: 100%;
    padding: 16px 20px;
  }

  nav a::after {
    display: none;
  }

  /* HAMBURGER ANIMATION TO X */
  .menu-toggle.open span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
  }

  .menu-toggle.open span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle.open span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
  }

  /* HERO SECTION */
  .hero {
    height: 60vh;
    min-height: 450px;
  }

  .hero-overlay {
    left: 5%;
    right: 5%;
    max-width: 90%;
  }

  .hero-overlay h2 {
    font-size: 1.8em;
  }

  .hero-overlay p {
    font-size: 1em;
  }

  .arrow {
    font-size: 1.5em;
  }

  .dots {
    bottom: 15px;
  }

  /* SECTIONS */
  section {
    padding: 60px 20px;
  }

  #about h2, #bestsellers h2, .find h3 {
    font-size: 1.8em;
  }

  /* BESTSELLERS */
  .bestsellers-container {
    gap: 25px;
  }

  .item {
    width: 90%;
    max-width: 350px;
  }

  /* MAP */
  .map-inner {
    flex-direction: column;
  }

  .map-image iframe {
    height: 250px;
  }

  /* FOOTER */
  footer {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-col {
    max-width: 100%;
  }
}

/* ============================================
   EXTRA SMALL MOBILE
   ============================================ */
@media screen and (max-width: 480px) {
  
  header {
    padding: 12px 15px;
  }

  .brand img {
    width: 35px;
    height: 35px;
  }

  .brand h1 {
    font-size: 1.1rem;
  }

  .hero {
    height: 50vh;
    min-height: 400px;
  }

  .hero-overlay h2 {
    font-size: 1.4em;
  }

  .hero-overlay p {
    font-size: 0.9em;
  }

  .arrow {
    font-size: 1.3em;
    padding: 5px;
  }

  .dots {
    gap: 6px;
  }

  .dot {
    width: 9px;
    height: 9px;
  }

  section {
    padding: 40px 15px;
  }

  #about h2, #bestsellers h2, .find h3 {
    font-size: 1.5em;
  }

  .item {
    width: 100%;
  }

  .map-image iframe {
    height: 200px;
  }
}