:root {
  --color-bg: #faf7f2;
  --color-surface: #ffffff;
  --color-text: #1f1a17;
  --color-muted: #6b5f57;
  --color-accent: #c0392b;
  --color-accent-dark: #962d22;
  --color-border: #e8dfd6;
  --shadow: 0 12px 40px rgba(31, 26, 23, 0.08);
  --radius: 16px;
  --font-display: "Playfair Display", Georgia, serif;
  --font-body: "Source Sans 3", system-ui, sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--color-text);
  background: var(--color-bg);
}

.container {
  width: min(1100px, calc(100% - 2rem));
  margin-inline: auto;
}

.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 247, 242, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--color-border);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 72px;
  position: relative;
}

.logo {
  display: inline-flex;
  align-items: center;
  line-height: 0;
  text-decoration: none;
  flex-shrink: 0;
}

.logo img {
  display: block;
  width: auto;
  height: 46px;
  max-width: min(220px, 52vw);
}

.header__tools {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  flex-shrink: 0;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--color-border);
  border-radius: 12px;
  background: var(--color-surface);
  cursor: pointer;
}

.nav-toggle__bar {
  display: block;
  width: 20px;
  height: 2px;
  margin-inline: auto;
  background: var(--color-text);
  border-radius: 2px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.ec-cart-widget {
  display: flex;
  align-items: center;
}

.nav a {
  color: var(--color-muted);
  text-decoration: none;
  font-weight: 600;
  white-space: nowrap;
}

.nav a:hover {
  color: var(--color-accent);
}

@media (max-width: 768px) {
  .nav-toggle {
    display: flex;
  }

  .nav {
    display: none;
    position: absolute;
    top: calc(100% + 1px);
    left: 50%;
    width: 100vw;
    margin-left: -50vw;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0.5rem 0;
    background: rgba(250, 247, 242, 0.98);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--color-border);
    box-shadow: 0 12px 24px rgba(31, 26, 23, 0.08);
  }

  .nav.is-open {
    display: flex;
  }

  .nav a {
    padding: 0.85rem 1rem;
    border-bottom: 1px solid var(--color-border);
    white-space: normal;
  }

  .nav a:last-child {
    border-bottom: 0;
  }

  body.nav-open {
    overflow: hidden;
  }

  .logo img {
    height: 40px;
    max-width: min(180px, 48vw);
  }
}

.hero {
  position: relative;
  display: flex;
  align-items: center;
  min-height: min(88vh, 900px);
  padding: 4rem 0;
  background: url("../images/hero-bg.png") center / cover no-repeat;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(15, 12, 10, 0.55) 0%,
    rgba(15, 12, 10, 0.25) 50%,
    rgba(15, 12, 10, 0.45) 100%
  );
}

.hero__inner {
  position: relative;
  z-index: 1;
  max-width: 420px;
}

.hero__tag {
  display: inline-block;
  margin: 0 0 1.25rem;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #fff;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.glass-card {
  margin-bottom: 1.75rem;
  padding: 1.5rem 1.75rem;
  background: rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 20px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.22);
  color: #fff;
}

.glass-card--light {
  max-width: 420px;
  margin-inline: auto;
  background: rgba(255, 255, 255, 0.72);
  border-color: rgba(255, 255, 255, 0.9);
  color: var(--color-text);
  box-shadow: var(--shadow);
}

.glass-card__title,
.glass-card h2 {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
}

.glass-card__subtitle {
  margin: 1.25rem 0 0.75rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
}

.glass-card--light .glass-card__subtitle {
  border-top-color: var(--color-border);
}

.glass-card__contact p {
  margin: 0.25rem 0;
  font-size: 0.95rem;
}

.glass-card__contact p strong {
  font-size: 1rem;
}

.hero__hours {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  font-size: 0.95rem;
  font-weight: 600;
}

.hero__hours-row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: 0.3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.hero__hours-row:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.hero__hours-row span:first-child {
  color: rgba(255, 255, 255, 0.75);
  font-weight: 600;
}

.hero__phone {
  color: #fff;
  font-size: 1.2rem;
  font-weight: 700;
  text-decoration: none;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.25);
}

.hero__phone:hover {
  text-decoration: underline;
}

.glass-card--light .hero__phone,
.contact a {
  color: var(--color-accent);
  font-weight: 700;
  text-decoration: none;
  text-shadow: none;
}

.contact a:hover,
.glass-card--light .hero__phone:hover {
  text-decoration: underline;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 1.5rem;
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.15s ease, background 0.15s ease;
}

