/* ============================================
   Mohan Book Depot & Gift Center - Styles
   ============================================ */

:root {
  --color-primary: #1a365d;
  --color-primary-light: #2c5282;
  --color-accent: #c05621;
  --color-accent-light: #dd6b20;
  --color-accent-soft: #fef3e7;
  --color-logo: #c41e3a;
  --color-logo-dark: #9b1b30;
  --color-bg: #faf9f7;
  --color-bg-alt: #f0ebe3;
  --color-surface: #ffffff;
  --color-text: #1a202c;
  --color-text-muted: #4a5568;
  --color-border: #e2ddd4;
  --font-display: "Playfair Display", Georgia, serif;
  --font-body: "DM Sans", "Noto Sans Devanagari", system-ui, sans-serif;
  --shadow-sm: 0 1px 3px rgba(26, 54, 93, 0.08);
  --shadow-md: 0 4px 20px rgba(26, 54, 93, 0.1);
  --shadow-lg: 0 12px 40px rgba(26, 54, 93, 0.15);
  --radius: 12px;
  --radius-lg: 20px;
  --promo-height: 40px;
  --header-height: 72px;
  --top-offset: calc(var(--promo-height) + var(--header-height));
  --transition: 0.25s ease;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--top-offset);
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-text);
  background: var(--color-bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

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

ul {
  list-style: none;
}

.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding-left: max(1.5rem, env(safe-area-inset-left));
  padding-right: max(1.5rem, env(safe-area-inset-right));
}

.section {
  padding: 5rem 0;
}

.section-alt {
  background: var(--color-bg-alt);
}

.section-tag {
  display: inline-block;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 0.75rem;
}

.section-header {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 3rem;
}

.section-header h2 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 0.75rem;
}

.section-header p {
  color: var(--color-text-muted);
}

h1, h2, h3, h4 {
  line-height: 1.25;
}

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

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

.btn-primary:hover {
  background: var(--color-accent-light);
  border-color: var(--color-accent-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

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

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

.btn-whatsapp {
  background: #128c7e;
  color: #fff;
  border-color: #128c7e;
}

.btn-whatsapp:hover {
  background: #0d7368;
  border-color: #0d7368;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* Promo bar */
.promo-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1001;
  height: auto;
  background: var(--color-primary);
  color: #fff;
}

.promo-bar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding-top: 0.375rem;
  padding-bottom: 0.375rem;
  font-size: 0.8125rem;
}

.promo-message {
  text-align: center;
  transition: opacity 0.3s ease;
}

.promo-message.fade {
  opacity: 0;
}

.promo-link {
  flex-shrink: 0;
  padding: 0.25rem 0.75rem;
  background: var(--color-accent);
  color: #fff;
  font-weight: 600;
  border-radius: 999px;
  white-space: nowrap;
  transition: background var(--transition);
}

.promo-link:hover {
  background: var(--color-accent-light);
}

/* Header */
.header {
  position: fixed;
  top: var(--promo-height);
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-height);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: all var(--transition);
}

.header.scrolled {
  border-bottom-color: var(--color-border);
  box-shadow: var(--shadow-sm);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-height);
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.logo-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  background: var(--color-logo);
  color: #fff;
  font-size: 0.9375rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  border-radius: 12px;
  flex-shrink: 0;
}

.logo-name {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 58px;
  padding: 0 1.125rem;
  background: var(--color-logo);
  color: #fff;
  font-size: clamp(0.875rem, 1.6vw, 1.1875rem);
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.15;
  border-radius: 12px;
  box-sizing: border-box;
}

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

.nav-links a {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--color-text-muted);
  transition: color var(--transition);
}

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

.nav-cta {
  padding: 0.5rem 1.25rem !important;
  background: var(--color-primary);
  color: #fff !important;
  border-radius: 999px;
}

.nav-cta:hover {
  background: var(--color-primary-light) !important;
}

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

