/* ============================================
   ZANTIRA – GLOBAL STYLES
   ============================================ */

:root {
  --color-primary: #123C3A;
  --color-accent: #E76F51;
  --color-background: #FBF8F1;
  --color-background-alt: #F0EBE0;
  --color-card: #FFFFFF;
  --color-border: #E5DDD0;
  --color-text: #1F2937;
  --color-muted: #64748B;
  --color-chip-bg: #F0E7DA;
  --color-whatsapp: #25D366;
}

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

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--color-background);
  color: var(--color-text);
  line-height: 1.6;
  min-height: 100vh;
}

/* ---------- UTILITY ---------- */
.hidden { display: none !important; }
.text-center { text-align: center; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }

/* ---------- CONTAINER ---------- */
.container {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ---------- BUTTONS (global) ---------- */
.btn {
  padding: 8px 18px;
  border: none;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  font-family: inherit;
  text-decoration: none;
  display: inline-block;
}
.btn-call {
  background: var(--color-primary);
  color: #fff;
}
.btn-call:hover {
  opacity: 0.85;
}
.btn-whatsapp {
  background: var(--color-whatsapp);
  color: #fff;
}
.btn-whatsapp:hover {
  opacity: 0.85;
}
.btn-directions {
  background: #e2e8f0;
  color: var(--color-text);
}
.btn-directions:hover {
  background: #cbd5e1;
}
.btn-claim {
  background: transparent;
  color: var(--color-muted);
  border: 1px solid var(--color-border);
}
.btn-claim:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
}
.btn-view {
  background: var(--color-background);
  color: var(--color-text);
  border: 1px solid var(--color-border);
}
.btn-view:hover {
  background: var(--color-border);
}
.btn-disabled {
  opacity: 0.4;
  cursor: not-allowed;
  pointer-events: none;
}
.btn-accent {
  background: var(--color-accent);
  color: #fff;
  border: none;
  padding: 12px 24px;
  border-radius: 10px;
  font-weight: 600;
  cursor: pointer;
  font-family: inherit;
  transition: opacity 0.2s;
}
.btn-accent:hover {
  opacity: 0.85;
}
.btn-back {
  display: inline-block;
  padding: 10px 24px;
  background: transparent;
  color: var(--color-muted);
  border: 1px solid var(--color-border);
  border-radius: 10px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.2s;
}
.btn-back:hover {
  background: var(--color-card);
  border-color: var(--color-primary);
  color: var(--color-primary);
}
.btn-full {
  margin-top: 12px;
  display: inline-block;
  background: var(--color-background);
  color: var(--color-text);
  padding: 10px 24px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 500;
}
.btn-full:hover {
  background: var(--color-border);
}
.btn-block {
  width: 100%;
  padding: 12px;
  text-align: center;
}

/* ---------- FORM GROUP ---------- */
.form-group {
  margin-bottom: 16px;
}
.form-group label {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: var(--color-text);
  margin-bottom: 4px;
}
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 10px 14px;
  border: 2px solid var(--color-border);
  border-radius: 10px;
  font-size: 15px;
  font-family: inherit;
  transition: border-color 0.2s;
}
.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-accent);
}
.form-group input.error {
  border-color: #dc2626;
}
.error-text {
  color: #dc2626;
  font-size: 13px;
  margin-top: 4px;
  display: none;
}

/* ---------- CHECKBOX ROW ---------- */
.checkbox-row {
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: center;
  margin-top: 10px;
  width: 100%;
}
.checkbox-row input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: var(--color-accent);
}
.checkbox-row label {
  font-size: 14px;
  color: var(--color-muted);
}

/* ---------- MERCHANT FIELDS ---------- */
.merchant-fields {
  display: none;
  width: 100%;
  margin-top: 10px;
}
.merchant-fields .form-group {
  margin-bottom: 8px;
}
.merchant-fields input {
  width: 100%;
  padding: 8px 12px;
  border: 2px solid var(--color-border);
  border-radius: 8px;
  font-size: 14px;
  font-family: inherit;
}
.merchant-fields input:focus {
  outline: none;
  border-color: var(--color-accent);
}

/* ============================================
   LANDING PAGE
   ============================================ */

