
:root {
  --gold: #D4AF37;
  --purple: #6B21A8;
  --yellow: #FACC15;
  --ink: #111827;
  --bg: #ffffff;
  --muted: #6b7280;
  --border: #e5e7eb;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: #111827;
  background: var(--bg);
}

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(12px);
  background: rgba(255,255,255,0.9);
  border-bottom: 1px solid var(--gold);
}

.site-header .logo-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-circle {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  background: radial-gradient(circle at 30% 30%, var(--gold), var(--yellow));
}

.brand-name {
  margin: 0;
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--purple);
  text-shadow: 0 1px 2px rgba(0,0,0,0.15);
}

.tagline {
  margin: 0;
  font-size: 0.7rem;
  color: var(--ink);
}

.site-header > div {
  max-width: 1120px;
  margin: 0 auto;
  padding: 10px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.main-nav {
  display: flex;
  gap: 8px;
  font-size: 0.8rem;
}

.main-nav a {
  padding: 6px 10px;
  border-radius: 999px;
}

.main-nav a:hover {
  background: #f3f4f6;
}

.hero {
  background: linear-gradient(135deg, #ffffff 0%, rgba(212,175,55,0.13) 100%);
}

.hero-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 56px 16px 40px;
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(0, 2.5fr);
  gap: 32px;
}

.hero-text h2 {
  font-size: clamp(2.2rem, 4vw, 3.1rem);
  margin: 0;
  font-weight: 900;
  letter-spacing: -0.04em;
}

.hero-text .accent {
  color: var(--purple);
}

.hero-text p {
  margin-top: 1rem;
  font-size: 1rem;
  color: #374151;
}

.hero-actions {
  margin-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-note {
  margin-top: 1.25rem;
  font-size: 0.8rem;
  color: #4b5563;
}

.hero-card {
  background: #ffffff;
  border-radius: 18px;
  border: 2px solid var(--gold);
  padding: 16px 18px;
  box-shadow: 0 18px 40px rgba(15,23,42,0.08);
  align-self: center;
}

.hero-card h3 {
  margin: 0 0 8px;
  font-size: 1rem;
  font-weight: 700;
}

.hero-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 0.85rem;
  color: #4b5563;
}

.hero-card li + li {
  margin-top: 4px;
}

.section {
  max-width: 1120px;
  margin: 0 auto;
  padding: 40px 16px;
}

.section h2 {
  margin: 0 0 6px;
  font-size: 1.8rem;
  font-weight: 800;
}

.section-lead {
  margin: 0;
  font-size: 0.95rem;
  color: #4b5563;
}

.store-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 18px;
  margin-top: 20px;
}

.product-card {
  border-radius: 16px;
  border: 2px solid var(--gold);
  background: #ffffff;
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  box-shadow: 0 14px 30px rgba(15,23,42,0.05);
}

.product-image {
  height: 120px;
  border-radius: 12px;
  background: #f3f4f6;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  color: #9ca3af;
  font-weight: 600;
}

.product-card h3 {
  margin: 6px 0 0;
  font-size: 1rem;
}

.product-card .price {
  margin: 0;
  font-size: 0.9rem;
  font-weight: 600;
}

.small {
  font-size: 0.78rem;
  color: #6b7280;
}

.gallery-grid {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 14px;
}

.gallery-item {
  border-radius: 14px;
  border: 1px solid var(--border);
  background: #f9fafb;
  height: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 600;
  color: #4b5563;
}

.video-wrap {
  margin-top: 18px;
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(0, 2fr);
  gap: 18px;
  align-items: stretch;
}

.video-placeholder {
  background: #111827;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #374151;
}

.play-icon {
  width: 60px;
  height: 60px;
  border-radius: 999px;
  border: 2px solid #f3f4f6;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #f9fafb;
  font-size: 26px;
}

.video-text {
  border-radius: 18px;
  border: 1px solid var(--border);
  background: #ffffff;
  padding: 16px 18px;
}

.video-text p {
  margin: 0 0 8px;
}

.video-text p:last-child {
  margin-bottom: 0;
}

.two-column {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.1fr);
  gap: 18px;
  margin-top: 18px;
}

.card {
  border-radius: 18px;
  border: 2px solid var(--gold);
  background: #ffffff;
  padding: 16px 18px;
  box-shadow: 0 14px 30px rgba(15,23,42,0.05);
}

.card h3 {
  margin: 0 0 8px;
  font-size: 1.05rem;
  font-weight: 700;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-top: 10px;
  font-size: 0.85rem;
}

.field span {
  font-weight: 500;
}

.field-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.field-row .field {
  margin-top: 0;
}

.field input,
.field select,
.field textarea {
  border-radius: 10px;
  border: 1px solid var(--border);
  padding: 6px 8px;
  font-size: 0.85rem;
}

.field textarea {
  resize: vertical;
}

.upload-zone {
  display: block;
  margin-top: 10px;
  border-radius: 14px;
  border: 2px dashed var(--border);
  background: #f9fafb;
  cursor: pointer;
}

.upload-zone input {
  display: none;
}

.upload-inner {
  padding: 20px;
  text-align: center;
  font-size: 0.85rem;
  color: #6b7280;
}

