/* ============================================
   Joe Knight Commercial Industry
   Fresh homepage design — same colors & vibe
   ============================================ */

:root {
  --color-primary: #FD8701;
  --color-primary-dark: #ee840b;
  --color-primary-soft: rgba(196, 92, 38, 0.12);
  --color-dark: #1a1a1a;
  --color-dark-soft: #2c2c2c;
  --color-text: #333333;
  --color-text-muted: #666666;
  --color-bg: #ffffff;
  --color-bg-alt: #f8f5f0;
  --color-border: #e8e2d9;
  --font-display: 'Abril Fatface', Georgia, serif;
  --font-body: 'Poppins', system-ui, sans-serif;
  --radius: 12px;
  --radius-sm: 8px;
  --shadow: 0 8px 30px rgba(0,0,0,0.08);
  --shadow-hover: 0 16px 40px rgba(0,0,0,0.12);
  --transition: 0.3s ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.65;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

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

ul {
  list-style: none;
}

.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
}

.text-center {
  text-align: center;
}

/* ---------- Header ---------- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(26, 26, 26, 0.94);
  backdrop-filter: blur(8px);
  box-shadow: 0 2px 16px rgba(0,0,0,0.12);
  transition: background var(--transition), padding var(--transition), box-shadow var(--transition);
  padding: 16px 0;
}

.header.scrolled {
  background: rgba(26, 26, 26, 0.98);
  padding: 12px 0;
  box-shadow: 0 4px 24px rgba(0,0,0,0.18);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo-img {
  height: 46px;
  width: auto;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-link {
  font-size: 0.92rem;
  font-weight: 500;
  color: rgba(255,255,255,0.88);
  transition: color var(--transition);
}

.nav-link:hover,
.nav-link.active {
  color: var(--color-primary);
}

.nav-link.btn-nav {
  background: var(--color-primary);
  color: #fff !important;
  padding: 10px 22px;
  border-radius: 50px;
  font-weight: 600;
}

.nav-link.btn-nav:hover {
  background: var(--color-primary-dark);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.cart-toggle {
  position: relative;
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
  padding: 8px;
  display: flex;
  align-items: center;
  transition: color var(--transition);
}

.cart-toggle:hover {
  color: var(--color-primary);
}

.cart-badge {
  position: absolute;
  top: 0;
  right: 0;
  background: var(--color-primary);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
  min-width: 18px;
  height: 18px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  transform: scale(0);
  transition: transform 0.2s ease;
  pointer-events: none;
}

.cart-badge.visible {
  transform: scale(1);
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  z-index: 1001;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: #fff;
  border-radius: 1px;
  transition: var(--transition);
}

.menu-toggle.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}
.menu-toggle.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 30px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: 50px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  text-align: center;
}

.btn-primary {
  background: var(--color-primary);
  color: #fff;
  border-color: var(--color-primary);
}

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

.btn-outline {
  background: transparent;
  color: var(--color-primary);
  border-color: var(--color-primary);
}

.btn-outline:hover {
  background: var(--color-primary);
  color: #fff;
}

.btn-ghost {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.5);
}

.btn-ghost:hover {
  background: rgba(255,255,255,0.12);
  border-color: #fff;
  color: #fff;
}

.btn-block {
  width: 100%;
  display: flex;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background-color: #1a1a1a;
  background-image: url('https://images.unsplash.com/photo-1504674900247-0877df9cc836?auto=format&fit=crop&w=1600&q=80');
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  color: #fff;
  text-align: center;
  padding-top: 80px;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(0,0,0,0.72) 0%, rgba(0,0,0,0.55) 50%, rgba(26,26,26,0.75) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
  margin: 0 auto;
  padding: 60px 20px 100px;
}

.hero-subtitle {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: 18px;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 6.5vw, 4.2rem);
  font-weight: 400;
  line-height: 1.12;
  margin-bottom: 22px;
  letter-spacing: -0.02em;
}

.hero-desc {
  font-size: 1.1rem;
  font-weight: 300;
  max-width: 520px;
  margin: 0 auto 36px;
  opacity: 0.92;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
}

.hero-shape {
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  line-height: 0;
  z-index: 3;
}

.hero-shape svg {
  width: 100%;
  height: 70px;
}

/* ---------- Sections ---------- */
.section {
  padding: 100px 0;
}

.section-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 50px;
}

.section-subtitle {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: 12px;
  text-align: center;
}

.section-subtitle.left {
  text-align: left;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 400;
  color: var(--color-dark);
  text-align: center;
  margin-bottom: 14px;
  line-height: 1.2;
}

.section-title.left {
  text-align: left;
}

.section-desc {
  text-align: center;
  color: var(--color-text-muted);
  font-size: 1.05rem;
  max-width: 560px;
  margin: 0 auto;
}