.lang-switch {
  display: inline-flex;
  align-items: center;
  padding: 0.2rem;
  border-radius: 999px;
  background: rgba(26, 54, 93, 0.08);
  border: 1px solid var(--color-border);
}

.lang-switch-btn {
  min-width: 2.5rem;
  padding: 0.35rem 0.55rem;
  border: none;
  border-radius: 999px;
  background: transparent;
  color: var(--color-text-muted);
  font-size: 0.8125rem;
  font-weight: 600;
  line-height: 1;
  cursor: pointer;
  transition: background var(--transition), color var(--transition);
}

.lang-switch-btn.is-active {
  background: var(--color-primary);
  color: #fff;
}

.lang-switch-btn:hover:not(.is-active) {
  color: var(--color-primary);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-primary);
  border-radius: 2px;
  transition: all var(--transition);
}

.nav-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: var(--top-offset);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(26, 54, 93, 0.94) 0%, rgba(44, 82, 130, 0.88) 50%, rgba(192, 86, 33, 0.75) 100%),
    url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hero-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
  padding-top: 4rem;
  padding-bottom: 4rem;
  max-width: 720px;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: none;
  padding: 0;
}

.hero-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  animation: fadeUp 0.6s ease 0.2s forwards;
  opacity: 0;
}

.hero-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 3px solid rgba(255, 255, 255, 0.2);
}

.hero-photo-main {
  grid-row: span 2;
  min-height: 280px;
}

.hero-photo-side {
  min-height: 130px;
}

.hero-brand {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
  animation: fadeUp 0.6s ease forwards;
}

.hero-brand-mark {
  display: flex;
  align-items: center;
  justify-content: center;
  width: clamp(100px, 22vw, 140px);
  height: clamp(100px, 22vw, 140px);
  margin-top: 0.12em;
  background: var(--color-logo);
  color: #fff;
  font-size: clamp(1.25rem, 3.2vw, 1.875rem);
  font-weight: 700;
  letter-spacing: 0.05em;
  border-radius: 18px;
  flex-shrink: 0;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.hero-shop-name {
  font-family: var(--font-display);
  font-size: clamp(2rem, 6.5vw, 4rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.1;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.15);
}

.hero-shop-name-line {
  display: block;
  white-space: nowrap;
}

.hero-shop-name-accent {
  color: #fbd38d;
}

.hero-shop-name-location {
  font-family: var(--font-body);
  font-size: clamp(1rem, 2.8vw, 1.625rem);
  font-weight: 500;
  color: rgba(255, 255, 255, 0.92);
  letter-spacing: 0.06em;
  margin-top: 0.5rem;
}

.hero-badge {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 999px;
  font-size: 0.8125rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 0.75rem;
  animation: fadeUp 0.6s ease 0.1s forwards;
  opacity: 0;
}

.hero-locations {
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.82);
  margin-bottom: 0.5rem;
  max-width: 560px;
  animation: fadeUp 0.6s ease 0.12s forwards;
  opacity: 0;
}

.hero-tagline {
  font-family: var(--font-display);
  font-size: clamp(1.375rem, 3.5vw, 2rem);
  font-weight: 600;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 1rem;
  line-height: 1.3;
  animation: fadeUp 0.6s ease 0.18s forwards;
  opacity: 0;
}

.hero-tagline span {
  color: #fbd38d;
}

.hero-subtitle {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: 2rem;
  max-width: 560px;
  animation: fadeUp 0.6s ease 0.25s forwards;
  opacity: 0;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  gap: 1rem;
  margin-bottom: 3rem;
  animation: fadeUp 0.6s ease 0.35s forwards;
  opacity: 0;
}

.hero-directions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  flex: 1 1 280px;
}

.hero-directions .btn {
  flex: 1 1 calc(50% - 0.375rem);
  min-width: 9rem;
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  animation: fadeUp 0.6s ease 0.45s forwards;
  opacity: 0;
}

.stat {
  display: flex;
  flex-direction: column;
}

.stat-number {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 700;
  color: #fff;
}

