:root {
  --brand-neon: #f4a261;
  --brand-dark: #3e2b22;
  --brand-muted: #f5f0eb;
  --ink: #3e2b22;
  --muted-ink: #6b5b52;
  --surface: #fcfbf9;
  --border: #e8e2dc;
}
* { box-sizing: border-box; }
html, body { margin:0; padding:0; font-family: 'Berlin Sans FB', 'Nunito', 'Quicksand', "Noto Sans TC", "PingFang TC", sans-serif; color: var(--ink); background-color: var(--surface); background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.06'/%3E%3C/svg%3E"), url('../backgrounds/background2.jpg'); background-repeat: repeat, no-repeat; background-position: 0 0, center; background-size: auto, cover; background-attachment: scroll, fixed; min-height: 100vh; }
a { color: inherit; text-decoration: none; }
a:hover { text-decoration: underline; }
.container { max-width: 1120px; margin: 0 auto; padding: 0 16px; }

/* Premium Header - Three-Row Layout */
header { 
  position: relative; 
  background: var(--surface); 
  border-bottom: 1px solid var(--border);
  font-family: 'Berlin Sans FB', 'Nunito', 'Quicksand', sans-serif;
}

header .container {
  display: flex;
  flex-direction: column;
  position: relative;
}

/* Remove ALL default button/input borders and backgrounds */
button, input, select, textarea {
  border: none;
  background: none;
  outline: none;
  padding: 0;
  margin: 0;
  font-family: inherit;
}

button:focus, input:focus, select:focus, textarea:focus {
  outline: none;
}

/* Row 1: Utility Bar */
.utility-bar {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  border-bottom: 1px solid var(--border);
  padding: 5px 20px;
  width: 100%;
}

.utility-right {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-shrink: 0;
}

.utility-item {
  display: flex;
  align-items: center;
  gap: 4px;
  color: var(--ink);
  text-decoration: none;
  background: none;
  border: none;
  cursor: pointer;
  font-family: 'Berlin Sans FB', 'Nunito', 'Quicksand', sans-serif;
  font-size: 13px;
  font-weight: 400;
  padding: 0;
  transition: color 0.2s ease;
}

.utility-item:hover {
  color: var(--brand-neon);
}

.currency, .language {
  font-size: 13px;
  color: var(--ink);
}

.chevron {
  font-size: 10px;
  color: #999;
  margin-left: 2px;
  line-height: 1;
}

.language-icon {
  font-size: 12px;
  opacity: 0.7;
}

.search-icon, .login-icon, .cart-icon {
  font-size: 14px;
  color: var(--ink);
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
}

.cart-item {
  position: relative;
}

.cart-count {
  position: absolute;
  top: -6px;
  right: -6px;
  background: #333333;
  color: #ffffff;
  font-size: 9px;
  padding: 1px 4px;
  border-radius: 8px;
  min-width: 14px;
  text-align: center;
  line-height: 1.4;
}

/* Row 2: Brand Bar */
.brand-bar {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 10px 0;
}

.brand-logo {
  max-height: 80px;
  width: auto;
  display: block;
}

.brand-subtitle {
  margin-top: 2px;
  font-family: 'Berlin Sans FB Demi Bold', 'Berlin Sans FB', 'Nunito', 'Quicksand', sans-serif;
  font-size: 14px;
  letter-spacing: 1.5px;
  color: #3e2b22;
  font-weight: bold;
  text-transform: uppercase;
}

/* Row 3: Navigation Bar - Sticky */
.nav-bar {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 999;
  background-color: var(--surface);
  border-top: 1px solid var(--border);
  width: 100%;
  display: block;
}

.nav-bar .container {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 16px 16px;
}

.nav-bar nav {
  display: flex;
  justify-content: center;
  align-items: center;
}

.nav-bar nav ul {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 18px;
  letter-spacing: 0.02em;
}

.nav-bar nav ul li {
  position: relative;
}

.nav-bar nav a {
  color: var(--ink);
  text-decoration: none;
  transition: color 0.2s ease;
  display: flex;
  align-items: center;
  gap: 4px;
  font-weight: 400;
}

.nav-bar nav a:hover {
  color: var(--brand-neon);
}

.nav-bar nav a.special-nav-item {
  color: var(--ink);
  font-weight: 400;
}

.nav-bar nav a.special-nav-item:hover {
  color: #7a6b62;
  text-shadow: 0 0 1px rgba(126, 115, 95, 0.5);
}

.has-dropdown {
  display: flex;
  align-items: center;
}

.dropdown-arrow {
  font-size: 10px;
  color: #999;
  margin-left: 6px;
  font-weight: 300;
  line-height: 1;
  display: inline-block;
  vertical-align: middle;
}

.nav-book-now {
  background: transparent;
  color: var(--ink) !important;
  padding: 8px 20px;
  border: 1px solid var(--border);
  border-radius: 20px;
  text-decoration: none !important;
  transition: all 0.2s ease;
  font-weight: 400;
}

.nav-book-now:hover {
  background: var(--brand-muted);
  border-color: var(--ink);
  color: var(--ink) !important;
  text-decoration: none !important;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
}

.mobile-menu-toggle span {
  width: 24px;
  height: 2px;
  background: #333333;
  transition: all 0.3s ease;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  .utility-bar {
    padding: 10px 0;
    gap: 15px;
  }
  
  .utility-item {
    position: relative;
    font-size: 12px;
  }
  
  .cart-item {
    position: relative;
  }
  
  .cart-count {
    position: absolute;
    top: -6px;
    right: -6px;
    background: #333333;
    color: #ffffff;
    font-size: 9px;
    padding: 1px 4px;
    border-radius: 8px;
    min-width: 14px;
    text-align: center;
    line-height: 1.4;
  }
  
  .brand-bar {
    padding: 8px 0;
  }
  
  .brand-logo {
    max-height: 70px;
  }
  
  .brand-subtitle {
    font-size: 12px;
    letter-spacing: 1px;
    margin-top: 2px;
  }
  
  .search-icon, .login-icon, .cart-icon {
    font-size: 14px;
  }
  
  .nav-bar {
    padding: 12px 0;
  }
  
  .mobile-menu-toggle {
    display: flex;
  }
  
  .nav-bar nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #ffffff;
    border-top: 1px solid #eaeaea;
    padding: 16px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  }
  
  .nav-bar nav.active {
    display: block;
  }
  
  .nav-bar nav ul {
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
  }
  
  .nav-bar nav ul li {
    width: 100%;
  }
  
  .nav-bar nav a {
    padding: 8px 0;
    width: 100%;
  }
}

