/* =============================================
   Gilbert Gateway - Main Stylesheet
   Inspired by Brookfield Place NYC design
   ============================================= */

/* --- Reset & Base --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --color-black: #000000;
  --color-white: #ffffff;
  --color-yellow: #f0d000;
  --color-dark: #111111;
  --color-gray: #f5f5f5;
  --color-mid-gray: #888888;
  --color-light-gray: #e8e8e8;
  --color-teal: #4db6c4;
  --font-primary: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  --nav-height: 70px;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-primary);
  color: var(--color-dark);
  background: var(--color-white);
  line-height: 1.5;
  overflow-x: hidden;
}

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

a:hover {
  text-decoration: none;
}

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

ul {
  list-style: none;
}

/* --- Typography --- */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  line-height: 1.1;
}

/* --- Navigation --- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--color-black);
  height: var(--nav-height);
  display: flex;
  align-items: center;
  padding: 0 40px;
}

.site-header .header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
}

.site-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.site-logo img {
  height: 44px;
  width: auto;
  filter: brightness(0) invert(1);
}

.site-logo .logo-text {
  color: var(--color-white);
  font-size: 18px;
  font-weight: 900;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  line-height: 1.1;
}

.site-logo .logo-text span {
  display: block;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.15em;
  color: var(--color-yellow);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 0;
}

.main-nav a,
.main-nav .nav-item {
  color: var(--color-white);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0 18px;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  cursor: pointer;
  border-bottom: 3px solid transparent;
  transition: border-color 0.2s, color 0.2s;
  position: relative;
}

.main-nav a:hover,
.main-nav .nav-item:hover,
.main-nav a.active {
  border-bottom-color: var(--color-yellow);
  color: var(--color-yellow);
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

.nav-right a {
  color: var(--color-white);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 8px 16px;
  border: 1px solid rgba(255,255,255,0.3);
  transition: background 0.2s, color 0.2s;
}

.nav-right a:hover {
  background: var(--color-white);
  color: var(--color-black);
}

.nav-social {
  display: flex;
  gap: 12px;
  align-items: center;
}

.nav-social a {
  color: var(--color-white);
  font-size: 14px;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.3);
  transition: background 0.2s;
}

.nav-social a:hover {
  background: rgba(255,255,255,0.15);
}

/* --- Mobile Menu Toggle --- */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  flex-direction: column;
  gap: 5px;
}

.mobile-menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-white);
  transition: all 0.3s;
}

/* --- Hero Section --- */
.hero-section {
  position: relative;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
  margin-top: var(--nav-height);
}

.hero-slider {
  position: relative;
  width: 100%;
  height: 100%;
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s ease;
}

.hero-slide.active {
  opacity: 1;
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-slide::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.2) 60%, transparent 100%);
}

.hero-content {
  position: absolute;
  bottom: 80px;
  left: 60px;
  z-index: 10;
  max-width: 600px;
}

.hero-content .hero-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-yellow);
  margin-bottom: 16px;
}

.hero-content h1 {
  font-size: clamp(36px, 5vw, 72px);
  font-weight: 900;
  color: var(--color-white);
  text-transform: uppercase;
  line-height: 1;
  margin-bottom: 8px;
}

.hero-content h1 .accent {
  color: var(--color-yellow);
  display: block;
}

.hero-content p {
  font-size: 16px;
  color: rgba(255,255,255,0.85);
  margin-bottom: 28px;
  font-weight: 300;
  line-height: 1.6;
}

.hero-content .btn-primary {
  display: inline-block;
  background: var(--color-white);
  color: var(--color-black);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 14px 28px;
  transition: background 0.2s, color 0.2s;
}

.hero-content .btn-primary:hover {
  background: var(--color-yellow);
  color: var(--color-black);
}

.hero-dots {
  position: absolute;
  bottom: 30px;
  left: 60px;
  z-index: 10;
  display: flex;
  gap: 8px;
}

.hero-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  cursor: pointer;
  border: none;
  transition: background 0.2s;
}

.hero-dot.active {
  background: var(--color-yellow);
}

/* --- Section Common --- */
.section {
  padding: 80px 40px;
}

.section-inner {
  max-width: 1400px;
  margin: 0 auto;
}

.section-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-mid-gray);
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1.05;
  margin-bottom: 40px;
}

.section-title .accent {
  color: var(--color-yellow);
}

/* --- Intro Section --- */
.intro-section {
  background: var(--color-white);
  padding: 80px 40px;
}