.upload-icon {
  font-size: 1.6rem;
  margin-bottom: 6px;
}

.mockup-frame {
  margin-top: 10px;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: #f9fafb;
  padding: 10px;
}

.mockup-product {
  position: relative;
  width: 100%;
  padding-bottom: 120%;
  background: #e5e7eb;
  border-radius: 16px;
  overflow: hidden;
}

.product-outline {
  position: absolute;
  top: 12%;
  left: 12%;
  right: 12%;
  bottom: 12%;
  border-radius: 14px;
  border: 1px dashed #9ca3af;
}

#mockup-image {
  position: absolute;
  max-width: 70%;
  max-height: 70%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.estimate-box {
  margin-top: 12px;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: #f9fafb;
  padding: 10px 12px;
  font-size: 0.9rem;
}

.estimate-main {
  font-weight: 600;
  margin-bottom: 4px;
}

.payment-box {
  border-radius: 12px;
  border: 1px solid var(--border);
  background: #f9fafb;
  padding: 8px 10px;
  font-size: 0.85rem;
  margin-bottom: 8px;
}

.payment-box code {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  font-size: 0.8rem;
}

.booking-layout {
  align-items: flex-start;
}

.small-card {
  max-width: 360px;
}

.slot-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 6px;
  margin-top: 6px;
}

.slot-btn {
  border-radius: 999px;
  border: 1px solid var(--border);
  background: #f9fafb;
  padding: 4px 8px;
  font-size: 0.78rem;
  cursor: pointer;
}

.slot-btn:hover {
  border-color: var(--purple);
}

.preference-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 0.8rem;
}

.preference-row label {
  display: flex;
  align-items: center;
  gap: 4px;
}

.policy-list {
  padding-left: 18px;
  margin: 0;
  font-size: 0.85rem;
  color: #4b5563;
}

.policy-list li + li {
  margin-top: 6px;
}

.policy-list strong {
  font-weight: 700;
}

.site-footer {
  margin-top: 40px;
  background: #111827;
  color: #f9fafb;
  padding-top: 18px;
}

.footer-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 16px 12px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 14px;
  font-size: 0.8rem;
}

.footer-brand {
  font-size: 1rem;
  font-weight: 800;
  color: var(--gold);
}

.footer-heading {
  font-weight: 600;
  margin-bottom: 4px;
}

.subtle {
  opacity: 0.8;
}

.footer-bottom {
  border-top: 1px solid #1f2937;
  text-align: center;
  padding: 6px 0 10px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  padding: 8px 16px;
  font-size: 0.9rem;
  font-weight: 600;
}

.btn.primary {
  background: var(--purple);
  color: #ffffff;
}

.btn.primary:hover {
  filter: brightness(0.95);
}

.btn.outline {
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--ink);
}

.btn.outline:hover {
  background: #f3f4f6;
}

.chat-toggle {
  position: fixed;
  right: 16px;
  bottom: 16px;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: none;
  background: var(--purple);
  color: #ffffff;
  box-shadow: 0 18px 40px rgba(15,23,42,0.25);
  cursor: pointer;
  font-size: 20px;
}

.chat-box {
  position: fixed;
  right: 16px;
  bottom: 76px;
  width: 280px;
  max-height: 360px;
  border-radius: 18px;
  border: 1px solid var(--border);
  background: #ffffff;
  display: none;
  flex-direction: column;
  box-shadow: 0 18px 40px rgba(15,23,42,0.25);
}

.chat-box.open {
  display: flex;
}

.chat-header {
  padding: 6px 10px;
  background: var(--purple);
  color: #ffffff;
  border-radius: 18px 18px 0 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.8rem;
}

.chat-header button {
  border: none;
  background: transparent;
  color: #ffffff;
  cursor: pointer;
  font-size: 0.8rem;
}

.chat-messages {
  padding: 6px 6px 4px;
  overflow-y: auto;
  flex: 1;
  font-size: 0.78rem;
}

.chat-message {
  padding: 4px 7px;
  border-radius: 11px;
  margin-bottom: 3px;
  max-width: 80%;
}

.chat-message.bot {
  background: #f3f4f6;
  color: #111827;
  align-self: flex-start;
}

.chat-message.user {
  background: #e0e7ff;
  color: #111827;
  align-self: flex-end;
}

.chat-input-row {
  border-top: 1px solid var(--border);
  padding: 4px 6px;
  display: flex;
  gap: 4px;
}

.chat-input-row input {
  flex: 1;
  border-radius: 999px;
  border: 1px solid var(--border);
  padding: 4px 8px;
  font-size: 0.8rem;
}

.chat-input-row button {
  border-radius: 999px;
  border: none;
  background: var(--purple);
  color: #ffffff;
  font-size: 0.8rem;
  padding: 4px 8px;
  cursor: pointer;
}

@media (max-width: 768px) {
  .hero-inner {
    grid-template-columns: minmax(0,1fr);
  }
  .video-wrap {
    grid-template-columns: minmax(0,1fr);
  }
  .two-column {
    grid-template-columns: minmax(0,1fr);
  }
  .site-header > div {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
  .main-nav {
    flex-wrap: wrap;
  }
}