body.landing {
  background: linear-gradient(180deg, #E8F0FE 0%, #F7F3EA 60%, #E5DDD0 100%);
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}
body.landing main {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px 0;
}
body.landing .site-header {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
  border-bottom: none;
}
body.landing .site-header .container {
  justify-content: center;
}



body.landing .logo {
  justify-content: center;
}

.landing .hero {
  text-align: center;
  width: 100%;
  max-width: 640px;
  margin: 0 auto;
  padding: 20px 0;
}
.landing .hero h1 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--color-primary);
  letter-spacing: -0.02em;
  margin-bottom: 0.5rem;
}
.landing .hero p {
  font-size: 1.125rem;
  color: var(--color-muted);
  margin-bottom: 3rem;
}

/* Landing Search Box */
.search-box {
  background: transparent;
  padding: 0;
}
.search-row {
  display: flex;
  gap: 0;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  background: var(--color-card);
}
.search-row input[type="text"] {
  flex: 1;
  min-width: 200px;
  padding: 1rem 1.25rem;
  border: 2px solid var(--color-border);
  border-right: none;
  border-radius: 12px 0 0 12px;
  font-size: 1rem;
  font-family: inherit;
  background: var(--color-card);
  transition: border-color 0.2s, box-shadow 0.2s;
}
.search-row input:focus {
  outline: none;
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(231, 111, 81, 0.15);
}
.search-row button {
  padding: 1rem 2rem;
  background: var(--color-accent);
  color: #fff;
  border: 2px solid var(--color-accent);
  border-radius: 0 12px 12px 0;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  font-family: inherit;
  white-space: nowrap;
}
.search-row button:hover {
  opacity: 0.85;
}

/* Landing Chips */
.chips {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 18px;
  justify-content: center;
}
.chip {
  padding: 6px 18px;
  background: var(--color-chip-bg);
  border-radius: 100px;
  font-size: 14px;
  font-weight: 500;
  color: var(--color-primary);
  border: 1px solid var(--color-border);
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
}
.chip:hover {
  background: #d5c8b8;
}
.chip.active {
  background: var(--color-primary);
  color: #fff;
}

/* Landing Mobile */
@media (max-width: 600px) {
  .landing .hero h1 {
    font-size: 2rem;
  }
  .search-row {
    flex-direction: column;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    margin: 0 2px;
  }
  .search-row input[type="text"] {
    border-radius: 12px 12px 0 0;
    border-right: 2px solid;
    border-bottom: none;
    width: 100%;
    border-color: white;
  }
  .search-row input:focus {
    border-color: var(--color-accent);
    box-shadow: 0 0 0 3px rgba(231, 111, 81, 0.15);
  }
  .search-row button {
    border-radius: 0 0 12px 12px;
    width: 100%;
  }
}

/* ---------- SKYLINE (landing only) ---------- */
.skyline {
  margin-top: auto;
  padding: 0;
  text-align: center;
  width: 100%;
}
.skyline img {
  width: 100%;
  height: auto;
  display: block;
  opacity: 0.3;
  max-width: 100%;
}

/* ============================================
   HEADER – All pages (except landing)
   ============================================ */