.intro-section .intro-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.intro-section .intro-text h2 {
  font-size: clamp(32px, 4vw, 56px);
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1.05;
  margin-bottom: 24px;
}

.intro-section .intro-text p {
  font-size: 16px;
  line-height: 1.7;
  color: #444;
  margin-bottom: 32px;
}

.btn-black {
  display: inline-block;
  background: var(--color-black);
  color: var(--color-white);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 14px 28px;
  transition: background 0.2s, color 0.2s;
}

.btn-black:hover {
  background: var(--color-yellow);
  color: var(--color-black);
}

.btn-outline {
  display: inline-block;
  background: transparent;
  color: var(--color-black);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 13px 28px;
  border: 2px solid var(--color-black);
  transition: background 0.2s, color 0.2s;
}

.btn-outline:hover {
  background: var(--color-black);
  color: var(--color-white);
}

/* --- Category Grid --- */
.category-section {
  background: var(--color-white);
  padding: 0 40px 80px;
}

.category-section .section-inner {
  max-width: 1400px;
  margin: 0 auto;
}

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

.category-card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3/4;
  cursor: pointer;
}

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

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

.category-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 60%);
}

.category-card .card-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
  padding: 24px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.category-card .card-label span {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-white);
}

.category-card .card-label .arrow {
  color: var(--color-yellow);
  font-size: 18px;
  font-weight: 900;
  transition: transform 0.2s;
}

.category-card:hover .card-label .arrow {
  transform: translateX(4px);
}

/* --- Yellow Banner --- */
.yellow-banner {
  background: var(--color-yellow);
  padding: 60px 40px;
}

.yellow-banner .banner-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.yellow-banner h2 {
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1.05;
  color: var(--color-black);
}

.yellow-banner p {
  font-size: 16px;
  color: #333;
  max-width: 500px;
  line-height: 1.6;
}

/* --- Promotions Section --- */
.promotions-section {
  background: var(--color-gray);
  padding: 80px 40px;
}

.promotions-section .section-inner {
  max-width: 1400px;
  margin: 0 auto;
}

.promotions-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 48px;
}

.promotions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.promo-card {
  background: var(--color-white);
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
}

.promo-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.12);
}

.promo-card .promo-img {
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
}

.promo-card .promo-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.promo-card:hover .promo-img img {
  transform: scale(1.05);
}

.promo-card .promo-body {
  padding: 24px;
}

.promo-card .promo-tag {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-yellow);
  background: var(--color-black);
  display: inline-block;
  padding: 4px 10px;
  margin-bottom: 12px;
}

.promo-card .promo-store {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-mid-gray);
  margin-bottom: 8px;
}

.promo-card h3 {
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.3;
  margin-bottom: 12px;
  letter-spacing: 0.05em;
}

.promo-card p {
  font-size: 14px;
  color: #555;
  line-height: 1.6;
  margin-bottom: 20px;
}

.promo-card .learn-more {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-black);
  display: flex;
  align-items: center;
  gap: 8px;
  transition: gap 0.2s;
}

.promo-card .learn-more::after {
  content: '→';
  font-size: 14px;
}

.promo-card:hover .learn-more {
  gap: 12px;
}

/* --- Location Section --- */
.location-section {
  background: var(--color-black);
  padding: 80px 40px;
  color: var(--color-white);
}

.location-section .section-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.location-section .location-text .section-label {
  color: var(--color-yellow);
}

.location-section .location-text h2 {
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 900;
  color: var(--color-white);
  margin-bottom: 24px;
}

.location-section .location-text p {
  font-size: 16px;
  color: rgba(255,255,255,0.7);
  line-height: 1.7;
  margin-bottom: 32px;
}

.location-section .address-block {
  margin-bottom: 32px;
}

.location-section .address-block strong {
  display: block;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-yellow);
  margin-bottom: 8px;
}

.location-section .address-block p {
  font-size: 20px;
  font-weight: 700;
  color: var(--color-white);
  margin: 0;
}

.location-map {
  position: relative;
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
}

.location-map iframe {
  width: 100%;
  height: 100%;
  border: none;
  filter: grayscale(30%);
}

/* --- Newsletter Section --- */
.newsletter-section {
  background: #4db6c4;
  padding: 80px 40px;
  position: relative;
  overflow: hidden;
}

.newsletter-section::before {
  content: '';
  position: absolute;
  right: -100px;
  top: -100px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
}