.stat-label {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.7);
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* About */
.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  max-width: 720px;
}

.about-visual {
  position: relative;
  min-height: 420px;
}

.about-photo {
  position: absolute;
  width: 100%;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  border: 3px solid var(--color-surface);
}

.about-photo-main {
  top: 0;
  left: 0;
  width: 58%;
  z-index: 2;
}

.about-photo-accent {
  bottom: 18%;
  right: 0;
  width: 52%;
  z-index: 3;
}

.about-photo-small {
  bottom: 0;
  left: 22%;
  width: 42%;
  z-index: 1;
}

.about-content h2 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3.5vw, 2.25rem);
  color: var(--color-primary);
  margin-bottom: 1.25rem;
}

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

.about-features {
  margin-top: 1.5rem;
}

.about-features li {
  position: relative;
  padding-left: 1.75rem;
  margin-bottom: 0.75rem;
  color: var(--color-text);
  font-weight: 500;
}

.about-features li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  color: var(--color-accent);
  font-weight: 700;
}

/* Categories */
.category-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.category-card {
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  padding: 1.75rem 0;
  border: 1px solid var(--color-border);
  transition: all var(--transition);
  overflow: hidden;
}

.category-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.category-image {
  margin-bottom: 1.25rem;
  overflow: hidden;
}

.category-image img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  display: block;
  transition: transform var(--transition);
}

.category-card:hover .category-image img {
  transform: scale(1.04);
}

.category-card h3 {
  padding: 0 1.5rem;
  font-size: 1.125rem;
  color: var(--color-primary);
  margin-bottom: 0.75rem;
}

.category-card > p {
  padding: 0 1.5rem;
  font-size: 0.9375rem;
  color: var(--color-text-muted);
  margin-bottom: 1.25rem;
}

.category-items {
  padding: 0 1.5rem;
}

.category-items li {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  padding: 0.25rem 0;
  padding-left: 1rem;
  position: relative;
}

.category-items li::before {
  content: "\2022";
  position: absolute;
  left: 0;
  color: var(--color-accent);
}

/* Uniforms */
.uniforms-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  max-width: 720px;
}

.uniforms-content h2 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3.5vw, 2.25rem);
  color: var(--color-primary);
  margin-bottom: 1.25rem;
}

.uniforms-content p {
  color: var(--color-text-muted);
  margin-bottom: 1.5rem;
}

.uniform-schools {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.school-badge {
  padding: 0.5rem 1rem;
  background: var(--color-primary);
  color: #fff;
  font-size: 0.8125rem;
  font-weight: 600;
  border-radius: 999px;
}

.school-badge-muted {
  background: var(--color-accent);
}

.uniform-school-list {
  margin: 0 0 2rem;
}

.uniform-school-list li {
  position: relative;
  padding-left: 1.25rem;
  margin-bottom: 0.5rem;
  color: var(--color-text-muted);
  font-size: 0.9375rem;
}

.uniform-school-list li::before {
  content: "\2022";
  position: absolute;
  left: 0;
  color: var(--color-accent);
}

.uniform-showcase {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.uniform-photo-feature {
  margin: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-md);
  background: var(--color-surface);
}

.uniform-photo-feature img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center;
  display: block;
}

.uniform-photo-feature figcaption {
  padding: 0.875rem 1rem;
  text-align: center;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--color-primary);
  background: var(--color-surface);
}

.uniform-item {
  margin: 0;
  background: var(--color-bg-alt);
  border-radius: var(--radius-lg);
  overflow: hidden;
  text-align: center;
  border: 1px solid var(--color-border);
  transition: all var(--transition);
}

.uniform-item:hover {
  background: var(--color-accent-soft);
  border-color: var(--color-accent);
}

.uniform-item img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
}

.uniform-item figcaption {
  padding: 0.875rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-primary);
}

/* Features */
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.feature-card {
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  padding: 2rem;
  border: 1px solid var(--color-border);
}

.feature-number {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-accent);
  opacity: 0.5;
  margin-bottom: 1rem;
}