.site-header {
  padding: 12px 0;
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(251, 248, 241, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--color-border);
}
.site-header .container {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

/* Desktop: all in one row */
.header-desktop {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  width: 100%;
}

/* Mobile search (hidden on desktop) */
.header-search-mobile {
  display: none;
  width: 100%;
}

@media (min-width: 769px) {
  .site-header .container {
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
  }
  .landing .header-desktop {
    flex: 1;
    justify-content: center;
  }
  .header-search-wrapper {
    flex: 1;
    max-width: 500px;
    min-width: 200px;
    margin: 0 12px;
  }
}

.logo a {
  display: flex;
  align-items: center;
  text-decoration: none;
  gap: 8px;
  white-space: nowrap;
}
.logo-text {
  font-size: 24px;
  font-weight: 700;
  color: var(--color-primary);
  letter-spacing: -0.5px;
}
body.results .logo-text {
  display: none;
}

/* Desktop search */
.header-search-wrapper {
  flex: 1;
  max-width: 500px;
  min-width: 200px;
}
.search-bar-results {
  display: flex;
  gap: 4px;
  align-items: center;
  background: var(--color-card);
  padding: 4px;
  border-radius: 12px;
  border: 1px solid var(--color-border);
  width: 100%;
}
.search-bar-results input[type="text"] {
  flex: 2;
  padding: 8px 14px;
  border: none;
  border-radius: 8px;
  font-size: 15px;
  font-family: inherit;
  background: transparent;
  min-width: 80px;
}
.search-bar-results input:focus {
  outline: none;
}
.search-bar-results select {
  padding: 8px 10px;
  border: none;
  background: transparent;
  font-size: 14px;
  font-family: inherit;
  color: var(--color-text);
  cursor: pointer;
  flex: 1;
  min-width: 60px;
}
.price-filter-inline select {
  padding: 8px 10px;
  border: none;
  background: transparent;
  font-size: 14px;
  font-family: inherit;
  color: var(--color-text);
  cursor: pointer;
  min-width: 70px;
}
.search-bar-results button {
  padding: 8px 20px;
  background: var(--color-accent);
  color: #fff;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  font-family: inherit;
  white-space: nowrap;
}
.search-bar-results button:hover {
  opacity: 0.85;
}

/* Mobile search (visible on small screens) */
.search-bar-results-mobile {
  display: flex;
  flex-direction: column;
  gap: 6px;
  width: 100%;
}
.search-bar-results-mobile input[type="text"] {
  width: 100%;
  padding: 10px 14px;
  border: 2px solid var(--color-border);
  border-radius: 10px;
  font-size: 15px;
  font-family: inherit;
  background: var(--color-card);
}
.search-bar-results-mobile input:focus {
  outline: none;
  border-color: var(--color-accent);
}
.mobile-search-row {
  display: flex;
  gap: 6px;
  width: 100%;
}
.mobile-search-row select {
  flex: 1;
  padding: 10px 10px;
  border: 2px solid var(--color-border);
  border-radius: 10px;
  font-size: 14px;
  font-family: inherit;
  background: var(--color-card);
  color: var(--color-text);
  cursor: pointer;
  min-width: 0;
}
.mobile-search-row button {
  padding: 10px 20px;
  background: var(--color-accent);
  color: #fff;
  border: none;
  border-radius: 10px;
  font-weight: 600;
  cursor: pointer;
  font-family: inherit;
  white-space: nowrap;
}
.mobile-search-row button:hover {
  opacity: 0.85;
}

/* ---------- NAV ---------- */
.main-nav {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-shrink: 0;
}
.main-nav a {
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  color: var(--color-muted);
  transition: color 0.2s;
  white-space: nowrap;
}
.main-nav a:hover {
  color: var(--color-primary);
}
#addShopBtn {
  background: var(--color-accent);
  color: #fff;
  padding: 6px 16px;
  border-radius: 100px;
  font-weight: 600;
}
#addShopBtn:hover {
  opacity: 0.85;
}
.back-link {
  color: var(--color-muted);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
}
.back-link:hover {
  color: var(--color-primary);
}

/* ---------- HEADER RESPONSIVE ---------- */
@media (max-width: 768px) {
  .header-desktop {
    flex-wrap: wrap;
  }
  .header-search-wrapper {
    display: none; /* Hide desktop search on mobile */
  }
  .header-search-mobile {
    display: block; /* Show mobile search */
    margin-top: 4px;
  }
}

@media (min-width: 769px) {
  .header-search-mobile {
    display: none; /* Hide mobile search on desktop */
  }
}

/* ============================================
   RESULTS PAGE
   ============================================ */

