/* =============================
   CHERAN SUPER MARKET — STYLES
   Logo colors: Red #e8232a · Black #1a1a1a · Green #2a7a2e
   ============================= */

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

:root {
  --red:    #e8232a;
  --red-dk: #c01a20;
  --black:  #1a1a1a;
  --green:  #2a7a2e;
  --green-lt: #35a03b;
  --white:  #ffffff;
  --off-white: #f7f7f5;
  --glass-bg: rgba(255,255,255,0.10);
  --glass-border: rgba(255,255,255,0.22);
  --text-dark: #1a1a1a;
  --text-mid: #444;
  --text-light: #888;
  --radius: 18px;
  --radius-sm: 10px;
  --shadow: 0 8px 40px rgba(0,0,0,0.13);
  --shadow-lg: 0 20px 60px rgba(0,0,0,0.22);
}

html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', sans-serif;
  background: var(--off-white);
  color: var(--text-dark);
  overflow-x: hidden;
}

/* ===== UTILITY ===== */
.container { max-width: 1160px; margin: 0 auto; padding: 0 24px; }
.section-pad { padding: 90px 0; }

.section-eyebrow {
  display: inline-block;
  font-size: 0.78rem; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--red);
  background: rgba(232,35,42,0.10);
  padding: 5px 14px; border-radius: 50px;
  margin-bottom: 16px;
}
.section-eyebrow.light { color: #fff; background: rgba(255,255,255,0.15); }
.section-eyebrow.center { display: block; text-align: center; width: fit-content; margin: 0 auto 14px; }

.section-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  line-height: 1.08;
  color: var(--black);
  margin-bottom: 28px;
}
.section-title.center { text-align: center; }
.accent-red  { color: var(--red); }
.accent-green{ color: var(--green); }

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.visible { opacity: 1; transform: none; }

/* ===== NAVBAR ===== */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 999;
  background: transparent;
  transition: background 0.4s, box-shadow 0.4s;
}
.navbar.scrolled {
  background: rgba(26,26,26,0.96);
  backdrop-filter: blur(16px);
  box-shadow: 0 2px 24px rgba(0,0,0,0.25);
}
.nav-inner {
  max-width: 1160px; margin: 0 auto; padding: 0 24px;
  height: 70px;
  display: flex; align-items: center; gap: 20px;
}
.nav-logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.nav-logo-img {
  width: 46px; height: 46px;
  border-radius: 50%;
  object-fit: cover;
  border: 2.5px solid rgba(255,255,255,0.35);
  box-shadow: 0 2px 12px rgba(0,0,0,0.3);
}
.nav-brand {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.2rem;
  color: var(--white);
  letter-spacing: 0.06em;
  line-height: 1.1;
}
.nav-brand span {
  display: block; font-size: 0.65rem; letter-spacing: 0.18em;
  color: rgba(255,255,255,0.6); font-family: 'Inter', sans-serif; font-weight: 500;
}