.newsletter-section .section-inner {
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.newsletter-section .section-label {
  color: rgba(0,0,0,0.6);
}

.newsletter-section h2 {
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 900;
  color: var(--color-black);
  margin-bottom: 40px;
}

.newsletter-form {
  display: flex;
  gap: 0;
  max-width: 600px;
}

.newsletter-form input[type="email"] {
  flex: 1;
  padding: 16px 20px;
  font-size: 14px;
  border: none;
  outline: none;
  background: var(--color-white);
  color: var(--color-black);
  font-family: var(--font-primary);
}

.newsletter-form input[type="email"]::placeholder {
  color: #999;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 12px;
}

.newsletter-form button {
  background: var(--color-black);
  color: var(--color-white);
  border: none;
  padding: 16px 28px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  cursor: pointer;
  font-family: var(--font-primary);
  transition: background 0.2s;
}

.newsletter-form button:hover {
  background: #333;
}

/* --- Footer --- */
.site-footer {
  background: var(--color-black);
  color: var(--color-white);
  padding: 60px 40px 40px;
}

.footer-inner {
  max-width: 1400px;
  margin: 0 auto;
}

.footer-top {
  display: grid;
  grid-template-columns: 200px 1fr 1fr;
  gap: 60px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  margin-bottom: 32px;
}

.footer-logo {
  display: flex;
  align-items: flex-start;
}

.footer-logo img {
  height: 60px;
  width: auto;
  filter: brightness(0) invert(1);
}

.footer-logo .logo-text {
  font-size: 22px;
  font-weight: 900;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--color-white);
  line-height: 1.1;
}

.footer-logo .logo-text span {
  display: block;
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.2em;
  color: var(--color-yellow);
  margin-top: 4px;
}

.footer-address strong {
  display: block;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-yellow);
  margin-bottom: 12px;
}

.footer-address p {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;
  color: var(--color-white);
}

.footer-links h4 {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-yellow);
  margin-bottom: 16px;
  font-weight: 700;
}

.footer-links ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links ul li a {
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  transition: color 0.2s;
  letter-spacing: 0.05em;
}

.footer-links ul li a:hover {
  color: var(--color-yellow);
}

.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 24px;
}

.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  font-size: 14px;
  transition: background 0.2s, border-color 0.2s;
}

.footer-social a:hover {
  background: var(--color-yellow);
  border-color: var(--color-yellow);
  color: var(--color-black);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-bottom p {
  font-size: 12px;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.05em;
}

.footer-bottom-links {
  display: flex;
  gap: 24px;
}

.footer-bottom-links a {
  font-size: 12px;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.05em;
  transition: color 0.2s;
}

.footer-bottom-links a:hover {
  color: var(--color-yellow);
}

/* --- Page Hero (inner pages) --- */
.page-hero {
  position: relative;
  height: 50vh;
  min-height: 400px;
  overflow: hidden;
  margin-top: var(--nav-height);
}

.page-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.45);
}

.page-hero-content {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
}

.page-hero-content h1 {
  font-size: clamp(36px, 5vw, 72px);
  font-weight: 900;
  color: var(--color-white);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.page-hero-content .hero-divider {
  width: 60px;
  height: 3px;
  background: var(--color-yellow);
  margin: 16px auto 0;
}

/* --- Store Directory Page --- */
.stores-page {
  padding: 80px 40px;
  background: var(--color-white);
}

.stores-page .section-inner {
  max-width: 1400px;
  margin: 0 auto;
}

.stores-intro {
  max-width: 700px;
  margin-bottom: 60px;
}

.stores-intro p {
  font-size: 18px;
  line-height: 1.7;
  color: #444;
}

.stores-filter {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 48px;
  padding-bottom: 24px;
  border-bottom: 2px solid var(--color-light-gray);
}

.filter-btn {
  background: transparent;
  border: 2px solid var(--color-light-gray);
  color: var(--color-dark);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 8px 16px;
  cursor: pointer;
  font-family: var(--font-primary);
  transition: all 0.2s;
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--color-black);
  border-color: var(--color-black);
  color: var(--color-white);
}

.stores-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 2px;
}

.store-card {
  background: var(--color-white);
  border: 1px solid var(--color-light-gray);
  padding: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 140px;
  transition: all 0.2s;
  position: relative;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
}

.store-card:hover {
  border-color: var(--color-black);
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.store-card img {
  max-width: 140px;
  max-height: 70px;
  object-fit: contain;
  margin-bottom: 12px;
}

.store-card .store-name {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-dark);
  text-align: center;
}

.store-card .store-tag {
  position: absolute;
  top: 8px;
  right: 8px;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: var(--color-yellow);
  color: var(--color-black);
  padding: 3px 6px;
}