.section-subtitle.light,
.section-title.light,
.section-desc.light {
  color: #fff;
}

.section-desc.light {
  opacity: 0.9;
}

/* ---------- Products Grid ---------- */
.menu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.menu-item {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--color-border);
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex;
  flex-direction: column;
}

.menu-item:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}

.menu-img-wrap {
  height: 210px;
  overflow: hidden;
  background: var(--color-bg-alt);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.menu-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.menu-item:hover .menu-img-wrap img {
  transform: scale(1.06);
}

.menu-img-wrap .emoji-fallback {
  font-size: 3.8rem;
  line-height: 1;
}

.menu-info {
  padding: 22px 20px 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.menu-info h3 {
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--color-dark);
}

.menu-info .price {
  display: block;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 10px;
}

.menu-info p {
  font-size: 0.88rem;
  color: var(--color-text-muted);
  flex: 1;
  margin-bottom: 16px;
  line-height: 1.55;
}

.menu-info .btn-add {
  align-self: flex-start;
  padding: 10px 22px;
  font-size: 0.85rem;
  border: none;
  cursor: pointer;
}

.products-cta {
  margin-top: 48px;
}

/* Products page toolbar */
.products-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 28px;
  justify-content: center;
}

.search-wrap input,
.filter-wrap select,
.sort-wrap select {
  font-family: var(--font-body);
  font-size: 0.9rem;
  padding: 12px 16px;
  border: 1px solid var(--color-border);
  border-radius: 50px;
  background: #fff;
  color: var(--color-text);
  min-width: 180px;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.search-wrap input {
  min-width: 240px;
}

.search-wrap input:focus,
.filter-wrap select:focus,
.sort-wrap select:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px var(--color-primary-soft);
}

.results-count {
  text-align: center;
  font-size: 0.9rem;
  color: var(--color-text-muted);
  margin-bottom: 22px;
}

.no-results {
  text-align: center;
  padding: 60px 20px;
  color: var(--color-text-muted);
}

/* ---------- About ---------- */
.about {
  background: var(--color-bg-alt);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.about-image {
  position: relative;
}

.about-img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  object-fit: cover;
  height: 440px;
}

.about-badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background: var(--color-primary);
  color: #fff;
  padding: 16px 20px;
  border-radius: var(--radius-sm);
  text-align: center;
  box-shadow: 0 8px 24px rgba(196, 92, 38, 0.35);
}

.about-badge-number {
  display: block;
  font-family: var(--font-display);
  font-size: 1.6rem;
  line-height: 1;
}

.about-badge-text {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  opacity: 0.95;
}

.about-content .section-title {
  margin-bottom: 18px;
}

.about-content p {
  margin-bottom: 14px;
  color: var(--color-text-muted);
}

.about-list {
  margin: 20px 0 28px;
}

.about-list li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 10px;
  font-size: 0.95rem;
  color: var(--color-text);
}

.about-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--color-primary);
  font-weight: 700;
}

/* ---------- Featured On ---------- */
.featured {
  padding: 56px 0;
  background: #fff;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

.featured-title {
  text-align: center;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: 28px;
}

.featured-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 40px;
  opacity: 0.65;
}

.featured-logos img {
  height: 48px;
  width: auto;
  filter: grayscale(100%);
  transition: filter var(--transition), opacity var(--transition);
}

.featured-logos img:hover {
  filter: grayscale(0);
  opacity: 1;
}

/* ---------- Happy Hour ---------- */
.happy-hour {
  position: relative;
  background: url('https://images.unsplash.com/photo-1555939594-58d7cb561ad1?auto=format&fit=crop&w=1600&q=80') center/cover no-repeat;
  color: #fff;
  text-align: center;
  padding: 110px 0;
}

.happy-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(0,0,0,0.68), rgba(0,0,0,0.72));
}

.happy-content {
  position: relative;
  z-index: 2;
}

.happy-time {
  font-size: 1.15rem;
  font-weight: 600;
  margin: 18px 0 28px;
  letter-spacing: 1px;
}

/* ---------- Testimonials ---------- */
.testimonials {
  background: var(--color-bg-alt);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.testimonial-card {
  background: #fff;
  padding: 32px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid var(--color-border);
  display: flex;
  flex-direction: column;
}

.quote-mark {
  font-family: var(--font-display);
  font-size: 3rem;
  line-height: 1;
  color: var(--color-primary);
  opacity: 0.35;
  margin-bottom: 4px;
}

.testimonial-card .quote {
  font-size: 0.95rem;
  color: var(--color-text);
  margin-bottom: 24px;
  line-height: 1.7;
  flex: 1;
}

.testimonial-card .author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.testimonial-card .author img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
}

.testimonial-card .author strong {
  display: block;
  font-size: 0.9rem;
  color: var(--color-dark);
}