.nav-links { display: flex; list-style: none; gap: 4px; margin-left: auto; }
.nav-links a {
  color: rgba(255,255,255,0.85); text-decoration: none;
  font-size: 0.87rem; font-weight: 500;
  padding: 7px 14px; border-radius: 50px;
  transition: background 0.25s, color 0.25s;
}
.nav-links a:hover { background: rgba(255,255,255,0.14); color: #fff; }

.nav-cta {
  display: flex; align-items: center; gap: 7px;
  background: var(--red); color: #fff; text-decoration: none;
  font-size: 0.84rem; font-weight: 600;
  padding: 9px 20px; border-radius: 50px;
  transition: background 0.25s, transform 0.2s;
  white-space: nowrap;
}
.nav-cta:hover { background: var(--red-dk); transform: translateY(-1px); }

.hamburger { display: none; background: none; border: none; cursor: pointer; flex-direction: column; gap: 5px; padding: 6px; }
.hamburger span { display: block; width: 24px; height: 2.5px; background: #fff; border-radius: 2px; transition: all 0.3s; }
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

.mobile-menu {
  position: fixed; top: 70px; left: 0; right: 0; z-index: 998;
  background: rgba(26,26,26,0.97); backdrop-filter: blur(16px);
  max-height: 0; overflow: hidden;
  transition: max-height 0.4s ease;
}
.mobile-menu.open { max-height: 340px; }
.mobile-menu ul { list-style: none; padding: 14px 0 20px; }
.mobile-menu a { display: block; color: #fff; text-decoration: none; padding: 13px 28px; font-size: 1.05rem; font-weight: 500; transition: color 0.2s; }
.mobile-menu a:hover { color: var(--green); }

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.hero-bg-img {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  transform: scale(1.04);
  transition: transform 8s ease;
}
.hero:hover .hero-bg-img { transform: scale(1.0); }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(26,26,26,0.88) 0%, rgba(26,26,26,0.72) 60%, rgba(42,122,46,0.35) 100%);
}

/* Color stripe accents over image */
.hero-overlay::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 5px;
  background: linear-gradient(90deg, var(--red) 33%, var(--black) 33% 66%, var(--green) 66%);
}
.hero-overlay::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0; height: 5px;
  background: linear-gradient(90deg, var(--green) 33%, var(--black) 33% 66%, var(--red) 66%);
}

.floating-orbs { position: absolute; inset: 0; pointer-events: none; }
.orb {
  position: absolute; border-radius: 50%;
  filter: blur(70px); opacity: 0.28;
  animation: float 8s ease-in-out infinite;
}
.orb1 { width: 400px; height: 400px; background: var(--red); top: -80px; right: -60px; animation-delay: 0s; }
.orb2 { width: 280px; height: 280px; background: var(--green); bottom: -60px; left: 8%; animation-delay: 3s; }
.orb3 { width: 200px; height: 200px; background: var(--red); bottom: 25%; right: 12%; animation-delay: 5s; }
@keyframes float {
  0%,100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-26px) scale(1.05); }
}

.hero-content {
  position: relative; z-index: 2;
  text-align: center;
  padding: 110px 24px 60px;
  max-width: 820px;
}

.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(14px);
  color: #fff; font-size: 0.82rem; font-weight: 600;
  letter-spacing: 0.08em;
  padding: 8px 18px; border-radius: 50px;
  margin-bottom: 22px;
}
.hero-badge i { color: var(--green); }

/* Hero logo image */
.hero-logo-wrap { margin-bottom: 20px; }
.hero-logo-img {
  width: 120px; height: 120px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid rgba(255,255,255,0.3);
  box-shadow: 0 8px 40px rgba(0,0,0,0.5), 0 0 0 8px rgba(255,255,255,0.07);
  animation: logoPulse 3s ease-in-out infinite;
}
@keyframes logoPulse {
  0%,100% { box-shadow: 0 8px 40px rgba(0,0,0,0.5), 0 0 0 8px rgba(255,255,255,0.07); }
  50% { box-shadow: 0 8px 40px rgba(0,0,0,0.5), 0 0 0 16px rgba(255,255,255,0.03); }
}

.hero-title { font-family: 'Bebas Neue', sans-serif; line-height: 0.92; margin-bottom: 18px; }
.hero-title .line1 {
  display: block;
  font-size: clamp(4.5rem, 12vw, 9rem);
  color: transparent;
  -webkit-text-stroke: 2px rgba(255,255,255,0.85);
}
.hero-title .line2 {
  display: block;
  font-size: clamp(1.6rem, 4vw, 3rem);
  color: var(--white); letter-spacing: 0.14em;
}

.hero-sub {
  color: rgba(255,255,255,0.72);
  font-size: 1.05rem; line-height: 1.7;
  margin-bottom: 32px;
}

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

