/* Sushivora — site styles. Ported 1:1 from the Sushivora Claude Design component. */

:root {
  --red: #B3272D;
  --red-dark: #8C1F24;
  --ink: #1C1A17;
  --ink-2: #2B241F;
  --bg: #FAF8F4;
  --border: #E6E1D6;
  --text: #4A453D;
  --text-2: #3A3630;
  --tan: #D8CBB0;
  --muted: #8A8171;
  --muted-2: #7A6F58;
  --line: #F0ECE2;
  --footer-border: #33302A;
  --footer-muted: #7A7364;
  --footer-text: #B7AF9D;
  --font-serif: Georgia, 'Times New Roman', 'Noto Serif', serif;
  --font-sans: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-sans);
  background: var(--bg);
  color: var(--ink);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
a { color: var(--red); text-decoration: none; }
a:hover { color: var(--red-dark); text-decoration: underline; }
img { max-width: 100%; display: block; }
input, textarea, select, button { font-family: var(--font-sans); }
.container { max-width: 1280px; margin: 0 auto; padding: 0 32px; }
.page-content { flex: 1; }

/* Buttons */
.btn { display: inline-block; border: none; cursor: pointer; font-size: 15px; padding: 15px 30px; }
.btn-primary { background: var(--red); color: #fff; }
.btn-primary:hover { background: var(--red-dark); color: #fff; text-decoration: none; }
.btn-outline { background: transparent; color: #fff; border: 1px solid #fff; }
.btn-outline:hover { background: rgba(255,255,255,0.1); color: #fff; text-decoration: none; }
.btn-dark { background: var(--ink); color: #fff; border: none; cursor: pointer; }
.btn-dark:hover { background: #000; color: #fff; text-decoration: none; }
.btn-block { width: 100%; text-align: center; }
.btn-sm { padding: 8px 14px; font-size: 12.5px; }

/* Header */
.site-header { position: sticky; top: 0; z-index: 50; background: #fff; border-bottom: 1px solid var(--border); }
.header-inner { display: flex; align-items: center; justify-content: space-between; padding: 16px 32px; gap: 20px; flex-wrap: wrap; }
.logo { font-family: var(--font-serif); font-size: 25px; font-weight: 700; letter-spacing: 0.3px; color: var(--ink); }
.logo:hover { color: var(--ink); text-decoration: none; }
.logo .dot { color: var(--red); }
.nav { display: flex; gap: 20px; flex-wrap: wrap; }
.nav-item { font-size: 13.5px; padding: 4px 0; color: var(--ink); font-weight: 500; }
.nav-item:hover { color: var(--red); text-decoration: none; }
.nav-item.active { color: var(--red); font-weight: 700; }
.header-actions { display: flex; align-items: center; gap: 14px; }
.order-link { font-size: 13px; color: var(--text); }
.order-link:hover { color: var(--red); }
.cart-btn { border: 1px solid var(--ink); background: transparent; padding: 8px 14px; font-size: 13px; cursor: pointer; white-space: nowrap; color: var(--ink); }
.cart-btn:hover { background: var(--ink); color: #fff; }

/* Hero */
.hero { background: linear-gradient(135deg, var(--ink), var(--ink-2)); color: var(--bg); padding: 110px 32px 90px; text-align: center; }
.hero-title { font-family: var(--font-serif); font-size: 54px; font-weight: 700; }
.hero-sub { font-size: 17px; color: var(--tan); margin-top: 16px; max-width: 620px; margin-left: auto; margin-right: auto; line-height: 1.6; }
.hero-actions { display: flex; gap: 16px; justify-content: center; margin-top: 34px; flex-wrap: wrap; }

/* Sections */
.section { padding: 70px 32px; }
.section-title { font-family: var(--font-serif); font-size: 28px; font-weight: 600; margin-bottom: 30px; text-align: center; }
.section-alt { background: #fff; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }

/* Explore grid (home) */
.explore-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 24px; }
.explore-card { background: #fff; border: 1px solid var(--border); cursor: pointer; }
.explore-card:hover { text-decoration: none; box-shadow: 0 6px 18px rgba(0,0,0,0.06); }
.explore-img { height: 150px; width: 100%; object-fit: cover; }
.explore-body { padding: 18px; }
.explore-body .card-title { font-family: var(--font-serif); font-size: 18px; font-weight: 600; color: var(--ink); }
.explore-body .card-desc { font-size: 13px; color: var(--text); margin-top: 6px; }
.explore-body .card-link { font-size: 13px; color: var(--red); margin-top: 12px; }

/* Product grid */
.product-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 22px; }
.product-grid.grid-wide { grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 24px; }
.product-card { background: #fff; border: 1px solid var(--border); display: flex; flex-direction: column; }
.product-img { height: 160px; width: 100%; object-fit: cover; }
.product-body { padding: 16px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.badge { display: inline-block; background: var(--red); color: #fff; font-size: 11px; padding: 3px 8px; align-self: flex-start; }
.product-title { font-family: var(--font-serif); font-size: 16px; font-weight: 600; }
.product-desc { font-size: 12.5px; color: var(--text); flex: 1; }
.product-footer { display: flex; align-items: center; justify-content: space-between; margin-top: 6px; }
.product-price { font-size: 15px; font-weight: 700; }
.add-btn { background: var(--ink); color: #fff; border: none; padding: 8px 14px; font-size: 12.5px; cursor: pointer; }
.add-btn:hover { background: #000; }

/* Why us */
.why-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 28px; text-align: center; }
.why-num { font-family: var(--font-serif); font-size: 19px; font-weight: 600; color: var(--red); }
.why-title { font-size: 15px; font-weight: 600; margin-top: 8px; }
.why-text { font-size: 13px; color: var(--text); margin-top: 8px; line-height: 1.6; }

/* Testimonials */
.testimonials { background: var(--ink); color: var(--bg); padding: 70px 32px; }
.testimonials-inner { max-width: 1000px; margin: 0 auto; }
.testimonial-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 28px; }
.testimonial-text { font-size: 14px; line-height: 1.7; color: var(--tan); }
.testimonial-author { font-size: 12px; margin-top: 10px; color: var(--muted); }

/* CTA banner */
.cta-banner { background: #FDECEC; border: 1px solid var(--border); padding: 44px; display: flex; flex-wrap: wrap; gap: 24px; align-items: center; justify-content: space-between; }
.cta-title { font-family: var(--font-serif); font-size: 24px; font-weight: 600; }
.cta-text { font-size: 14px; color: var(--text); margin-top: 8px; }

/* Newsletter */
.newsletter { max-width: 640px; margin: 0 auto; padding: 0 32px 80px; text-align: center; }
.newsletter-title { font-family: var(--font-serif); font-size: 22px; font-weight: 600; }
.newsletter-text { font-size: 13px; color: var(--text); margin-top: 8px; }
.newsletter-form { display: flex; gap: 10px; margin-top: 18px; flex-wrap: wrap; justify-content: center; }
.newsletter-success { margin-top: 18px; font-size: 14px; color: var(--red); }

/* Forms */
.form-input, .form-textarea {
  padding: 12px 14px; border: 1px solid var(--border); font-size: 14px; background: #fff; color: var(--ink); width: 100%;
}
.form-input:focus, .form-textarea:focus { outline: 2px solid var(--red); outline-offset: -1px; }
.newsletter-form .form-input { min-width: 240px; width: auto; flex: 1; }
.form-error { color: var(--red); font-size: 13px; margin-top: 10px; }
.honeypot-field { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

/* Page header (inner pages) */
.page-header { max-width: 1280px; margin: 0 auto; padding: 60px 32px 0; }
.page-header.narrow { max-width: 1100px; }
.page-header.legal { max-width: 760px; padding-bottom: 0; }
.page-title { font-family: var(--font-serif); font-size: 34px; font-weight: 700; }
.page-sub { font-size: 14.5px; color: var(--text); margin-top: 10px; max-width: 640px; }
.page-body { max-width: 1280px; margin: 0 auto; padding: 0 32px 80px; }
.page-body.narrow { max-width: 1100px; }
.page-body.legal { max-width: 760px; padding-top: 0; padding-bottom: 90px; }
.page-body.about { max-width: 900px; }

/* Filter chips */
.filter-bar { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 28px; }
.filter-chip { padding: 9px 16px; font-size: 13px; cursor: pointer; border: 1px solid var(--ink); background: transparent; color: var(--ink); }
.filter-chip.active { background: var(--red); color: #fff; border-color: var(--red); }
.filter-chip:hover { text-decoration: none; }

/* Subsection heading (nigiri/sashimi) */
.subsection-title { font-family: var(--font-serif); font-size: 22px; font-weight: 600; margin-top: 44px; margin-bottom: 20px; }
.subsection-title:first-of-type { margin-top: 0; }

/* Special offers */
.offers-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 22px; margin-top: 36px; }
.offer-card { background: #fff; border: 1px solid var(--border); padding: 28px; display: flex; flex-direction: column; gap: 10px; }
.offer-head { display: flex; justify-content: space-between; align-items: flex-start; gap: 12px; }
.offer-title { font-family: var(--font-serif); font-size: 20px; font-weight: 700; }
.offer-tag { background: var(--red); color: #fff; font-size: 12px; padding: 4px 10px; white-space: nowrap; }
.offer-desc { font-size: 14px; color: var(--text); }
.offer-meta { font-size: 12px; color: var(--muted-2); font-family: monospace; }

/* Blog */
.blog-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 24px; margin-top: 36px; }
.blog-card { background: #fff; border: 1px solid var(--border); }
.blog-img { height: 150px; width: 100%; object-fit: cover; }
.blog-body { padding: 20px; display: flex; flex-direction: column; gap: 8px; }
.blog-tag { font-size: 11px; color: var(--red); font-weight: 700; letter-spacing: 0.5px; text-transform: uppercase; }
.blog-title { font-family: var(--font-serif); font-size: 18px; font-weight: 600; line-height: 1.4; }
.blog-excerpt { font-size: 13.5px; color: var(--text); line-height: 1.6; }

/* About */
.about-photo { height: 320px; width: 100%; object-fit: cover; margin: 28px 0; }
.about-text { font-size: 15px; color: var(--text-2); line-height: 1.8; display: flex; flex-direction: column; gap: 16px; }
.stats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 24px; margin-top: 44px; }
.stat-num { font-family: var(--font-serif); font-size: 22px; font-weight: 700; color: var(--red); }
.stat-label { font-size: 13.5px; color: var(--text); margin-top: 6px; }

/* Contact */
.contact-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 20px; margin-top: 32px; }
.contact-card { background: #fff; border: 1px solid var(--border); padding: 22px; }
.contact-card-title { font-weight: 700; font-family: var(--font-serif); font-size: 17px; }
.contact-card-text { font-size: 13.5px; color: var(--text); margin-top: 8px; line-height: 1.7; }
.visit-photo { position: relative; height: 260px; margin-top: 32px; overflow: hidden; }
.visit-photo img { width: 100%; height: 100%; object-fit: cover; }
.visit-photo-caption { position: absolute; inset: 0; background: linear-gradient(0deg, rgba(28,26,23,0.75), rgba(28,26,23,0.1)); color: #fff; display: flex; align-items: flex-end; padding: 22px; font-family: var(--font-serif); font-size: 18px; }
.contact-form-wrap { margin-top: 44px; max-width: 520px; }
.contact-form { display: flex; flex-direction: column; gap: 12px; margin-top: 16px; }
.contact-success { margin-top: 16px; font-size: 14px; color: var(--red); }

/* Checkout */
.checkout-grid { display: grid; grid-template-columns: 1.4fr 1fr; gap: 32px; margin-top: 28px; align-items: start; }
@media (max-width: 800px) { .checkout-grid { grid-template-columns: 1fr; } }
.checkout-form { display: flex; flex-direction: column; gap: 14px; background: #fff; border: 1px solid var(--border); padding: 28px; }
.chip-row { display: flex; gap: 8px; flex-wrap: wrap; }
.chip { padding: 9px 16px; font-size: 13px; cursor: pointer; border: 1px solid var(--ink); background: transparent; color: var(--ink); }
.chip.active { background: var(--red); color: #fff; border-color: var(--red); }
.chip-label { font-size: 13px; color: var(--text); margin-top: 4px; }
.order-summary { background: #fff; border: 1px solid var(--border); padding: 24px; }
.order-summary-title { font-family: var(--font-serif); font-size: 18px; font-weight: 600; margin-bottom: 14px; }
.summary-line { display: flex; justify-content: space-between; font-size: 13.5px; padding: 8px 0; border-bottom: 1px solid var(--line); }
.summary-empty { font-size: 13px; color: var(--muted-2); }
.summary-total { display: flex; justify-content: space-between; font-size: 15px; font-weight: 700; margin-top: 14px; padding-top: 14px; border-top: 1px solid var(--border); }
.order-success { background: #fff; border: 1px solid var(--border); padding: 44px; margin-top: 28px; text-align: center; }
.order-success-title { font-family: var(--font-serif); font-size: 22px; font-weight: 600; color: var(--red); }
.order-success-text { font-size: 14px; color: var(--text); margin-top: 10px; }

/* Legal */
.legal-section { margin-top: 30px; }
.legal-section:first-child { margin-top: 30px; }
.legal-heading { font-family: var(--font-serif); font-size: 18px; font-weight: 600; margin-bottom: 10px; }
.legal-line { font-size: 14px; color: var(--text-2); line-height: 1.7; margin-bottom: 6px; }

/* Footer */
.site-footer { background: var(--ink); color: var(--tan); padding: 60px 32px 24px; }
.footer-grid { max-width: 1280px; margin: 0 auto; display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 36px; }
.footer-logo { font-family: var(--font-serif); font-size: 22px; font-weight: 700; color: #fff; }
.footer-about { font-size: 13px; margin-top: 12px; line-height: 1.7; color: var(--footer-text); }
.footer-col-title { font-size: 13px; font-weight: 700; color: #fff; margin-bottom: 12px; }
.footer-links { display: flex; flex-direction: column; gap: 8px; font-size: 13px; }
.footer-links a { color: var(--tan); }
.footer-links a:hover { color: #fff; }
.footer-contact { font-size: 13px; line-height: 1.8; color: var(--footer-text); }
.footer-bottom { max-width: 1280px; margin: 36px auto 0; border-top: 1px solid var(--footer-border); padding-top: 20px; font-size: 12px; color: var(--footer-muted); }

/* Cart drawer */
.cart-backdrop { position: fixed; inset: 0; background: rgba(0,0,0,0.4); z-index: 90; display: none; }
.cart-backdrop.open { display: block; }
.cart-drawer {
  position: fixed; top: 0; right: 0; height: 100vh; width: 400px; max-width: 92vw; background: #fff; z-index: 91;
  transform: translateX(110%); transition: transform 0.3s ease; display: flex; flex-direction: column; box-shadow: -6px 0 30px rgba(0,0,0,0.18);
}
.cart-drawer.open { transform: translateX(0); }
.cart-drawer-header { display: flex; justify-content: space-between; align-items: center; padding: 22px; border-bottom: 1px solid var(--border); }
.cart-drawer-title { font-family: var(--font-serif); font-size: 20px; font-weight: 600; }
.cart-close { cursor: pointer; font-size: 20px; background: none; border: none; line-height: 1; }
.cart-drawer-body { flex: 1; overflow-y: auto; padding: 18px 22px; }
.cart-empty { font-size: 13.5px; color: var(--muted-2); }
.cart-item { display: flex; gap: 12px; padding: 14px 0; border-bottom: 1px solid var(--line); align-items: flex-start; }
.cart-item-thumb { width: 60px; height: 60px; flex-shrink: 0; object-fit: cover; background: var(--line); }
.cart-item-body { flex: 1; }
.cart-item-name { font-size: 14px; font-weight: 600; }
.cart-item-controls { display: flex; align-items: center; gap: 10px; margin-top: 8px; }
.qty-btn { border: 1px solid var(--border); width: 24px; height: 24px; display: flex; align-items: center; justify-content: center; cursor: pointer; font-size: 14px; background: #fff; padding: 0; }
.cart-item-total { margin-left: auto; font-size: 13.5px; font-weight: 700; }
.cart-item-remove { cursor: pointer; color: var(--red); font-size: 13px; background: none; border: none; padding: 0; }
.cart-drawer-footer { padding: 22px; border-top: 1px solid var(--border); }
.cart-total-row { display: flex; justify-content: space-between; font-size: 16px; font-weight: 700; margin-bottom: 16px; }

/* Toast */
.toast { position: fixed; bottom: 24px; left: 50%; transform: translateX(-50%); background: var(--ink); color: #fff; padding: 12px 24px; font-size: 14px; z-index: 99; display: none; }
.toast.show { display: block; }

/* Cookie banner */
.cookie-banner { position: fixed; bottom: 0; left: 0; right: 0; background: var(--ink); color: #fff; padding: 18px 32px; display: none; justify-content: space-between; align-items: center; gap: 24px; flex-wrap: wrap; z-index: 95; }
.cookie-banner.show { display: flex; }
.cookie-text { font-size: 13px; max-width: 700px; color: var(--tan); }
.cookie-text span { text-decoration: underline; cursor: pointer; color: #fff; }
.cookie-accept { background: var(--red); color: #fff; border: none; padding: 11px 24px; font-size: 13px; cursor: pointer; }

@media (max-width: 640px) {
  .hero { padding: 80px 20px 60px; }
  .hero-title { font-size: 38px; }
  .cart-drawer { width: 100%; }
}