body.results {
  background: linear-gradient(135deg, #F0EBE0 0%, #FBF8F1 20%, #F0EBE0 80%, #FBF8F1 100%);
}

.results-section {
  margin-top: 10px;
}
.results-header {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 8px 16px;
  margin-bottom: 20px;
}
.results-header h2 {
  font-size: 22px;
  font-weight: 600;
  color: var(--color-text);
  margin: 0;
}
.results-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.results-count {
  font-size: 14px;
  color: var(--color-muted);
  white-space: nowrap;
}
.price-filter {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 14px;
  color: var(--color-muted);
}
.price-filter select {
  padding: 4px 8px;
  border: 1px solid var(--color-border);
  border-radius: 6px;
  background: var(--color-card);
  font-size: 14px;
  font-family: inherit;
  color: var(--color-text);
  cursor: pointer;
}
.price-filter select:focus {
  outline: none;
  border-color: var(--color-accent);
}

/* ---------- SHOP CARD ---------- */
.shop-card {
  background: var(--color-card);
  border-radius: 16px;
  padding: 24px;
  margin-bottom: 16px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  border: 1px solid var(--color-border);
  transition: box-shadow 0.2s, transform 0.1s, border-color 0.2s;
  cursor: pointer;
}
.shop-card:hover {
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.08);
  transform: translateY(-2px);
  border-color: var(--color-accent);
}
@media (hover: none) {
  .shop-card:hover {
    transform: none;
    border-color: var(--color-border);
  }
}
.shop-card .shop-name {
  font-size: 20px;
  font-weight: 600;
  color: var(--color-primary);
}
.shop-card .shop-area {
  font-size: 14px;
  color: var(--color-muted);
  margin: 2px 0 6px;
}
.shop-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 12px;
  margin: 4px 0 8px;
  align-items: center;
}
.price-bracket {
  background: var(--color-accent);
  color: #fff;
  padding: 2px 12px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
  display: inline-block;
}
.shop-subcategory {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 6px 0 10px;
}
.shop-subcategory span {
  background: var(--color-chip-bg);
  padding: 4px 12px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 500;
  color: var(--color-primary);
}
.shop-brands {
  font-size: 14px;
  color: var(--color-muted);
  margin-bottom: 4px;
}
.shop-details-preview {
  font-size: 14px;
  color: var(--color-muted);
  margin-bottom: 12px;
}
.shop-actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 4px;
}
.shop-actions .btn {
  cursor: pointer;
}

/* ---------- NO RESULTS ---------- */
.no-results {
  text-align: center;
  padding: 40px 20px;
  background: var(--color-card);
  border-radius: 16px;
  border: 1px solid var(--color-border);
}
.no-results h3 {
  font-size: 22px;
  color: var(--color-text);
}
.no-results p {
  color: var(--color-muted);
  margin: 8px 0 20px;
}
.email-fallback {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  max-width: 400px;
  margin: 0 auto;
  justify-content: center;
}
.email-fallback input[type="email"] {
  flex: 1;
  min-width: 200px;
  padding: 12px 16px;
  border: 2px solid var(--color-border);
  border-radius: 10px;
  font-size: 15px;
  font-family: inherit;
}
.email-fallback button {
  padding: 12px 28px;
  background: var(--color-accent);
  color: #fff;
  border: none;
  border-radius: 10px;
  font-weight: 600;
  cursor: pointer;
}

/* ---------- NOTIFY SECTION ---------- */
.notify-section {
  margin-top: 40px;
  margin-bottom: 10px;
  padding: 24px;
  background: var(--color-card);
  border-radius: 16px;
  border: 1px solid var(--color-border);
  text-align: center;
}
.notify-section h3 {
  font-size: 18px;
  color: var(--color-text);
  margin-bottom: 4px;
}
.notify-section p {
  color: var(--color-muted);
  font-size: 14px;
  margin-bottom: 14px;
}
.notify-form {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  max-width: 400px;
  margin: 0 auto;
  justify-content: center;
}
.notify-form input[type="email"] {
  flex: 1;
  min-width: 200px;
  padding: 10px 16px;
  border: 2px solid var(--color-border);
  border-radius: 10px;
  font-size: 15px;
  font-family: inherit;
}
.notify-form button {
  padding: 10px 28px;
  background: var(--color-accent);
  color: #fff;
  border: none;
  border-radius: 10px;
  font-weight: 600;
  cursor: pointer;
}

/* ============================================
   MODAL
   ============================================ */

.modal-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
  z-index: 1000;
  justify-content: center;
  align-items: center;
}
.modal-overlay.active {
  display: flex;
}