.btn--primary {
  background: var(--color-accent);
  color: #fff;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}

.btn--primary:hover {
  background: var(--color-accent-dark);
  transform: translateY(-1px);
}

.btn--secondary {
  background: transparent;
  color: var(--color-accent);
  border: 2px solid var(--color-accent);
}

.btn--secondary:hover {
  background: rgba(192, 57, 43, 0.08);
  transform: translateY(-1px);
}

.page {
  padding: 3rem 0 4rem;
  background: var(--color-bg);
}

.page__inner {
  max-width: 820px;
}

.page h1 {
  margin: 0 0 2rem;
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 2.75rem);
}

.content-section {
  margin-bottom: 2.5rem;
}

.content-section h2 {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-size: 1.6rem;
}

.content-section p {
  margin: 0 0 1rem;
  color: var(--color-text);
}

.content-list {
  margin: 0 0 1rem 1.25rem;
  padding: 0;
}

.content-list li {
  margin-bottom: 0.35rem;
}

.content-list--bullets li {
  margin-bottom: 0.75rem;
}

.content-section a {
  color: var(--color-accent);
  font-weight: 600;
  text-decoration: none;
}

.content-section a:hover {
  text-decoration: underline;
}

.content-section h2 {
  font-size: clamp(1.15rem, 3vw, 1.45rem);
  line-height: 1.35;
}

.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  background: var(--color-surface);
  box-shadow: var(--shadow);
}

.delivery-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
}

.delivery-table th,
.delivery-table td {
  padding: 0.75rem 1rem;
  text-align: left;
  border-bottom: 1px solid var(--color-border);
}

.delivery-table th {
  background: rgba(192, 57, 43, 0.08);
  font-weight: 700;
}

.delivery-table tbody tr:last-child td {
  border-bottom: 0;
}

.delivery-table tbody tr:nth-child(even) {
  background: rgba(250, 247, 242, 0.7);
}

.page__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.store {
  padding: 4rem 0;
}

.store h2 {
  margin: 0 0 0.75rem;
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.5rem);
}

.store__intro {
  margin: 0 0 2rem;
  color: var(--color-muted);
}

#my-store-111891779 {
  min-height: 400px;
  padding: 1.5rem;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.contact {
  padding: 3rem 0 4rem;
  background: var(--color-bg);
}

.contact p {
  margin: 0.35rem 0;
}

.page__inner--wide {
  max-width: 820px;
}

.legal-content section {
  margin-bottom: 2rem;
}

.legal-content h2 {
  margin: 0 0 0.75rem;
  font-family: var(--font-display);
  font-size: 1.25rem;
}

.legal-content p,
.legal-content li {
  font-size: 0.95rem;
  line-height: 1.65;
}

.legal-content ul {
  margin: 0.5rem 0 1rem 1.25rem;
  padding: 0;
}

.legal-content a {
  color: var(--color-accent);
  font-weight: 600;
  text-decoration: none;
}

.legal-content a:hover {
  text-decoration: underline;
}

.delivery-table th[scope="row"] {
  width: 38%;
  font-weight: 600;
  vertical-align: top;
}

.footer__nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem 1.25rem;
}

.footer__nav a {
  color: var(--color-muted);
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
}

.footer__nav a:hover {
  color: var(--color-accent);
  text-decoration: underline;
}

.footer__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}

.footer--photo {
  position: relative;
  padding: 4rem 0 2.5rem;
  border-top: 0;
  background: url("../images/hero-bg.png") center / cover no-repeat;
  color: #fff;
}

.footer__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(15, 12, 10, 0.72) 0%,
    rgba(15, 12, 10, 0.45) 50%,
    rgba(15, 12, 10, 0.78) 100%
  );
}

.footer__content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.footer--photo .glass-card {
  width: 100%;
  max-width: 420px;
  margin-bottom: 0;
}

.footer--photo .footer__nav a {
  color: rgba(255, 255, 255, 0.88);
}

.footer--photo .footer__nav a:hover {
  color: #fff;
}

.footer__copy {
  margin: 0;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.9rem;
}

.footer {
  padding: 1.5rem 0 2rem;
  border-top: 1px solid var(--color-border);
  color: var(--color-muted);
  text-align: center;
}

@media (max-width: 640px) {
  .hero {
    min-height: auto;
    padding: 3rem 0;
  }

  .glass-card {
    padding: 1.25rem 1.35rem;
  }

  .footer--photo {
    padding: 3rem 0 2rem;
  }
}