.feature-card h3 {
  font-size: 1.0625rem;
  color: var(--color-primary);
  margin-bottom: 0.75rem;
}

.feature-card p {
  font-size: 0.9375rem;
  color: var(--color-text-muted);
}

/* Section WhatsApp CTA */
.section-whatsapp-cta {
  margin-top: 2.5rem;
  padding: 1.5rem 2rem;
  background: linear-gradient(135deg, rgba(26, 54, 93, 0.06) 0%, rgba(18, 140, 126, 0.08) 100%);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  text-align: center;
}

.section-whatsapp-cta p {
  color: var(--color-text-muted);
  margin-bottom: 1rem;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

/* Uniform actions */
.uniform-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 0.5rem;
}

/* Contact */
.contact-intro {
  max-width: 640px;
}

.store-locations {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.store-location {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.store-location-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 1.25rem 1.5rem 0;
}

.store-location-header h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--color-primary);
}

.store-location-body {
  padding: 1rem 1.5rem 1.25rem;
}

.store-address {
  font-size: 0.9375rem;
  color: var(--color-text-muted);
  line-height: 1.6;
  margin-bottom: 0.75rem;
}

.store-hours {
  font-size: 0.9375rem;
  color: var(--color-text);
  margin-bottom: 1rem;
}

.store-hours strong {
  color: var(--color-primary);
}

.store-map-link {
  display: inline-flex;
  align-items: center;
  color: var(--color-accent);
  font-size: 0.9375rem;
  font-weight: 600;
}

.store-map-link:hover {
  text-decoration: underline;
}

.store-google-link {
  display: inline-flex;
  align-items: center;
  margin-left: 1rem;
  color: var(--color-primary);
  font-size: 0.875rem;
  font-weight: 600;
}

.store-google-link:hover {
  text-decoration: underline;
}

.store-review-link {
  display: inline-flex;
  align-items: center;
  margin-left: 1rem;
  color: var(--color-accent);
  font-size: 0.875rem;
  font-weight: 600;
}

.store-review-link:hover {
  text-decoration: underline;
}

.store-location-body .store-map-link,
.store-location-body .store-google-link,
.store-location-body .store-review-link {
  margin-top: 0.25rem;
}

.store-location-body .store-map-link + .store-google-link,
.store-location-body .store-google-link + .store-review-link {
  margin-left: 1rem;
}

.store-location .map-embed {
  min-height: 240px;
  height: 260px;
  border-radius: 0;
  box-shadow: none;
}

.contact-shared {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
}

.contact-shared-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 1rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.contact-info h2 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3.5vw, 2.25rem);
  color: var(--color-primary);
  margin-bottom: 1rem;
}

.contact-info > p {
  color: var(--color-text-muted);
  margin-bottom: 2rem;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.contact-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  background: var(--color-accent-soft);
  color: var(--color-primary);
  border-radius: 10px;
}

.contact-icon svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-item strong {
  display: block;
  color: var(--color-primary);
  margin-bottom: 0.25rem;
}

.contact-item p {
  font-size: 0.9375rem;
  color: var(--color-text-muted);
}

.contact-item a {
  color: var(--color-accent);
  font-weight: 500;
}

.contact-item a:hover {
  text-decoration: underline;
}