.store-card .store-category {
  font-size: 10px;
  color: var(--color-mid-gray);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 4px;
}

/* --- Contact Page --- */
.contact-page {
  padding: 80px 40px;
  background: var(--color-white);
}

.contact-page .section-inner {
  max-width: 1400px;
  margin: 0 auto;
}

.contact-intro {
  max-width: 800px;
  margin-bottom: 60px;
}

.contact-intro h2 {
  font-size: clamp(24px, 3vw, 40px);
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1.2;
  margin-bottom: 24px;
}

.contact-intro p {
  font-size: 16px;
  line-height: 1.7;
  color: #444;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.contact-group h3 {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-yellow);
  background: var(--color-black);
  display: inline-block;
  padding: 6px 14px;
  margin-bottom: 24px;
}

.contact-person {
  margin-bottom: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--color-light-gray);
}

.contact-person:last-child {
  border-bottom: none;
}

.contact-person strong {
  display: block;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 4px;
}

.contact-person .title {
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-mid-gray);
  margin-bottom: 8px;
}

.contact-person .phone,
.contact-person .email {
  font-size: 14px;
  color: var(--color-dark);
  display: block;
  margin-bottom: 4px;
}

.contact-person .email {
  color: #0066cc;
  text-decoration: underline;
}

.contact-person .email:hover {
  color: var(--color-black);
}

/* --- Get Here Page --- */
.get-here-page {
  padding: 80px 40px;
  background: var(--color-white);
}

.get-here-page .section-inner {
  max-width: 1400px;
  margin: 0 auto;
}

.get-here-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.get-here-info h2 {
  font-size: clamp(24px, 3vw, 40px);
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1.2;
  margin-bottom: 32px;
}

.get-here-info p {
  font-size: 16px;
  line-height: 1.7;
  color: #444;
  margin-bottom: 32px;
}

.address-card {
  background: var(--color-black);
  color: var(--color-white);
  padding: 32px;
  margin-bottom: 32px;
}

.address-card .label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-yellow);
  margin-bottom: 12px;
}

.address-card .address {
  font-size: 22px;
  font-weight: 700;
  line-height: 1.4;
}

.get-here-map {
  width: 100%;
  aspect-ratio: 1;
  overflow: hidden;
}

.get-here-map iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* --- Sales & Savings Page --- */
.savings-page {
  padding: 80px 40px;
  background: var(--color-gray);
}

.savings-page .section-inner {
  max-width: 1400px;
  margin: 0 auto;
}

.savings-intro {
  max-width: 700px;
  margin-bottom: 60px;
}

.savings-intro p {
  font-size: 18px;
  line-height: 1.7;
  color: #444;
}

.savings-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* --- Utility --- */
.yellow-line {
  width: 60px;
  height: 4px;
  background: var(--color-yellow);
  margin-bottom: 24px;
}

.text-yellow { color: var(--color-yellow); }
.text-white { color: var(--color-white); }
.text-black { color: var(--color-black); }
.bg-black { background: var(--color-black); }
.bg-white { background: var(--color-white); }
.bg-gray { background: var(--color-gray); }

