/* ===== Floating Chat Widget ===== */
.chat-float {
  position: fixed;
  right: 22px;
  bottom: 100px;
  z-index: 3000;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
}
.chat-float--hidden {
  opacity: 0;
  transform: translateY(16px) scale(0.9);
  visibility: hidden;
  pointer-events: none;
}

/* Bottom row: greeting + bubble side by side */
.chat-bottom-row {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-direction: row-reverse;
}

/* Greeting bubble — now sits to the LEFT of the chat button */
.chat-greeting {
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(12px) saturate(1.3);
  -webkit-backdrop-filter: blur(12px) saturate(1.3);
  border: 1px solid rgba(201,160,166,0.2);
  border-radius: 18px 18px 18px 6px;
  padding: 9px 16px;
  font-family: var(--display);
  font-size: 0.88rem;
  color: var(--ink);
  box-shadow: 0 4px 20px rgba(43,35,38,0.08);
  white-space: nowrap;
  transform: translateX(20px);
  opacity: 0;
  transition: transform 0.45s cubic-bezier(0.22, 0.61, 0.36, 1), opacity 0.35s ease;
  pointer-events: none;
  position: relative;
}
.chat-greeting.show {
  transform: translateX(0);
  opacity: 1;
}
.chat-greeting::after {
  content: '';
  position: absolute;
  right: -7px;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
  width: 12px;
  height: 12px;
  background: rgba(255,255,255,0.92);
  border-right: 1px solid rgba(201,160,166,0.2);
  border-top: 1px solid rgba(201,160,166,0.2);
  border-radius: 0 3px 0 0;
}

/* Chat options container */
.chat-options {
  display: flex;
  flex-direction: column;
  gap: 10px;
  transform: scale(0);
  transform-origin: bottom right;
  opacity: 0;
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.25s ease;
  pointer-events: none;
}
.chat-float.active .chat-options {
  transform: scale(1);
  opacity: 1;
  pointer-events: auto;
}

/* Individual option buttons */
.chat-option {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(43,35,38,0.12);
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s ease;
  cursor: pointer;
  text-decoration: none;
  color: #fff;
  position: relative;
}
.chat-option:hover {
  transform: scale(1.12);
  box-shadow: 0 8px 28px rgba(43,35,38,0.18);
}
.chat-option:active {
  transform: scale(0.95);
}
.chat-option svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

/* WhatsApp — green */
.chat-wa {
  background: linear-gradient(135deg, #25D366, #128C7E);
}
.chat-wa:hover {
  box-shadow: 0 6px 24px rgba(37,211,102,0.4);
}

/* Messenger — blue */
.chat-msg {
  background: linear-gradient(135deg, #00B2FF, #006AFF);
}
.chat-msg:hover {
  box-shadow: 0 6px 24px rgba(0,106,255,0.35);
}

/* Call — rose gradient matching brand */
.chat-call {
  background: linear-gradient(135deg, var(--rose), var(--rose-deep));
}
.chat-call:hover {
  box-shadow: 0 6px 24px rgba(176,137,143,0.45);
}

/* Tooltip label on hover */
.chat-option::after {
  content: attr(title);
  position: absolute;
  right: calc(100% + 12px);
  top: 50%;
  transform: translateY(-50%);
  background: rgba(43,35,38,0.88);
  color: #fff;
  font-family: var(--display);
  font-size: 0.72rem;
  font-weight: 500;
  padding: 5px 12px;
  border-radius: 8px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
  transform: translateY(-50%) translateX(6px);
}
.chat-option:hover::after {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}

/* Main chat bubble button */
.chat-bubble {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--rose), var(--rose-deep));
  box-shadow: 0 6px 24px rgba(176,137,143,0.35), 0 0 0 0 rgba(176,137,143,0.4);
  color: #fff;
  position: relative;
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s ease;
  animation: chatPulse 3s ease-in-out infinite;
  flex-shrink: 0;
}
.chat-bubble:hover {
  transform: scale(1.08);
  box-shadow: 0 8px 32px rgba(176,137,143,0.5), 0 0 0 0 rgba(176,137,143,0.4);
}
.chat-bubble:active {
  transform: scale(0.95);
}