.btn-primary {
  display: inline-flex; align-items: center; gap: 9px;
  background: var(--red); color: #fff; text-decoration: none;
  font-weight: 700; font-size: 0.95rem;
  padding: 14px 30px; border-radius: 50px;
  transition: background 0.25s, transform 0.2s, box-shadow 0.25s;
  box-shadow: 0 4px 20px rgba(232,35,42,0.4);
}
.btn-primary:hover { background: var(--red-dk); transform: translateY(-2px); box-shadow: 0 8px 30px rgba(232,35,42,0.5); }

.btn-whatsapp {
  display: inline-flex; align-items: center; gap: 9px;
  background: #25D366; color: #fff; text-decoration: none;
  font-weight: 700; font-size: 0.95rem;
  padding: 14px 30px; border-radius: 50px;
  transition: background 0.25s, transform 0.2s, box-shadow 0.25s;
  box-shadow: 0 4px 20px rgba(37,211,102,0.35);
}
.btn-whatsapp:hover { background: #1ebc5a; transform: translateY(-2px); box-shadow: 0 8px 30px rgba(37,211,102,0.45); }

.btn-outline {
  display: inline-flex; align-items: center; gap: 9px;
  border: 2px solid var(--black); color: var(--black); text-decoration: none;
  font-weight: 700; font-size: 0.95rem;
  padding: 13px 28px; border-radius: 50px;
  transition: all 0.25s;
}
.btn-outline:hover { background: var(--black); color: #fff; }

.hero-stats {
  display: flex; align-items: center; justify-content: center; gap: 28px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(14px);
  padding: 18px 36px; border-radius: 16px;
  flex-wrap: wrap;
}
.stat { text-align: center; }
.stat-num { display: block; font-family: 'Bebas Neue', sans-serif; font-size: 2rem; color: #fff; line-height: 1; }
.stat-label { font-size: 0.72rem; color: rgba(255,255,255,0.6); letter-spacing: 0.1em; text-transform: uppercase; }
.stat-divider { width: 1px; height: 40px; background: rgba(255,255,255,0.2); }

.hero-scroll { position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%); z-index: 2; }
.scroll-dot { width: 10px; height: 10px; border-radius: 50%; background: rgba(255,255,255,0.6); animation: scrollBounce 1.8s ease-in-out infinite; }
@keyframes scrollBounce { 0%,100% { transform:translateY(0); opacity:0.8; } 50% { transform:translateY(12px); opacity:0.3; } }

/* ===== TICKER ===== */
.ticker-wrap { background: var(--red); overflow: hidden; padding: 13px 0; position: relative; z-index: 1; }
.ticker-track { display: flex; animation: ticker 28s linear infinite; width: max-content; }
.ticker-track span { color: #fff; font-size: 0.85rem; font-weight: 600; padding: 0 32px; white-space: nowrap; letter-spacing: 0.05em; }
.ticker-track span::after { content: '·'; margin-left: 32px; opacity: 0.5; }
@keyframes ticker { 0% { transform:translateX(0); } 100% { transform:translateX(-50%); } }

/* ===== ABOUT ===== */
.about { background: var(--white); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }

.about-img-wrap {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.about-store-img {
  width: 100%; height: 420px;
  object-fit: cover; object-position: center;
  display: block;
  transition: transform 0.6s ease;
}
.about-img-wrap:hover .about-store-img { transform: scale(1.04); }

.about-img-badge {
  position: absolute; top: 20px; left: 20px;
  background: var(--red);
  color: #fff;
  display: flex; align-items: center; gap: 8px;
  padding: 8px 16px; border-radius: 50px;
  font-size: 0.82rem; font-weight: 700;
  box-shadow: 0 4px 16px rgba(232,35,42,0.4);
}
.about-img-tag {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(0deg, rgba(26,26,26,0.85) 0%, transparent 100%);
  color: rgba(255,255,255,0.85);
  font-size: 0.82rem; font-weight: 600;
  padding: 28px 20px 16px;
  letter-spacing: 0.06em;
}

.about-desc { color: var(--text-mid); line-height: 1.75; margin-bottom: 32px; font-size: 1rem; }
.about-features { display: flex; flex-direction: column; gap: 18px; }
.feat { display: flex; align-items: flex-start; gap: 16px; }
.feat-icon { width: 46px; height: 46px; border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 1.1rem; color: #fff; flex-shrink: 0; }
.green-bg { background: var(--green); }
.red-bg   { background: var(--red); }
.black-bg { background: var(--black); }
.feat strong { display: block; font-weight: 700; font-size: 0.95rem; color: var(--black); margin-bottom: 2px; }
.feat span   { font-size: 0.85rem; color: var(--text-light); }

/* ===== GALLERY ===== */
.gallery { background: var(--off-white); }
.gallery-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 16px;
  margin-top: 44px;
}
.gallery-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  cursor: pointer;
  box-shadow: var(--shadow);
}
.gallery-card.tall {
  grid-row: span 2;
}
.gallery-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.55s ease;
  min-height: 240px;
}
.gallery-card.tall img { min-height: 500px; }
.gallery-card:hover img { transform: scale(1.06); }

.gallery-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(26,26,26,0.7) 0%, transparent 55%);
  opacity: 0;
  transition: opacity 0.35s;
  display: flex; align-items: flex-end;
  padding: 22px;
}
.gallery-card:hover .gallery-overlay { opacity: 1; }
.gallery-overlay span {
  color: #fff;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.5rem;
  letter-spacing: 0.06em;
}