.book-fab { position: fixed; right: 16px; bottom: 16px; background: var(--brand-neon); color: var(--ink); border: 0; padding: 12px 16px; border-radius: 999px; font-weight: 700; cursor: pointer; box-shadow: 0 4px 12px rgba(62,43,34,0.2); }

/* Hero section */
.hero { position: relative; overflow: hidden; border-bottom: 1px solid var(--border); }
.hero-bg { position: absolute; inset: 0; background: transparent; }
.hero-inner { position: relative; padding: 56px 0; display: grid; gap: 16px; }
.hero h1 { margin: 0; font-size: 40px; line-height: 1.05; letter-spacing: 0.01em; }
.hero p { margin: 0; color: var(--muted-ink); font-size: 16px; }
.cta-row { display: flex; gap: 12px; margin-top: 16px; flex-wrap: wrap; }

/* Hero slideshow - auto-fading */
.hero-slideshow {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  max-height: 60vh;
  overflow: hidden;
  border-radius: 16px;
  margin-top: 20px;
}
.hero-slideshow .hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.6s ease;
}
.hero-slideshow .hero-slide.active {
  opacity: 1;
  z-index: 1;
}
.hero-slideshow .hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hero-slide-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.5);
  background: rgba(62, 43, 34, 0.25);
  color: #fff;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}
.hero-slide-btn:hover {
  background: rgba(62, 43, 34, 0.5);
  border-color: #fff;
  transform: translateY(-50%) scale(1.05);
}
.hero-slide-prev {
  left: 12px;
}
.hero-slide-next {
  right: 12px;
}

/* About Us section - 2-column layout */
.about-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}
@media (max-width: 768px) {
  .about-two-col { grid-template-columns: 1fr; }
}
.about-text {
  color: var(--brand-dark);
  line-height: 1.8;
}
.about-headline {
  margin: 0 0 1rem;
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--brand-dark);
  line-height: 1.5;
}
.about-body, .about-craft {
  margin: 0 0 1rem;
  font-size: 1rem;
}
.about-brand {
  margin: 0 0 1rem;
  font-size: 1rem;
}
.about-visual {
  position: relative;
}
.about-visual img {
  display: block;
  width: 100%;
  height: auto;
  border: 8px solid #fff;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(62, 43, 34, 0.15);
  transform: rotate(2deg);
}
.about-caption {
  display: block;
  margin-top: 0.5rem;
  font-size: 0.9rem;
  color: var(--muted-ink);
  font-style: italic;
}