@keyframes chatPulse {
  0%, 100% { box-shadow: 0 6px 24px rgba(176,137,143,0.35), 0 0 0 0 rgba(176,137,143,0.2); }
  50% { box-shadow: 0 6px 24px rgba(176,137,143,0.35), 0 0 0 12px rgba(176,137,143,0); }
}

/* Icons inside the bubble */
.chat-icon {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.chat-icon svg {
  width: 26px;
  height: 26px;
  fill: currentColor;
}
.chat-icon-default { opacity: 1; transform: rotate(0); }
.chat-icon-close { opacity: 0; transform: rotate(-90deg); }

.chat-float.active .chat-bubble {
  animation: none;
  background: linear-gradient(135deg, var(--ink), var(--ink-soft));
  transform: rotate(0);
}
.chat-float.active .chat-icon-default {
  opacity: 0;
  transform: rotate(90deg);
}
.chat-float.active .chat-icon-close {
  opacity: 1;
  transform: rotate(0);
}

/* Responsive — adjust for mobile bottom nav */
@media (max-width: 1024px) {
  .chat-float {
    bottom: 120px;
    right: 16px;
    gap: 8px;
  }
  .chat-bottom-row {
    gap: 10px;
  }
  .chat-bubble {
    width: 52px;
    height: 52px;
  }
  .chat-icon svg {
    width: 22px;
    height: 22px;
  }
  .chat-option {
    width: 48px;
    height: 48px;
  }
  .chat-option svg {
    width: 20px;
    height: 20px;
  }
  .chat-greeting {
    font-size: 0.82rem;
    padding: 8px 14px;
  }
  .chat-option::after {
    display: none;
  }
  .chat-greeting::after {
    right: -6px;
    width: 10px;
    height: 10px;
  }
}

@media (max-width: 480px) {
  .chat-float {
    right: 12px;
    bottom: 108px;
    gap: 6px;
  }
  .chat-bottom-row {
    gap: 8px;
  }
  .chat-bubble {
    width: 48px;
    height: 48px;
  }
  .chat-icon svg {
    width: 20px;
    height: 20px;
  }
  .chat-option {
    width: 44px;
    height: 44px;
  }
  .chat-option svg {
    width: 18px;
    height: 18px;
  }
  .chat-greeting {
    font-size: 0.78rem;
    padding: 6px 12px;
    white-space: normal;
    max-width: 140px;
  }
  .chat-greeting::after {
    right: -5px;
    width: 9px;
    height: 9px;
  }
}

/* ===== Announcement Bar ===== */
.announce-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 10px 44px 10px 20px;
  min-height: 44px;
  max-height: 80px;
  background: linear-gradient(135deg, #2B2326 0%, #3d3336 100%);
  color: rgba(255,255,255,0.92);
  font-family: var(--display);
  font-size: 0.82rem;
  font-weight: 400;
  letter-spacing: 0.03em;
  text-align: center;
  z-index: 10000;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease, opacity 0.35s ease, min-height 0.4s ease;
}
.announce-bar::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(201,160,166,0.08) 0%, rgba(201,160,166,0.04) 50%, rgba(201,160,166,0.08) 100%);
  pointer-events: none;
}
.announce-bar.announce-hidden {
  max-height: 0;
  min-height: 0;
  padding-top: 0;
  padding-bottom: 0;
  opacity: 0;
  overflow: hidden;
}

/* Push header down when announcement bar is visible */
body.has-announce .glass-header {
  top: 58px;
}
body.has-announce .hero {
  padding-top: calc(var(--header-h) + 44px + 48px);
}
.announce-inner {
  display: flex;
  align-items: center;
  gap: 9px;
  position: relative;
  z-index: 1;
}
.announce-icon {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  color: var(--rose);
  display: flex;
  align-items: center;
  justify-content: center;
}
.announce-icon svg {
  width: 18px;
  height: 18px;
}
.announce-text {
  line-height: 1.4;
}
.announce-text a {
  color: var(--rose);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.announce-close {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.6);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.25s, color 0.25s, transform 0.25s;
  z-index: 2;
}
.announce-close:hover {
  background: rgba(255,255,255,0.16);
  color: #fff;
  transform: translateY(-50%) rotate(90deg);
}
.announce-close svg {
  width: 14px;
  height: 14px;
}