.contact-phone-list {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.contact-phone-note {
  font-size: 0.8125rem;
  color: var(--color-text-muted);
  margin-bottom: 0.35rem;
}

.contact-map {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.contact-shared .map-link {
  width: 100%;
}

.map-embed {
  width: 100%;
  min-height: 320px;
  height: 360px;
  border: 0;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.map-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1rem;
  background: var(--color-primary);
  color: #fff;
  font-size: 0.9375rem;
  font-weight: 600;
  border-radius: var(--radius);
  transition: background var(--transition);
}

.map-link:hover {
  background: var(--color-primary-light);
}

.map-placeholder {
  background: var(--color-bg-alt);
  border: 2px dashed var(--color-border);
  border-radius: var(--radius-lg);
  min-height: 320px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  text-align: center;
  padding: 2rem;
}

.map-placeholder span {
  font-size: 3rem;
}

.map-placeholder p {
  color: var(--color-text-muted);
}

.map-placeholder small {
  font-size: 0.8125rem;
  opacity: 0.7;
}

/* Footer */
.footer {
  background: var(--color-primary);
  color: rgba(255, 255, 255, 0.85);
  padding: 4rem 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.25fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-brand .logo {
  margin-bottom: 0.25rem;
}

.footer-brand > p {
  margin-top: 1rem;
  font-size: 0.9375rem;
  line-height: 1.7;
  max-width: 320px;
}

.footer-links h4 {
  font-size: 0.9375rem;
  color: #fff;
  margin-bottom: 1rem;
}

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-links a {
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.7);
  transition: color var(--transition);
}

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

.footer-google-note {
  margin-top: 0.75rem;
  font-size: 0.8125rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.55);
  max-width: 240px;
}

.whatsapp-float {
  display: flex;
  position: fixed;
  right: max(1.25rem, env(safe-area-inset-right));
  bottom: max(1.25rem, env(safe-area-inset-bottom));
  z-index: 900;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
  align-items: center;
  justify-content: center;
  transition: transform var(--transition), box-shadow var(--transition);
}

.whatsapp-float svg {
  width: 1.75rem;
  height: 1.75rem;
  fill: currentColor;
}

.whatsapp-float:hover,
.whatsapp-float:focus-visible {
  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
  outline: none;
}

.footer-bottom {
  padding: 1.5rem;
  text-align: center;
}

.footer-bottom p {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
}

/* Scroll animations */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 992px) {
  .hero-layout {
    grid-template-columns: 1fr;
    padding-top: 3rem;
    padding-bottom: 3rem;
  }

  .category-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-grid,
  .uniforms-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .store-locations,
  .contact-shared-grid {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 768px) {
  body {
    padding-bottom: calc(5rem + env(safe-area-inset-bottom));
  }

  .container {
    padding-left: max(1.25rem, env(safe-area-inset-left));
    padding-right: max(1.25rem, env(safe-area-inset-right));
  }

  .section {
    padding: 3rem 0;
  }

  .section-header {
    margin-bottom: 2rem;
  }

  .section-header h2 {
    font-size: clamp(1.5rem, 6vw, 2rem);
  }

  .nav-toggle {
    display: flex;
    flex-shrink: 0;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    margin: 0;
  }

  .nav.container {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 0.75rem;
    width: 100%;
    max-width: 1140px;
    height: auto;
    margin: 0 auto;
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
    padding-left: max(1.25rem, env(safe-area-inset-left));
    padding-right: max(1.25rem, env(safe-area-inset-right));
  }

  .header {
    height: auto;
  }

  .logo {
    min-width: 0;
    max-width: 100%;
  }

  .logo-name {
    display: inline-flex;
    align-items: center;
    height: auto;
    min-height: 44px;
    padding: 0.5rem 0.7rem;
    font-size: clamp(0.625rem, 2.5vw, 0.75rem);
    line-height: 1.25;
    white-space: normal;
    text-align: left;
    justify-content: flex-start;
    max-width: 100%;
  }

  .logo-icon {
    height: auto;
    width: 44px;
    min-height: 44px;
    font-size: 0.75rem;
  }

  .nav-links {
    position: fixed;
    top: var(--top-offset);
    left: 0;
    right: 0;
    flex-direction: column;
    background: var(--color-surface);
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
    padding-left: max(1.5rem, env(safe-area-inset-left));
    padding-right: max(1.5rem, env(safe-area-inset-right));
    gap: 0;
    box-shadow: var(--shadow-lg);
    transform: translateY(-120%);
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition);
    max-height: calc(100vh - var(--top-offset));
    overflow-y: auto;
  }

  .nav-links.open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .nav-links li {
    width: 100%;
  }

  .nav-links a {
    display: block;
    padding: 0.875rem 0;
    border-bottom: 1px solid var(--color-border);
  }

  .nav-links li:last-child a {
    border-bottom: none;
    margin-top: 0.5rem;
    text-align: center;
  }

  .promo-bar-inner {
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding-top: 0.5rem;
    padding-bottom: 0.625rem;
    height: auto;
    min-height: 0;
  }

  .promo-message {
    font-size: 0.75rem;
    line-height: 1.35;
    padding: 0 0.25rem;
  }

  .promo-link {
    font-size: 0.75rem;
    padding: 0.35rem 0.85rem;
  }

  .hero {
    min-height: auto;
    align-items: flex-start;
  }

  .hero-layout {
    padding-top: 2rem;
    padding-bottom: 2.5rem;
    max-width: 100%;
  }

  .hero-brand {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    width: 100%;
  }

  .hero-brand-mark {
    width: 80px;
    height: 80px;
    margin-top: 0;
    font-size: 1.25rem;
    border-radius: 14px;
  }

  .hero-shop-name {
    font-size: clamp(1.625rem, 8vw, 2.35rem);
    width: 100%;
  }

  .hero-shop-name-line {
    white-space: normal;
  }

  .hero-shop-name-location {
    font-size: clamp(0.9375rem, 4vw, 1.125rem);
    letter-spacing: 0.04em;
  }

  .hero-tagline {
    font-size: clamp(1.125rem, 5vw, 1.5rem);
  }

  .hero-subtitle {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }

  .hero-actions {
    flex-direction: column;
    margin-bottom: 2rem;
  }

  .hero-actions .btn-primary {
    width: 100%;
  }

  .hero-directions {
    width: 100%;
  }

  .hero-directions .btn {
    flex: 1 1 100%;
    width: 100%;
  }

  .hero-stats {
    gap: 1.25rem 2rem;
    padding-top: 1.5rem;
  }

  .stat-number {
    font-size: 1.5rem;
  }

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

  .category-card h3,
  .category-card > p,
  .category-items {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

  .school-badge {
    font-size: 0.75rem;
    padding: 0.45rem 0.75rem;
    line-height: 1.3;
    text-align: center;
  }

  .uniform-schools {
    gap: 0.5rem;
  }

  .uniform-actions {
    flex-direction: column;
  }

  .uniform-actions .btn {
    width: 100%;
  }

  .section-whatsapp-cta {
    margin-top: 2rem;
    padding: 1.25rem 1rem;
  }

  .section-whatsapp-cta .btn {
    width: 100%;
  }

  .contact-item p,
  .contact-phone-list a {
    word-break: break-word;
  }

  .map-embed {
    min-height: 240px;
    height: 260px;
  }

  .map-link {
    width: 100%;
  }

  .store-google-link {
    display: block;
    margin-left: 0;
    margin-top: 0.5rem;
  }

  .store-review-link {
    display: block;
    margin-left: 0;
    margin-top: 0.5rem;
  }

  .store-location-body .store-google-link + .store-review-link {
    margin-left: 0;
  }

  .footer-brand .logo {
    flex-wrap: wrap;
  }

  .footer-brand .logo-name {
    height: auto;
    white-space: normal;
    line-height: 1.2;
    padding: 0.5rem 0.75rem;
    font-size: 0.8125rem;
  }

  .footer-bottom p {
    font-size: 0.8125rem;
    line-height: 1.5;
  }

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

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

@media (max-width: 480px) {
  .nav.container {
    padding-left: max(1.125rem, env(safe-area-inset-left));
    padding-right: max(1.125rem, env(safe-area-inset-right));
  }

  .logo-name {
    font-size: 0.625rem;
    padding: 0.45rem 0.6rem;
  }

  .hero-shop-name {
    font-size: clamp(1.5rem, 7.5vw, 2rem);
  }

  .hero-stats {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
  }

  .hero-stats .stat:last-child {
    grid-column: span 2;
  }
}