/* --- Responsive --- */
@media (max-width: 1024px) {
  .intro-section .intro-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

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

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

  .location-section .section-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

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

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .get-here-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

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

@media (max-width: 768px) {
  :root {
    --nav-height: 60px;
  }

  .site-header {
    padding: 0 20px;
  }

  .main-nav {
    display: none;
    position: fixed;
    top: var(--nav-height);
    left: 0;
    right: 0;
    background: var(--color-black);
    flex-direction: column;
    padding: 20px 0;
    gap: 0;
    border-top: 1px solid rgba(255,255,255,0.1);
  }

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

  .main-nav a,
  .main-nav .nav-item {
    width: 100%;
    padding: 16px 24px;
    height: auto;
    border-bottom: none;
    border-top: 1px solid rgba(255,255,255,0.05);
  }

  .nav-right {
    display: none;
  }

  .nav-social {
    display: none;
  }

  .mobile-menu-toggle {
    display: flex;
  }

  .hero-content {
    left: 24px;
    right: 24px;
    bottom: 60px;
  }

  .hero-dots {
    left: 24px;
  }

  .section {
    padding: 60px 20px;
  }

  .intro-section {
    padding: 60px 20px;
  }

  .category-section {
    padding: 0 20px 60px;
  }

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

  .yellow-banner {
    padding: 40px 20px;
  }

  .yellow-banner .banner-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .promotions-section {
    padding: 60px 20px;
  }

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

  .promotions-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .location-section {
    padding: 60px 20px;
  }

  .newsletter-section {
    padding: 60px 20px;
  }

  .newsletter-form {
    flex-direction: column;
  }

  .site-footer {
    padding: 40px 20px;
  }

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

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .stores-page,
  .contact-page,
  .get-here-page,
  .savings-page {
    padding: 60px 20px;
  }

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

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

@media (max-width: 480px) {
  .category-grid {
    grid-template-columns: 1fr 1fr;
  }

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

/* ===== DISCOVER OUR FAVORITES SECTION ===== */
.favorites-section {
  background: var(--color-white);
  padding: 80px 40px;
}
.favorites-section .section-inner {
  max-width: 1400px;
  margin: 0 auto;
}
.favorites-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 48px;
}
.favorites-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}
.fav-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: var(--color-gray);
  border: 2px solid transparent;
  padding: 20px 12px;
  cursor: pointer;
  transition: all 0.25s ease;
  text-decoration: none;
  color: var(--color-dark);
}
.fav-btn:hover {
  background: var(--color-black);
  border-color: var(--color-yellow);
  color: var(--color-white);
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.18);
}
.fav-btn img {
  width: 80px;
  height: 60px;
  object-fit: contain;
  margin-bottom: 12px;
  transition: filter 0.25s;
}
.fav-btn:hover img {
  filter: brightness(0) invert(1);
}
.fav-btn span {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 1.3;
}

/* Responsive: favorites */
@media (max-width: 1100px) {
  .favorites-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media (max-width: 768px) {
  .favorites-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
  .favorites-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 480px) {
  .favorites-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ===== INTERACTIVE MAP SECTION ===== */
.map-section {
  background: var(--color-gray);
  padding: 80px 40px;
}
.map-section .section-inner {
  max-width: 1400px;
  margin: 0 auto;
}
.map-section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 40px;
}
.interactive-map-container {
  position: relative;
  width: 100%;
  background: #fff;
  border: 1px solid var(--color-light-gray);
  overflow: hidden;
  user-select: none;
}
.map-svg-wrapper {
  position: relative;
  overflow: hidden;
  cursor: grab;
}
.map-svg-wrapper:active {
  cursor: grabbing;
}
.map-svg-wrapper svg {
  display: block;
  width: 100%;
  height: auto;
}
.map-pin {
  position: absolute;
  transform: translate(-50%, -100%);
  cursor: pointer;
  z-index: 10;
}
.map-pin .pin-dot {
  width: 14px;
  height: 14px;
  background: var(--color-yellow);
  border: 2px solid var(--color-black);
  border-radius: 50%;
  transition: all 0.2s;
  box-shadow: 0 2px 6px rgba(0,0,0,0.3);
}
.map-pin:hover .pin-dot,
.map-pin.active .pin-dot {
  background: var(--color-black);
  border-color: var(--color-yellow);
  transform: scale(1.4);
}
.map-tooltip {
  position: absolute;
  bottom: 20px;
  background: var(--color-black);
  color: var(--color-white);
  padding: 6px 12px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.2s;
  z-index: 20;
}
.map-tooltip::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border: 5px solid transparent;
  border-top-color: var(--color-black);
}
.map-pin:hover .map-tooltip,
.map-pin.active .map-tooltip {
  opacity: 1;
}
.map-controls {
  display: flex;
  gap: 8px;
  margin-bottom: 12px;
  justify-content: flex-end;
}
.map-zoom-btn {
  width: 36px;
  height: 36px;
  background: var(--color-black);
  color: var(--color-white);
  border: none;
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
.map-zoom-btn:hover {
  background: var(--color-yellow);
  color: var(--color-black);
}
.map-store-popup {
  position: absolute;
  background: var(--color-white);
  border: 2px solid var(--color-black);
  padding: 16px 20px;
  min-width: 200px;
  z-index: 30;
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
  display: none;
}
.map-store-popup.visible {
  display: block;
}
.map-store-popup h4 {
  font-size: 0.85rem;
  margin-bottom: 8px;
  color: var(--color-black);
}
.map-store-popup a {
  display: inline-block;
  background: var(--color-yellow);
  color: var(--color-black);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 6px 14px;
  text-transform: uppercase;
  margin-top: 4px;
}
.map-store-popup .close-popup {
  position: absolute;
  top: 8px;
  right: 10px;
  background: none;
  border: none;
  font-size: 1rem;
  cursor: pointer;
  color: var(--color-mid-gray);
}