@media (max-width: 480px) {
  .announce-bar {
    font-size: 0.74rem;
    padding: 9px 38px 9px 14px;
  }
  .announce-close {
    right: 8px;
    width: 24px;
    height: 24px;
  }
  .announce-close svg {
    width: 12px;
    height: 12px;
  }
  .announce-icon svg {
    width: 16px;
    height: 16px;
  }
}

.muted { color: var(--muted); font-size: 0.9rem; }
.track-msg { font-size: 0.9rem; color: var(--rose-deep); margin-top: 14px; }
.order-track-result { margin-top: 24px; }
.order-track-result h3 { font-family: var(--serif); font-size: 1.4rem; margin-bottom: 4px; }
.inline-logout { display: inline; margin-left: 8px; }
.toast { position: fixed; bottom: 24px; left: 50%; transform: translateX(-50%); background: var(--ink); color: #fff; padding: 14px 22px; border-radius: 999px; z-index: 9999; box-shadow: 0 10px 30px rgba(0,0,0,.25); animation: toastIn .3s ease; }
@keyframes toastIn { from { opacity: 0; transform: translate(-50%, 12px); } to { opacity: 1; transform: translate(-50%, 0); } }

/* ===== Cart page ===== */
.cart-hero { padding-top: calc(var(--header-h) + 56px); padding-bottom: 32px; }
.cart-layout { max-width: var(--max); margin: 0 auto; padding: 8px 24px 72px; display: grid; grid-template-columns: 1fr 360px; gap: 32px; align-items: start; }
.cart-items { display: flex; flex-direction: column; gap: 16px; }

.cart-row {
  position: relative;
  display: grid;
  grid-template-columns: 100px 1fr auto;
  gap: 22px;
  align-items: center;
  background: var(--white);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-md);
  padding: 18px 64px 18px 18px;
  box-shadow: var(--shadow-sm);
  transition: box-shadow .35s var(--ease), border-color .35s var(--ease), transform .35s var(--ease);
}
.cart-row:hover { box-shadow: var(--shadow-md); border-color: var(--line); }
.cart-row-img { display: block; width: 100px; height: 116px; border-radius: 14px; overflow: hidden; background: var(--beige); }
.cart-row-img img { width: 100%; height: 100%; object-fit: cover; }
.cart-row-body { display: flex; flex-direction: column; gap: 16px; min-width: 0; }
.cart-row-info { display: flex; flex-direction: column; gap: 5px; }
.cart-row-title { font-family: var(--serif); font-size: 1.15rem; color: var(--ink); text-decoration: none; line-height: 1.3; }
.cart-row-title:hover { color: var(--rose-deep); }
.cart-row-cat { font-size: 0.76rem; color: var(--muted); letter-spacing: 0.02em; }
.cart-row-price { font-family: var(--display); font-size: 0.92rem; color: var(--rose-deep); font-weight: 600; }
.cart-row-actions { display: flex; }
.cart-row .qty-selector { height: 42px; }
.cart-row .qty-selector button { width: 40px; height: 42px; font-size: 1.05rem; }
.cart-row .qty-selector input { width: 40px; height: 42px; }
.cart-row-end { text-align: right; }
.cart-row-total { font-family: var(--serif); font-size: 1.35rem; font-weight: 600; color: var(--ink); white-space: nowrap; }
.cart-remove {
  position: absolute; top: 16px; right: 16px;
  width: 34px; height: 34px; display: flex; align-items: center; justify-content: center;
  border-radius: 50%; border: 1px solid var(--line); background: var(--white);
  color: var(--ink-mute); font-size: 1.25rem; cursor: pointer; line-height: 1;
  transition: background .3s var(--ease), border-color .3s var(--ease), color .3s var(--ease), transform .3s var(--ease);
}
.cart-remove:hover { background: var(--rose-deep); border-color: var(--rose-deep); color: #fff; transform: rotate(90deg); }

.cart-count-line { font-family: var(--display); font-size: 0.84rem; color: var(--ink-mute); letter-spacing: 0.04em; margin-top: 10px; }

.cart-empty { max-width: 520px; margin: 0 auto; text-align: center; padding: 80px 24px; background: var(--white); border: 1px solid var(--line-soft); border-radius: var(--radius-md); box-shadow: var(--shadow-sm); }
.cart-empty-ico { width: 80px; height: 80px; margin: 0 auto 22px; display: flex; align-items: center; justify-content: center; border-radius: 50%; background: var(--blush); color: var(--rose-deep); }
.cart-empty-ico svg { width: 36px; height: 36px; }
.cart-empty h2 { font-family: var(--serif); font-size: 1.9rem; font-weight: 600; color: var(--ink); margin-bottom: 8px; }
.cart-empty p { color: var(--muted); margin-bottom: 24px; }

@media (max-width: 860px) {
  .cart-layout { grid-template-columns: 1fr; gap: 24px; padding: 4px 16px 56px; }
  .cart-row { grid-template-columns: 88px 1fr; gap: 16px; padding: 14px 52px 16px 14px; }
  .cart-row-img { width: 88px; height: 100px; }
  .cart-row-body { gap: 14px; }
  .cart-row-end { grid-column: 2; text-align: left; }
  .cart-row-total { font-size: 1.2rem; }
  .cart-remove { top: 12px; right: 12px; width: 30px; height: 30px; font-size: 1.1rem; }
}
@media (max-width: 480px) {
  .cart-row { grid-template-columns: 76px 1fr; gap: 12px; padding: 12px 48px 14px 12px; }
  .cart-row-img { width: 76px; height: 88px; }
  .cart-row-title { font-size: 1.02rem; }
  .cart-row-total { font-size: 1.1rem; }
}

/* Auth */
.auth-wrap { min-height: 70vh; display: flex; align-items: flex-start; justify-content: center; padding: 120px 20px 60px; }
.auth-card { width: 100%; max-width: 420px; background: var(--white); border: 1px solid var(--line-soft); border-radius: 22px; padding: 38px 34px; text-align: center; box-shadow: 0 20px 60px rgba(0,0,0,.08); }
.auth-brand { display: inline-flex; align-items: center; gap: 8px; margin-bottom: 14px; text-decoration: none; }
.auth-card h2 { font-family: var(--serif); font-size: 1.9rem; margin-bottom: 4px; }
.auth-card .sub { color: var(--muted); margin-bottom: 22px; font-size: 0.92rem; }
.auth-card .field { text-align: left; margin-bottom: 14px; }
.auth-card label { display: block; font-size: 0.82rem; color: var(--ink-soft); margin-bottom: 6px; }
.auth-card input { width: 100%; padding: 13px 15px; border: 1px solid var(--line-soft); border-radius: 12px; font-size: 0.95rem; }
.auth-card input:focus { border-color: var(--rose-deep); outline: none; }
.auth-foot { margin-top: 18px; font-size: 0.9rem; color: var(--muted); }
.auth-foot a, .auth-hint a { color: var(--rose-deep); }
.auth-hint { margin-top: 14px; font-size: 0.8rem; color: var(--muted); }
.auth-error { color: var(--rose-deep); font-size: 0.85rem; margin: 0 0 12px; text-align: left; }

/* Success / status message for forgot password */
.auth-status {
  background: rgba(107,138,110,0.1); color: var(--ok);
  padding: 12px 16px; border-radius: 12px; font-size: 0.85rem;
  margin-bottom: 18px; text-align: center; line-height: 1.5;
}
.auth-status a { color: var(--rose-deep); text-decoration: underline; }

/* Google login button */
.google-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  width: 100%; padding: 12px 20px; border: 1.5px solid var(--line-soft); border-radius: 12px;
  background: var(--white); font-family: var(--display); font-size: 0.88rem; font-weight: 500;
  color: var(--ink); cursor: pointer; text-decoration: none;
  transition: border-color .25s, box-shadow .25s, background .25s;
}
.google-btn:hover { border-color: #4285F4; box-shadow: 0 4px 16px rgba(66,133,244,0.12); background: #f8faff; }
.google-btn:active { transform: scale(0.98); }

/* Auth divider */
.auth-divider {
  display: flex; align-items: center; gap: 14px; margin: 16px 0;
}
.auth-divider::before,
.auth-divider::after {
  content: ''; flex: 1; height: 1px; background: var(--line-soft);
}
.auth-divider span {
  font-size: 0.72rem; color: var(--muted); text-transform: uppercase; letter-spacing: 0.08em;
  font-family: var(--display);
}

/* ===== Floating Cart Button ===== */
.floating-cart {
  position: fixed; right: 22px; bottom: 40px; z-index: 2500;
  width: 58px; height: 58px; border-radius: 50%;
  background: linear-gradient(135deg, var(--rose), var(--rose-deep));
  color: #fff; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 28px rgba(176,137,143,0.38), 0 0 0 0 rgba(176,137,143,0.3);
  text-decoration: none; cursor: pointer; user-select: none;
  animation: floatCartPulse 3s ease-in-out infinite;
  transition: transform .35s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow .3s ease, background .3s ease;
}
.floating-cart:hover {
  transform: scale(1.12);
  box-shadow: 0 10px 36px rgba(176,137,143,0.48), 0 0 0 0 rgba(176,137,143,0.3);
  background: linear-gradient(135deg, var(--rose-deep), #9b747a);
}
.floating-cart:active { transform: scale(0.95); }
.floating-cart svg { width: 26px; height: 26px; }

.floating-cart-count {
  position: absolute; top: -4px; right: -4px;
  min-width: 22px; height: 22px; border-radius: 11px;
  background: var(--ink); color: #fff;
  font-family: var(--display); font-size: 0.68rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  padding: 0 5px; border: 2px solid #fff; line-height: 1;
}

@keyframes floatCartPulse {
  0%, 100% { box-shadow: 0 6px 28px rgba(176,137,143,0.38), 0 0 0 0 rgba(176,137,143,0.2); }
  50% { box-shadow: 0 6px 28px rgba(176,137,143,0.38), 0 0 0 14px rgba(176,137,143,0); }
}

/* Hide on cart & checkout pages */
.page-cart .floating-cart,
.page-checkout .floating-cart { display: none !important; }

/* Floating cart with label wrapper */
.floating-cart-wrap {
  position: fixed; right: 22px; bottom: 24px; z-index: 2500;
  display: flex; flex-direction: column; align-items: flex-end; gap: 6px;
}

/* Adjust position when chat/widget is present */
.chat-float ~ .floating-cart { bottom: 160px; }
.chat-float ~ .floating-cart-wrap { bottom: 144px; }

@media (max-width: 1024px) {
  .floating-cart { right: 16px; bottom: 130px; width: 52px; height: 52px; }
  .floating-cart svg { width: 23px; height: 23px; }
  .floating-cart-count { min-width: 20px; height: 20px; font-size: 0.62rem; }
  .chat-float ~ .floating-cart { bottom: 140px; }
  .floating-cart-wrap { right: 16px; bottom: 110px; }
  .floating-cart-wrap .floating-cart { position: relative; right: auto; bottom: auto; }
  .chat-float ~ .floating-cart-wrap { bottom: 130px; }
}
@media (max-width: 480px) {
  .floating-cart { right: 12px; bottom: 120px; width: 46px; height: 46px; }
  .floating-cart svg { width: 20px; height: 20px; }
  .floating-cart-count { min-width: 18px; height: 18px; font-size: 0.6rem; }
  .chat-float ~ .floating-cart { bottom: 130px; }
  .floating-cart-wrap { right: 12px; bottom: 100px; }
  .floating-cart-wrap .floating-cart { position: relative; right: auto; bottom: auto; }
  .chat-float ~ .floating-cart-wrap { bottom: 120px; }
  .floating-cart-label { padding: 5px 10px; }
  .floating-cart-label #floatingCartItems { font-size: 0.6rem; }
  .floating-cart-label #floatingCartTotal { font-size: 0.78rem; }
}

/* ===== Quick Contact Bar (homepage, below hero) ===== */
.quick-contact-bar {
  background: var(--white); border-bottom: 1px solid var(--line-soft);
  padding: 0 24px;
}
.quick-contact-inner {
  max-width: var(--max); margin: 0 auto;
  display: flex; align-items: center; gap: 20px; flex-wrap: wrap;
  padding: 14px 0;
}
.qcb-label {
  font-family: var(--display); font-size: 0.72rem; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--muted);
}
.qcb-item {
  display: inline-flex; align-items: center; gap: 7px;
  font-family: var(--display); font-size: 0.84rem; font-weight: 500;
  color: var(--ink); text-decoration: none;
  transition: color .25s;
}
.qcb-item:hover { color: var(--rose-deep); }
.qcb-item .material-symbols-outlined {
  font-size: 18px; color: var(--rose-deep);
}

@media (max-width: 900px) {
  .quick-contact-bar { padding: 0 16px; }
  .quick-contact-inner { gap: 14px; padding: 12px 0; }
  .qcb-item { font-size: 0.8rem; }
  .qcb-item .material-symbols-outlined { font-size: 17px; }
}
@media (max-width: 620px) {
  .quick-contact-inner { gap: 10px; padding: 10px 0; justify-content: center; }
  .qcb-label { font-size: 0.68rem; }
  .qcb-item { font-size: 0.76rem; }
  .qcb-item .material-symbols-outlined { font-size: 16px; }
}
@media (max-width: 480px) {
  .quick-contact-bar { padding: 0 12px; }
  .quick-contact-inner { gap: 8px; padding: 8px 0; }
  .qcb-label { width: 100%; text-align: center; }
  .qcb-item { font-size: 0.74rem; }
}

/* ===== Footer Contact Card ===== */
.footer-contact-card {
  min-width: 200px;
}
.footer-contact-highlight {
  display: flex; align-items: center; gap: 12px;
  padding: 12px 0; text-decoration: none; color: var(--ink);
  transition: transform .25s, color .25s;
}
.footer-contact-highlight + .footer-contact-highlight {
  border-top: 1px solid rgba(255,255,255,0.06);
}
.footer-contact-highlight:hover {
  color: var(--rose); transform: translateX(4px);
}
.fch-icon {
  width: 38px; height: 38px; border-radius: 10px;
  background: rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.fch-icon .material-symbols-outlined {
  font-size: 18px; color: var(--rose);
}
.fch-text { display: flex; flex-direction: column; gap: 1px; }
.fch-label {
  font-size: 0.65rem; letter-spacing: 0.08em; text-transform: uppercase;
  color: rgba(255,255,255,0.45); font-family: var(--display);
}
.fch-value {
  font-size: 0.82rem; font-weight: 500; color: rgba(255,255,255,0.85);
}

@media (max-width: 900px) {
  .footer-contact-card { min-width: 160px; }
  .footer-contact-highlight { padding: 10px 0; }
  .fch-icon { width: 34px; height: 34px; border-radius: 8px; }
  .fch-icon .material-symbols-outlined { font-size: 16px; }
  .fch-value { font-size: 0.76rem; }
}
@media (max-width: 620px) {
  .footer-contact-card { min-width: auto; grid-column: 1 / -1; }
  .footer-contact-highlight { padding: 8px 0; }
  .fch-label { font-size: 0.6rem; }
  .fch-value { font-size: 0.74rem; }
}
@media (max-width: 480px) {
  .footer-contact-highlight { gap: 10px; }
  .fch-icon { width: 30px; height: 30px; }
  .fch-icon .material-symbols-outlined { font-size: 15px; }
  .fch-value { font-size: 0.72rem; }
}

/* Field + buttons shared */
.field { display: flex; flex-direction: column; gap: 6px; }
.field.full { grid-column: 1 / -1; }
.field label { font-size: 0.82rem; color: var(--ink-soft); }
.field input, .field select, .field textarea { padding: 13px 15px; border: 1px solid var(--line-soft); border-radius: 12px; font-size: 0.95rem; font-family: var(--sans); }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--rose-deep); outline: none; }