/* Lightbox */
.lightbox {
  position: fixed; inset: 0; z-index: 9999;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity 0.3s;
}
.lightbox.active { opacity: 1; }
.lightbox .lb-bg { position: absolute; inset: 0; background: rgba(0,0,0,0.92); }
.lightbox img {
  position: relative; z-index: 2;
  max-width: 90vw; max-height: 88vh;
  border-radius: 14px;
  box-shadow: 0 20px 80px rgba(0,0,0,0.6);
  object-fit: contain;
}
.lb-close {
  position: absolute; top: 20px; right: 24px; z-index: 3;
  background: rgba(255,255,255,0.15); border: none; color: #fff;
  width: 44px; height: 44px; border-radius: 50%; cursor: pointer;
  font-size: 1.1rem; transition: background 0.2s;
}
.lb-close:hover { background: var(--red); }

/* ===== CATEGORIES ===== */
.categories { background: var(--white); }
.cat-grid {
  display: grid; grid-template-columns: repeat(4,1fr);
  gap: 18px; margin-top: 40px;
}
.cat-card {
  background: var(--off-white);
  border: 1.5px solid rgba(0,0,0,0.07);
  border-radius: var(--radius);
  padding: 30px 22px 26px;
  text-align: center; cursor: pointer;
  position: relative; overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}