.modal {
  background: var(--color-card);
  max-width: 500px;
  width: 92%;
  border-radius: 20px;
  padding: 32px;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
  animation: modalIn 0.25s ease;
  position: relative;
}
@keyframes modalIn {
  from { transform: scale(0.96); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

.modal-close {
  background: none;
  border: none;
  font-size: 28px;
  cursor: pointer;
  color: var(--color-muted);
  padding: 0 4px;
  line-height: 1;
}
.modal-close:hover {
  color: var(--color-text);
}
.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 4px;
}
.modal-title {
  color: var(--color-primary);
  font-size: 22px;
  margin: 0;
}
.modal-subtitle {
  color: var(--color-muted);
  margin: 8px 0 20px;
}

.modal .shop-name {
  font-size: 26px;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 4px;
}
.modal .shop-area {
  color: var(--color-muted);
  font-size: 15px;
  margin-bottom: 12px;
}
.modal .shop-detail {
  margin: 6px 0;
  font-size: 15px;
  color: var(--color-text);
}
.modal .shop-detail strong {
  color: var(--color-text);
}
.modal .shop-actions {
  margin-top: 16px;
}
.modal .price-bracket {
  background: var(--color-accent);
  color: #fff;
  padding: 2px 12px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  display: inline-block;
  margin: 4px 0 8px;
}
.modal-counter {
  text-align: center;
  font-size: 14px;
  color: var(--color-muted);
  margin-top: 16px;
  padding-top: 12px;
  border-top: 1px solid var(--color-border);
}

/* ---------- MODAL NAV ARROWS (on overlay, outside modal) ---------- */
.modal-nav-btn {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid var(--color-border);
    border-radius: 50%;
    width: 44px;
    height: 44px;
    font-size: 22px;
    cursor: pointer;
    z-index: 1001;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
    transition: all 0.2s;
    color: var(--color-text);
}
.modal-nav-btn:hover {
    background: var(--color-card);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

/* Position relative to modal width (not viewport edges) */
.modal-nav-btn-left {
    left: calc(50% - 270px);
}
.modal-nav-btn-right {
    right: calc(50% - 270px);
}

@media (max-width: 600px) {
    .modal-nav-btn {
        width: 36px;
        height: 36px;
        font-size: 18px;
    }
    .modal-nav-btn-left {
        left: calc(50% - 190px);
    }
    .modal-nav-btn-right {
        right: calc(50% - 190px);
    }
}

@media (max-width: 420px) {
    .modal-nav-btn-left {
        left: 8px;
    }
    .modal-nav-btn-right {
        right: 8px;
    }
}

/* ============================================
   SHOP PAGE (Storefront)
   ============================================ */

body.shop {
  background: linear-gradient(135deg, #F0EBE0 0%, #FBF8F1 20%, #F0EBE0 80%, #FBF8F1 100%);
}

.shop-storefront {
  max-width: 720px;
  margin: 0 auto;
  padding: 20px;
}
.shop-hero {
  text-align: center;
  padding: 32px 20px 24px;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(8px);
  border-radius: 16px;
  border: 1px solid var(--color-border);
  border-bottom: 3px solid var(--color-accent);
  margin-bottom: 24px;
}
.shop-hero-name {
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 4px;
}
.shop-hero-location {
  font-size: 1.125rem;
  color: var(--color-muted);
  margin-bottom: 8px;
}
.shop-hero-badges {
  display: flex;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 8px;
}
.shop-hero-badge {
  background: var(--color-chip-bg);
  color: var(--color-primary);
  padding: 4px 16px;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 500;
}
.price-bracket-large {
  background: var(--color-accent);
  color: #fff;
  padding: 4px 16px;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 600;
}

/* Shop Nav Tabs */
.shop-nav {
  display: flex;
  gap: 4px;
  justify-content: center;
  flex-wrap: wrap;
  margin: -8px 0 16px;
  padding: 0 4px;
}
.shop-nav a {
  padding: 6px 16px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 500;
  color: var(--color-muted);
  text-decoration: none;
  background: rgba(255, 255, 255, 0.5);
  border: 1px solid transparent;
  transition: all 0.3s ease;
  cursor: pointer;
}
.shop-nav a:hover,
.shop-nav a.active {
  background: var(--color-card);
  border-color: var(--color-accent);
  color: var(--color-primary);
}
.shop-nav a.active {
  background: var(--color-accent);
  color: #fff;
  border-color: var(--color-accent);
}

.shop-content-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 24px;
  margin-bottom: 24px;
}
@media (max-width: 600px) {
  .shop-content-grid {
    grid-template-columns: 1fr;
  }
}

.shop-section {
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(6px);
  border-radius: 16px;
  padding: 24px;
  border: 1px solid var(--color-border);
  margin-bottom: 16px;
}
.shop-section:last-child {
  margin-bottom: 0;
}
.shop-section-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--color-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 10px;
}
.shop-section-text {
  font-size: 16px;
  color: var(--color-text);
  line-height: 1.7;
}
.shop-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.shop-tag {
  background: var(--color-chip-bg);
  color: var(--color-primary);
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 500;
}

.shop-contact {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.shop-contact-btn {
  display: block;
  padding: 14px 20px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  text-align: center;
  transition: opacity 0.2s;
  border: none;
  cursor: pointer;
  font-family: inherit;
}
.shop-contact-btn:hover {
  opacity: 0.85;
}
.shop-contact-call {
  background: var(--color-primary);
  color: #fff;
}
.shop-contact-whatsapp {
  background: var(--color-whatsapp);
  color: #fff;
}
.shop-contact-directions {
  background: #e2e8f0;
  color: var(--color-text);
}
.shop-contact-directions:hover {
  background: #cbd5e1;
}
.shop-contact-claim {
  background: var(--color-accent);
  color: #fff;
}
.shop-back {
  text-align: center;
  padding: 10px 0;
}

/* Shop section highlight (for nav tabs) */
.shop-section-highlight {
  transition: background 0.3s ease, border-color 0.3s ease;
}
.shop-section-highlight.highlight {
  background: rgba(231, 111, 81, 0.08) !important;
  border-color: var(--color-accent) !important;
}

/* ============================================
   THANK YOU PAGE
   ============================================ */

body.thankyou {
  background: linear-gradient(135deg, #F0EBE0 0%, #FBF8F1 20%, #F0EBE0 80%, #FBF8F1 100%);
}

.thankyou-container {
  max-width: 640px;
  margin: 60px auto;
  text-align: center;
  padding: 40px 20px;
  background: var(--color-card);
  border-radius: 16px;
  border: 1px solid var(--color-border);
}
.thankyou-container .icon {
  font-size: 48px;
  margin-bottom: 12px;
}
.thankyou-container h1 {
  color: var(--color-primary);
  font-size: 28px;
  margin-bottom: 8px;
}
.thankyou-container p {
  color: var(--color-muted);
  margin-bottom: 8px;
}
.thankyou-container .btn {
  margin-top: 20px;
}

/* ============================================
   FOOTER
   ============================================ */

.footer-text {
  font-size: 12px;
  color: var(--color-muted);
  text-align: center;
  margin-top: 6px;
  padding-bottom: 10px;
}
.footer-contact {
    text-align: center;
    padding: 24px 20px;
    font-size: 14px;
    color: var(--color-muted);
}
.footer-contact a {
    color: var(--color-accent);
    text-decoration: none;
    font-weight: 500;
}
.footer-contact a:hover {
    text-decoration: underline;
}

/* ============================================
   GLOBAL RESPONSIVE (for all pages)
   ============================================ */

@media (max-width: 600px) {
  .site-header .container {
    flex-direction: column;
    gap: 6px;
  }
  .header-row {
    width: 100%;
    justify-content: space-between;
  }
  .header-search-wrapper {
    width: 100%;
    margin: 0;
  }
  .search-bar-results {
    flex-wrap: wrap;
  }
  .search-bar-results input[type="text"] {
    flex: 1 1 100%;
    min-width: 60px;
  }
  .search-bar-results select,
  .price-filter-inline select {
    flex: 1;
    min-width: 50px;
    padding: 6px 8px;
    font-size: 13px;
  }
  .search-bar-results button {
    flex: 1;
    min-width: 60px;
    padding: 6px 12px;
    font-size: 13px;
  }
  .modal {
    padding: 24px;
  }
  .shop-actions .btn {
    font-size: 13px;
    padding: 6px 14px;
  }
  .results-header {
    flex-direction: column;
    align-items: stretch;
  }
  .results-header .results-meta {
    justify-content: space-between;
  }
  .shop-hero-name {
    font-size: 1.75rem;
  }
  .shop-content-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 400px) {
  .search-bar-results select,
  .price-filter-inline select {
    min-width: 40px;
    font-size: 12px;
  }
  .search-bar-results button {
    font-size: 12px;
    padding: 6px 10px;
  }
}