/* Product gallery - Dolls & Figures / Bags */
.product-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  margin-top: 30px;
}
.product-gallery.two-col {
  grid-template-columns: repeat(2, 1fr);
}
@media (max-width: 520px) {
  .product-gallery.two-col {
    grid-template-columns: 1fr;
  }
}
#pillows {
  margin-top: 60px;
}
.product-gallery img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(62, 43, 34, 0.08);
  border: 4px solid #ffffff;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.product-gallery img:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(62, 43, 34, 0.15);
}

/* Lightbox - full size image popup */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(62, 43, 34, 0.9);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  cursor: pointer;
}
.lightbox.open {
  display: flex;
}
.lightbox-content {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
  cursor: default;
}
.lightbox img {
  max-width: 90vw;
  max-height: 90vh;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 12px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
  display: block;
}
.lightbox-close {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 10000;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  transition: background 0.2s ease, border-color 0.2s ease;
}
.lightbox-close:hover {
  background: rgba(255, 255, 255, 0.3);
  border-color: #fff;
}

.btn { display:inline-block; padding: 12px 16px; border-radius: 20px; border: 1px solid var(--border); background: var(--brand-dark); color: #fcfbf9; font-weight: 700; cursor: pointer; }
.btn.secondary { background: var(--surface); color: var(--ink); border-color: var(--border); }

/* Sections */
section { padding: 40px 0; }
.section-title { font-size:22px; margin:0 0 12px; }
.muted { color: var(--muted-ink); }
.cards { display:grid; grid-template-columns: 1fr; gap:16px; }
@media (min-width: 760px) { .cards { grid-template-columns: repeat(3, 1fr); } }
.card { border: 1px solid var(--border); border-radius: 20px; background: var(--surface); overflow: hidden; display: flex; flex-direction: column; }
.media { aspect-ratio: 16/9; background: linear-gradient(180deg, #e8ffd0, #fff); display:flex; align-items:center; justify-content:center; color:#88a04d; font-weight: 700; }
.card-body { padding: 12px; display:grid; gap:8px; }
.chip { display:inline-block; font-size:12px; background: var(--brand-muted); padding: 2px 8px; border-radius: 999px; }

/* Tabs */
.tabs { display:flex; gap:8px; flex-wrap:wrap; margin-bottom: 12px; }
.tab { padding: 8px 10px; border-radius: 999px; background:#fff; border:1px solid var(--border); cursor:pointer; }
.tab.active { background: var(--brand-neon); border-color: #bde96e; }
.grid { display:grid; grid-template-columns: 1fr; gap: 12px; }
@media (min-width: 760px) { .grid { grid-template-columns: repeat(3, 1fr); } }

/* Booking band */
.band { background: var(--brand-dark); color:#fff; border-radius: 14px; padding: 20px; display:flex; align-items:center; justify-content:space-between; gap:12px; flex-wrap:wrap; }
.band .cta-group { display: flex; gap: 15px; flex-wrap: wrap; justify-content: flex-start; align-items: center; }

/* Testimonials */
.row { display:grid; grid-template-columns: 1fr; gap:12px; }
@media (min-width: 760px) { .row { grid-template-columns: repeat(3, 1fr); } }
.avatar { width: 40px; height: 40px; border-radius: 50%; background: #e6e9ef; }

/* FAQ */
.accordion { border:1px solid var(--border); border-radius: 12px; overflow:hidden; }
.acc-item + .acc-item { border-top:1px solid var(--border); }
.acc-head { background:#fff; padding:12px; display:flex; justify-content:space-between; align-items:center; cursor:pointer; }
.acc-body { padding:12px; background:#fff; display:none; }
.acc-item.open .acc-body { display:block; }

footer { border-top: 1px solid var(--border); padding: 24px 0; color: var(--muted-ink); font-size: 13px; }

/* Utilities */
.sr { position:absolute; left:-9999px; }
html { scroll-behavior: smooth; }