.cat-card::before {
  content: ''; position: absolute; inset: 0;
  background: var(--accent); opacity: 0; transition: opacity 0.3s;
}
.cat-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: var(--accent); }
.cat-card:hover::before { opacity: 0.05; }
.cat-card:hover .cat-icon { background: var(--accent); color: #fff; }
.cat-card:hover h3 { color: var(--accent); }
.cat-icon {
  width: 56px; height: 56px; border-radius: 14px;
  background: rgba(0,0,0,0.06);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; margin: 0 auto 16px; color: var(--text-dark);
  transition: background 0.3s, color 0.3s;
}
.cat-card h3 { font-size: 0.95rem; font-weight: 700; margin-bottom: 7px; transition: color 0.3s; }
.cat-card p  { font-size: 0.78rem; color: var(--text-light); }
.cat-hover-line {
  position: absolute; bottom: 0; left: 0;
  height: 3px; width: 0;
  background: var(--accent);
  transition: width 0.35s ease;
}
.cat-card:hover .cat-hover-line { width: 100%; }

/* ===== OFFERS ===== */
.offers { background: var(--black); }
.offers-glass {
  background: rgba(255,255,255,0.06);
  border: 1.5px solid rgba(255,255,255,0.12);
  backdrop-filter: blur(18px);
  border-radius: 28px; padding: 60px;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 48px; align-items: center;
}
.offers-left h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  color: #fff; line-height: 1.05; margin-bottom: 18px;
}
.offers-left p { color: rgba(255,255,255,0.65); line-height: 1.72; margin-bottom: 28px; }
.offer-chips { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 32px; }
.chip {
  background: rgba(255,255,255,0.10); border: 1px solid rgba(255,255,255,0.18);
  color: #fff; font-size: 0.8rem; font-weight: 600;
  padding: 7px 16px; border-radius: 50px;
}
.offers-right { display: flex; justify-content: center; align-items: center; }
.offer-badge-wrap { position: relative; width: 200px; height: 200px; }
.offer-badge {
  position: absolute; inset: 20px;
  background: var(--green); border-radius: 50%;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  z-index: 2; box-shadow: 0 10px 40px rgba(42,122,46,0.4);
}
.ob-top { font-family: 'Bebas Neue', sans-serif; font-size: 2.6rem; color: #fff; line-height: 1; }
.ob-mid { font-family: 'Bebas Neue', sans-serif; font-size: 1.4rem; color: rgba(255,255,255,0.9); line-height: 1; }
.ob-bot { font-size: 0.72rem; color: rgba(255,255,255,0.7); letter-spacing: 0.1em; margin-top: 4px; }
.bounce { animation: badgeBounce 2.4s ease-in-out infinite; }
@keyframes badgeBounce { 0%,100% { transform:scale(1); } 50% { transform:scale(1.07); } }
.ring { position: absolute; border-radius: 50%; border: 2px solid rgba(42,122,46,0.35); animation: ringPulse 2.4s ease-in-out infinite; }
.r1 { inset: 4px; animation-delay: 0s; }
.r2 { inset: -12px; animation-delay: 0.7s; }
@keyframes ringPulse { 0%,100% { opacity:0.5; transform:scale(1); } 50% { opacity:1; transform:scale(1.04); } }

/* ===== DELIVERY ===== */
.delivery { background: var(--off-white); }
.delivery-steps { display: flex; align-items: center; justify-content: center; gap: 16px; margin: 48px 0 32px; flex-wrap: wrap; }
.step {
  background: var(--white);
  border: 1.5px solid rgba(0,0,0,0.07);
  border-radius: var(--radius);
  padding: 32px 28px 28px; text-align: center; width: 210px;
  position: relative;
  transition: transform 0.3s, box-shadow 0.3s;
}
.step:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.step-num {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--red); color: #fff;
  font-family: 'Bebas Neue', sans-serif; font-size: 1rem;
  padding: 4px 14px; border-radius: 50px;
}
.step-icon {
  width: 58px; height: 58px; background: rgba(232,35,42,0.08); border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; color: var(--red);
  margin: 16px auto 14px;
}
.step h4 { font-size: 1rem; font-weight: 700; margin-bottom: 6px; }
.step p  { font-size: 0.82rem; color: var(--text-light); }
.step-arrow { font-size: 1.4rem; color: rgba(0,0,0,0.2); flex-shrink: 0; }
.delivery-cta-row { text-align: center; }

/* ===== CONTACT ===== */
.contact { background: var(--white); }
.contact-grid {
  display: grid; grid-template-columns: repeat(4,1fr);
  gap: 18px; margin: 40px 0 28px;
}
.contact-card {
  background: var(--off-white);
  border: 1.5px solid rgba(0,0,0,0.07);
  border-radius: var(--radius); padding: 30px 22px; text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
}
.contact-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.contact-icon {
  width: 52px; height: 52px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.25rem; color: #fff; margin: 0 auto 14px;
}
.contact-card h4 { font-weight: 700; font-size: 0.95rem; margin-bottom: 8px; }
.contact-card p  { font-size: 0.9rem; color: var(--text-mid); line-height: 1.6; }
.contact-card a  { color: var(--black); text-decoration: none; font-weight: 600; }
.contact-card a:hover { color: var(--red); }
.contact-card small { font-size: 0.75rem; color: var(--text-light); }