.testimonial-card .author span {
  font-size: 0.8rem;
  color: var(--color-text-muted);
}

/* ---------- Footer ---------- */
.footer {
  background: var(--color-dark);
  color: rgba(255,255,255,0.85);
  padding-top: 72px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1.2fr;
  gap: 48px;
  padding-bottom: 52px;
}

.footer-logo {
  height: 48px;
  margin-bottom: 16px;
  filter: brightness(0) invert(1);
}

.footer-brand p {
  font-size: 0.95rem;
  opacity: 0.8;
  max-width: 300px;
  line-height: 1.6;
}

.footer-links h4,
.footer-contact h4 {
  font-size: 0.95rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 18px;
  letter-spacing: 0.3px;
}

.footer-links ul li {
  margin-bottom: 10px;
}

.footer-links a {
  font-size: 0.92rem;
  opacity: 0.75;
  transition: opacity var(--transition), color var(--transition);
}

.footer-links a:hover {
  opacity: 1;
  color: var(--color-primary);
}

.footer-contact p {
  font-size: 0.92rem;
  opacity: 0.8;
  margin-bottom: 20px;
  line-height: 1.55;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 20px 0;
  text-align: center;
  font-size: 0.85rem;
  opacity: 0.55;
}

/* ---------- Page Hero (products etc.) ---------- */
.page-hero {
  position: relative;
  padding: 150px 0 90px;
  background: url('https://images.unsplash.com/photo-1547592166-23acba133eaa?auto=format&fit=crop&w=1600&q=80') center/cover no-repeat;
  color: #fff;
  text-align: center;
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.7));
}

.page-hero-content {
  position: relative;
  z-index: 2;
}

/* ---------- Cart Drawer ---------- */
.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: min(400px, 100%);
  height: 100%;
  background: #fff;
  box-shadow: -8px 0 40px rgba(0,0,0,0.15);
  z-index: 2000;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.cart-drawer.open {
  transform: translateX(0);
}

.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.45);
  z-index: 1999;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.cart-overlay.visible {
  opacity: 1;
  visibility: visible;
}

.cart-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid var(--color-border);
}

.cart-header h2 {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 400;
  color: var(--color-dark);
}

.cart-close {
  background: none;
  border: none;
  font-size: 1.8rem;
  line-height: 1;
  cursor: pointer;
  color: var(--color-text-muted);
  padding: 4px;
}

.cart-close:hover {
  color: var(--color-dark);
}

.cart-body {
  flex: 1;
  overflow-y: auto;
  padding: 16px 24px;
}

.cart-empty {
  text-align: center;
  color: var(--color-text-muted);
  padding: 48px 16px;
  font-size: 0.95rem;
  line-height: 1.7;
}

.cart-item {
  display: flex;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid var(--color-border);
}

.cart-item-img {
  width: 64px;
  height: 64px;
  border-radius: 8px;
  background: var(--color-bg-alt);
  display: grid;
  place-items: center;
  font-size: 1.8rem;
  flex-shrink: 0;
  overflow: hidden;
}

.cart-item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cart-item-details {
  flex: 1;
  min-width: 0;
}

.cart-item-name {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--color-dark);
  margin-bottom: 2px;
}

.cart-item-price {
  font-size: 0.85rem;
  color: var(--color-primary);
  font-weight: 600;
  margin-bottom: 8px;
}

.cart-item-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.qty-btn {
  width: 28px;
  height: 28px;
  border: 1px solid var(--color-border);
  background: var(--color-bg-alt);
  border-radius: 6px;
  cursor: pointer;
  font-size: 1rem;
  display: grid;
  place-items: center;
  transition: background var(--transition);
  color: var(--color-dark);
}

.qty-btn:hover {
  background: var(--color-border);
}

.qty-value {
  font-size: 0.9rem;
  font-weight: 600;
  min-width: 20px;
  text-align: center;
}

.cart-item-remove {
  background: none;
  border: none;
  color: #c0392b;
  font-size: 0.75rem;
  cursor: pointer;
  margin-left: auto;
  padding: 4px 0;
}

.cart-item-remove:hover {
  text-decoration: underline;
}

.cart-footer {
  padding: 20px 24px 28px;
  border-top: 1px solid var(--color-border);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.cart-total-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.cart-total-row strong {
  font-size: 1.3rem;
  color: var(--color-primary);
}

/* ---------- Order Modal ---------- */
.order-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 2998;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.order-modal-overlay.visible {
  opacity: 1;
  visibility: visible;
}

.order-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  pointer-events: none;
}

.order-modal.open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.order-modal-content {
  background: #fff;
  border-radius: 12px;
  width: 100%;
  max-width: 520px;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 20px 60px rgba(0,0,0,0.2);
  transform: translateY(20px);
  transition: transform 0.3s ease;
}