/* Store image in contact */
.contact-store-img-wrap {
  position: relative; border-radius: 20px; overflow: hidden;
  box-shadow: var(--shadow-lg); margin-bottom: 28px;
}
.contact-store-img {
  width: 100%; height: 320px;
  object-fit: cover; object-position: center bottom;
  display: block;
  transition: transform 0.5s ease;
}
.contact-store-img-wrap:hover .contact-store-img { transform: scale(1.03); }
.contact-store-overlay {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(0deg, rgba(26,26,26,0.82) 0%, transparent 100%);
  padding: 32px 24px 18px;
}
.contact-store-text {
  color: rgba(255,255,255,0.9); font-size: 0.9rem; font-weight: 600;
}
.contact-store-text i { color: var(--red); margin-right: 8px; }

.gstin-bar {
  background: var(--black); color: rgba(255,255,255,0.75);
  text-align: center; padding: 16px; border-radius: var(--radius-sm);
  font-size: 0.85rem; letter-spacing: 0.06em;
}
.gstin-bar i { margin-right: 8px; color: var(--green); }
.gstin-bar strong { color: #fff; margin-left: 6px; }

/* ===== FOOTER ===== */
.footer { background: var(--black); border-top: 3px solid var(--red); padding: 40px 0 20px; }
.footer-inner {
  max-width: 1160px; margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 20px;
  margin-bottom: 24px;
}
.footer-brand { display: flex; align-items: center; gap: 14px; }
.footer-logo {
  width: 46px; height: 46px;
  border-radius: 50%; object-fit: cover;
  border: 2px solid rgba(255,255,255,0.2);
}
.footer-brand strong { display: block; color: #fff; font-size: 0.95rem; letter-spacing: 0.06em; }
.footer-brand span { font-size: 0.75rem; color: rgba(255,255,255,0.45); }
.footer-links { display: flex; gap: 22px; }
.footer-links a { color: rgba(255,255,255,0.55); text-decoration: none; font-size: 0.85rem; transition: color 0.2s; }
.footer-links a:hover { color: var(--green); }
.footer-socials { display: flex; gap: 12px; }
.footer-socials a {
  width: 38px; height: 38px; border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.2);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.65); text-decoration: none; font-size: 0.95rem;
  transition: background 0.25s, color 0.25s;
}
.footer-socials a:hover { background: var(--red); border-color: var(--red); color: #fff; }
.footer-copy {
  max-width: 1160px; margin: 0 auto; padding: 16px 24px 0;
  border-top: 1px solid rgba(255,255,255,0.08);
  text-align: center; color: rgba(255,255,255,0.35); font-size: 0.78rem;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .cat-grid { grid-template-columns: repeat(3,1fr); }
  .contact-grid { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .about-grid { grid-template-columns: 1fr; gap: 32px; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-card.tall img, .gallery-card img { min-height: 220px; }
  .cat-grid { grid-template-columns: repeat(2,1fr); }
  .offers-glass { grid-template-columns: 1fr; padding: 32px 22px; }
  .delivery-steps { flex-direction: column; }
  .step-arrow { transform: rotate(90deg); }
  .contact-grid { grid-template-columns: repeat(2,1fr); }
  .footer-inner { flex-direction: column; align-items: flex-start; }
  .footer-links { flex-wrap: wrap; }
}
@media (max-width: 480px) {
  .cat-grid { grid-template-columns: repeat(2,1fr); }
  .contact-grid { grid-template-columns: 1fr 1fr; }
  .hero-actions { flex-direction: column; align-items: center; }
  .hero-stats { flex-direction: column; gap: 10px; }
  .stat-divider { width: 60px; height: 1px; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration:0.01ms !important; transition-duration:0.01ms !important; }
}