.order-modal.open .order-modal-content {
  transform: translateY(0);
}

.order-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid var(--color-border);
  position: sticky;
  top: 0;
  background: #fff;
  z-index: 1;
}

.order-modal-header h2 {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 400;
  color: var(--color-dark);
}

.order-modal-close {
  background: none;
  border: none;
  font-size: 1.8rem;
  line-height: 1;
  cursor: pointer;
  color: var(--color-text-muted);
  padding: 4px;
}

.order-modal-close:hover {
  color: var(--color-dark);
}

.order-modal-body {
  padding: 20px 24px 28px;
}

.order-summary {
  background: var(--color-bg-alt);
  border-radius: 8px;
  padding: 16px;
  margin-bottom: 22px;
  font-size: 0.9rem;
}

.order-summary h4 {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--color-text-muted);
  margin-bottom: 10px;
}

.order-summary-item {
  display: flex;
  justify-content: space-between;
  padding: 4px 0;
}

.order-summary-total {
  display: flex;
  justify-content: space-between;
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid var(--color-border);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--color-primary);
}

.form-group {
  margin-bottom: 16px;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--color-dark);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--color-border);
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px var(--color-primary-soft);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.form-note {
  font-size: 0.8rem;
  color: var(--color-text-muted);
  text-align: center;
  margin-top: 14px;
  line-height: 1.5;
}

.order-success {
  text-align: center;
  padding: 30px 10px;
}

.success-icon {
  width: 64px;
  height: 64px;
  background: #e8f5e9;
  color: #2e7d32;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 2rem;
  font-weight: 700;
  margin: 0 auto 18px;
}

.order-success h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
  color: var(--color-dark);
}

.order-success p {
  color: var(--color-text-muted);
  margin-bottom: 24px;
  line-height: 1.6;
}

/* ---------- Toast ---------- */
.toast {
  position: fixed;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: var(--color-dark);
  color: #fff;
  padding: 12px 28px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 500;
  box-shadow: 0 8px 30px rgba(0,0,0,0.2);
  z-index: 3000;
  opacity: 0;
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.35s ease;
  pointer-events: none;
  white-space: nowrap;
}

.toast.show {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}

/* ---------- Fade-in ---------- */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

body.no-scroll {
  overflow: hidden;
}

/* ---------- Responsive ---------- */
@media (max-width: 992px) {
  .menu-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .about-content .section-title,
  .about-content .section-subtitle {
    text-align: center;
  }
  .about-content {
    text-align: center;
  }
  .about-list li {
    text-align: left;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

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

  .nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--color-dark);
    padding: 100px 30px 40px;
    transition: right 0.35s ease;
    box-shadow: -5px 0 30px rgba(0,0,0,0.3);
    z-index: 1000;
  }

  .nav.active {
    right: 0;
  }

  .nav-list {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
  }

  .nav-link {
    display: block;
    padding: 14px 0;
    width: 100%;
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }

  .nav-link.btn-nav {
    margin-top: 20px;
    text-align: center;
  }

  .menu-grid {
    grid-template-columns: 1fr;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .hero-title {
    font-size: 2.4rem;
  }

  .products-toolbar {
    flex-direction: column;
    align-items: stretch;
  }

  .search-wrap input,
  .filter-wrap select,
  .sort-wrap select {
    width: 100%;
    min-width: 0;
  }

  .section {
    padding: 70px 0;
  }
}
/* ---------- Floating Cart ---------- */
.floating-cart {
  position: fixed;
  right: 24px;
  bottom: 120px;
  z-index: 1500;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: none;
  background: var(--color-primary);
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 28px rgba(196, 92, 38, 0.45);
  transition: transform 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}

.floating-cart:hover {
  background: var(--color-primary-dark);
  transform: scale(1.08);
  box-shadow: 0 10px 32px rgba(196, 92, 38, 0.55);
}

.floating-cart-badge {
  position: absolute;
  top: -4px;
  right: -4px;
  background: var(--color-dark);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  min-width: 20px;
  height: 20px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  transform: scale(0);
  transition: transform 0.2s ease;
  pointer-events: none;
}

.floating-cart-badge.visible {
  transform: scale(1);
}

@media (max-width: 480px) {
  .floating-cart {
    right: 16px;
    bottom: 20px;
    width: 52px;
    height: 52px;
  }
}

@media (max-width: 520px) {
  .form-row {
    grid-template-columns: 1fr;
  }
  .page-hero {
    padding: 130px 0 70px;
  }
  .cart-drawer {
    width: 100%;
  }
  .hero-actions {
    flex-direction: column;
    align-items: center;
  }
  .hero-actions .btn {
    width: 100%;
    max-width: 280px;
  }
}
