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

body {
  font-family: 'Inter', sans-serif;
  background: #fff;
  color: #000;
  min-height: 200vh;
}

:root {
  --black: #000000;
  --white: #ffffff;
  --header_links: #fd0000;
  --gray: #6d6d6d;
}

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

/* HEADER */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 15vh;
  background: var(--white);
  z-index: 1000;
  transition: height 0.3s;
}


.header-inner {
  height: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 5%;
  display: flex;
  align-items: center;
  /* ← this already existed */
  justify-content: space-between;
  position: relative;
}

/* Logo – always visible and centered */
.logo a {
  font-size: 36px;
  font-weight: 600;
  color: var(--black);
  text-decoration: none;
  letter-spacing: -1px;
  position: absolute;
  left: 50%;
  top: 50%;
  /* ← new */
  transform: translate(-50%, -50%);
  /* ← new – perfect center */
}

/* Desktop links & social */
.nav-left a,
.social a {
  color: var(--gray);
  text-decoration: none;
  font-weight: 500;
  font-size: 16px;
  transition: color 0.3s;
}

.nav-left a {
  margin-right: 40px;
}

.social a {
  margin-left: 30px;
  font-size: 20px;
}

.nav-left a:hover {
  color: var(--header_links);
}

/* Burger button */
.burger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  line-height: 1;
  font-size: 30px;
}

/* Mobile menu overlay */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  padding: 10px;
  background: var(--white);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
  font-size: 36px;
  font-weight: 500;
  transform: translateY(-100%);
  transition: transform 0.4s ease;
  z-index: 999;
}

.mobile-menu a {
  color: var(--black);
  text-decoration: none;
}

.mobile-menu.active {
  transform: translateY(0);
}

.mobile-menu__close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: transparent;
  border: none;
  font-size: 38px;
  color: var(--black);
  cursor: pointer;
  padding: 12px;
  z-index: 1000;
  border-radius: 50%;
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  transition: all 0.3s ease;
}

.mobile-social {
  margin-top: 60px;
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  font-size: 28px;
}

a:hover i.fa-instagram {
  color: #E1306C;
}

a:hover i.fa-tiktok {
  color: #ff0000;
}

a:hover i.fa-facebook {
  color: #1877F2;
}

a:hover i.fa-whatsapp {
  color: #25D366;
}

/* RESPONSIVE */
@media (max-width: 900px) {

  .nav-left,
  .social {
    display: none;
  }

  .burger {
    display: block;
  }

  .logo a {
    font-size: 32px;
  }
}

@media (max-width: 480px) {
  .header {
    height: 15vh;
  }

  .logo a {
    font-size: 28px;
  }
}

/* Logo with Image + Text */
.logo {
  text-align: center;
}

.logo-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  color: inherit;
}

.logo-img {
  width: 60px;
  /* Adjust size as you like */
  height: auto;
  margin-bottom: 6px;
  transition: transform 0.3s ease;
}

.logo-text {
  font-size: 24px;
  font-weight: bold;
  letter-spacing: 4px;
  color: #000;
  text-transform: uppercase;
}

/* Hover effect */
.logo-link:hover .logo-img {
  transform: scale(1.1);
}

/* Mobile responsive */
@media (max-width: 768px) {
  .logo-img {
    width: 50px;
  }

  .logo-text {
    font-size: 20px;
  }
}


/* HERO SECTION */
.hero {
  flex: 1;
  min-height: 100vh;
  background-image: url('images/hero1.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--white);
  position: relative;
}

.hero.overlay-header {
  margin-top: -100px;
  padding-top: 100px;
  height: 100vh;
  min-height: 100vh;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.80);
  /* dark overlay for readability */
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 0 20px;
}

.hero h1 {
  font-size: clamp(35px, 8vw, 70px);
  font-weight: 600;
  letter-spacing: -2px;
  margin-bottom: 16px;
  text-transform: uppercase;
  opacity: 0.99;
}

.hero p {
  font-size: clamp(30px, 3vw, 40px);
  font-weight: 300;
  margin-bottom: 40px;
  opacity: 0.99;
  text-transform: capitalize;
}

.btn {
  display: inline-block;
  padding: 16px 40px;
  background: var(--white);
  color: var(--black);
  text-decoration: none;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
}

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


/* CATEGORIES SECTION */
.categories {
  padding: 3% 0;
  background: #fff;
}

.container {
  width: 90%;
  max-width: 1400px;
  margin: 0 auto;
}

.section-title {
  text-align: center;
  font-size: 42px;
  font-weight: 600;
  margin-bottom: 80px;
  letter-spacing: 3px;
  text-transform: uppercase;
}

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

.category-card {
  position: relative;
  overflow: hidden;
  border-radius: 0;
  /* perfect minimal = no radius */
}

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

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.4s;
}

.overlay h3 {
  color: #fff;
  font-size: 36px;
  font-weight: 600;
  letter-spacing: -1px;
}

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

.category-card:hover .overlay {
  background: rgba(0, 0, 0, 0.45);
}

/* Responsive for tablets & mobile */
@media (max-width: 1024px) {
  .categories-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .section-title {
    font-size: 36px;
    margin-bottom: 60px;
  }

  .overlay h3 {
    font-size: 30px;
  }
}

@media (max-width: 640px) {
  .categories {
    padding: 80px 0;
  }

  .categories-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .overlay h3 {
    font-size: 28px;
  }
}

/* FULL-WIDTH DARK GRADIENT FILTER BAR */
.filter-bar-full {
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  /* background: linear-gradient(to bottom, #8f8f8f77, #00000072); */
  padding: 20px 0;
  text-align: center;
  /* border-bottom: 1px solid #333; */
}

/* Filter buttons container */
.category-filter {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* TEXT-ONLY BUTTONS */
.filter-btn {
  background: transparent !important;
  /* Force no background */
  color: black !important;
  border: none !important;
  padding: 15px 10px;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.35s ease;
  position: relative;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Hover & Active State – pill background */
.filter-btn:hover,
.filter-btn.active {
  background: black !important;
  color: white !important;
  border-radius: 50px;
}

/* Optional: subtle underline on hover (extra luxury touch) */
/* .filter-btn::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 4px;
  left: 50%;
  background: white;
  transition: all 0.35s ease;
} */

.filter-btn:hover::after,
.filter-btn.active::after {
  width: 60%;
  left: 20%;
}

/* TIGHTER & SMALLER PRODUCT CARDS */
.products-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  padding: 40px 0;
}

@media (min-width: 768px) {
  .products-grid {
    grid-template-columns: repeat(4, 1fr);
    /* 4 columns on desktop */
    gap: 24px;
  }
}

@media (max-width: 768px) {
  .category-filter {
    display: flex;
    justify-content: center;
    gap: 0px;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
  }
}

@media (max-width: 480px) {
  .category-filter {
    display: flex;
    flex-direction: row;
    overflow-x: scroll;
    justify-content: flex-start;
    gap: 0px;
    flex-wrap: nowrap;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
  }

  .filter-bar-full {
    padding: 10px 0;
  }

  .filter-btn {
    padding: 10px 15px;
  }
}

/* Product carddsssssxxxxxxxxxxxxxxxxxxxxxxxx */

.product-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
  height: auto;
  max-height: fit-content;
  /* Shorter cards */
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  transform: translateY(-8px);
}

.product-card img {
  width: 100%;
  height: 450px;
  /* Smaller image */
  object-fit: cover;
  margin-bottom: 10px;
}

.product-card h3 {
  font-size: 16px;
  margin: 16px 16px 8px;
  line-height: 1.3;
  flex-grow: 1;
}

.product-card .price {
  font-size: 18px;
  font-weight: 700;
  padding: 0 16px 16px;
  color: #000;
}

@media (max-width: 480px) {
  .product-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
    height: auto;
    max-height: fit-content;
    display: flex;
    flex-direction: column;
  }

  .product-card:hover {
    transform: translateY(-8px);
  }

  .product-card img {
    width: 100%;
    height: 300px;
    /* Smaller image */
    object-fit: cover;
    margin-bottom: 10px;
  }
}

/* FOOTER – New Layout */
.footer {
  background: var(--black);
  color: var(--white);
  padding: 100px 0 0;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 60px;
  padding-bottom: 40px;
  border-bottom: 1px solid #333;
}

.footer-col {
  min-width: 220px;
}

.footer-logo {
  font-size: 34px;
  font-weight: 600;
  letter-spacing: 5px;
  margin-bottom: 20px;
  display: inline-block;
}

.footer-col p {
  font-size: 15px;
  line-height: 1.8;
  opacity: 0.8;
  text-transform: capitalize;
}

/* Social icons */
.footer-social a {
  color: #ccc;
  font-size: 24px;
  margin-right: 32px;
  transition: color 0.3s;
}

.footer-social a:hover {
  color: var(--header_links);
}

.footer-social a:last-child {
  margin-right: 0;
}

/* Contact */
.footer-contact p {
  margin-bottom: 14px;
  font-size: 15px;
  text-decoration: underline;
  cursor: pointer;
}

.footer-contact i {
  margin-right: 12px;
  width: 16px;
  opacity: 0.9;
}

.footer-bottom {
  padding: 30px 0;
  text-align: center;
  font-size: 14px;
  color: #777;
}

/* Mobile */
@media (max-width: 480px) {
  .footer-inner {
    flex-direction: column;
    text-align: center;
    justify-content: center;
    align-items: center;
    gap: 30px;
  }

  .footer-social {
    order: 2;
  }

  .footer-contact {
    order: 3;
  }

  .footer-social a {
    margin: 0 16px;
  }
}


/* PRODUCTS PAGE */
/* .products-page {
  padding: 140px 0 100px;
  background: #fff;
}

.page-title {
  text-align: center;
  font-size: 48px;
  font-weight: 600;
  margin-bottom: 60px;
  letter-spacing: -1.5px;
} */

/* Filter buttons */
/* .category-filter {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 80px;
} */

/* .filter-btn {
  background: none;
  border: none;
  font-size: 18px;
  font-weight: 500;
  color: #555;
  padding: 10px 24px;
  cursor: pointer;
  transition: all 0.3s;
  position: relative;
} */

/* .filter-btn:hover,
.filter-btn.active {
  color: #000;
}

.filter-btn.active::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 100%;
  height: 2px;
  background: #000;
} */

/* Products grid */
/* .products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 40px;
} */

.product-card {
  text-align: center;
  transition: transform 0.4s;
}

.product-card:hover {
  transform: translateY(-10px);
}

/* .product-card img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  margin-bottom: 20px;
} */

.product-card h3 {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 8px;
}

.product-card p {
  font-size: 12px;
  font-weight: bold;
  margin-bottom: 8px;
}

.product-card .price {
  font-size: 16px;
  color: #000;
  font-weight: 600;
}

.old-price {
  text-decoration: line-through;
  color: #999;
  font-size: 18px;
  margin-right: 8px;
}

.sale-badge {
  background: #e74c3c;
  color: white;
  font-weight: bold;
  font-size: 12px;
  padding: 4px 8px;
  border-radius: 4px;
  margin-left: 8px;
}

.new-price {
  font-size: 32px;
  font-weight: 700;
  color: #000;
}

.sale-price-wrapper {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin: 10px 0;
}

/* No products message */
.no-products {
  grid-column: 1 / -1;
  text-align: center;
  padding: 100px 20px;
  font-size: 24px;
  color: #999;
  font-weight: 300;
}

/* If you have .products-page or other main wrappers, also add */
.products-page {
  flex: 1 0 auto;
  display: flex;
  flex-direction: column;
}

.products-page>.container {
  flex: 1;
}

/* Responsive */
/* @media (max-width: 768px) {
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
} */

@media (max-width: 480px) {
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .page-title {
    font-size: 36px;
  }
}


/* PRODUCT DETAILS PAGE */
.product-details-page {
  padding: 50px 0 50px;
  background: #fff;
}

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

.product-images {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.main-image img {
  width: 100%;
  max-width: 50vw;
  height: auto;
  max-height: 100vh;
  object-fit: cover;
  border: 1px solid #eee;
}

.thumbnail-slider {
  display: flex;
  max-width: 40vw;
  gap: 15px;
  overflow-x: scroll;
  padding: 10px 0;
}

.thumbnail-slider img {
  width: 100px;
  height: 100px;
  object-fit: cover;
  cursor: pointer;
  border: 1px solid #eee;
  transition: all 0.3s;
  opacity: 0.7;
}

.thumbnail-slider img.active,
.thumbnail-slider img:hover {
  opacity: 1;
  border-color: #000;
}

.thumbnail-slider {
  display: flex;
  max-width: 40vw;
  gap: 15px;
  overflow-x: scroll;
  padding: 10px 0;

  /* Optional smooth scrolling */
  scroll-behavior: smooth;
}

/* Scrollbar width */
.thumbnail-slider::-webkit-scrollbar {
  height: 8px;
  /* horizontal scrollbar height */
}

/* Scrollbar track */
.thumbnail-slider::-webkit-scrollbar-track {
  background: #e5e5e5;
  border-radius: 10px;
}

/* Scrollbar thumb */
.thumbnail-slider::-webkit-scrollbar-thumb {
  background: #000;
  /* black thumb */
  border-radius: 10px;
}

/* On hover */
.thumbnail-slider::-webkit-scrollbar-thumb:hover {
  background: #333;
}

/* Right side */
.product-info h1 {
  font-size: 42px;
  font-weight: 600;
  margin-bottom: 12px;
  letter-spacing: -1px;
}

.product-info #productBrand {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 20px;
}

.product-brand {
  margin-bottom: 20px;
  font-size: 15px;
}

.product-code {
  color: #777;
  margin-bottom: 20px;
  font-size: 15px;
}

.product-price {
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 40px;
}

.options>div {
  margin-bottom: 30px;
}

.options p {
  margin-bottom: 12px;
  font-weight: 500;
}

/* Sizes – Dynamic from Google Sheets */
.sizes {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.size-btn {
  width: 50px;
  height: 50px;
  border: 1px solid #ddd;
  background: #fff;
  color: #000;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* مقاس متوفر */
.size-btn.available:hover,
.size-btn.available.active {
  border-color: #000;
  background: #000;
  color: #fff;
}

/* مقاس خلصان (quantity = 0) */
.size-btn.sold-out {
  background: #f5f5f5;
  color: #999;
  cursor: not-allowed;
  border-color: #ddd;
}

/* الخط الأسود اللي بيقطع المقاس اللي خلص */
.size-btn.sold-out::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 5px;
  right: 5px;
  height: 2px;
  background: #999;
  transform: translateY(-50%) rotate(-12deg);
}

.description p {
  line-height: 1.8;
  color: #555;
  font-size: 16px;
}

/* color selector */
.color-selector {
  margin: 25px 0 10px;
}

.color-selector p {
  margin: 0 0 12px 0;
  font-weight: 600;
  font-size: 15px;
}

.colors {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.color-btn {
  width: 48px;
  height: 48px;
  color: transparent;
  border-radius: 10px;
  border: 2.5px solid #ddd;
  cursor: pointer;
  transition: all 0.25s;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 500;
  position: relative;
}

.color-btn.active {
  border-color: #000;
  transform: scale(1.12);
  box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.15);
}

.color-btn.sold-out {
  opacity: 0.45;
  cursor: not-allowed;
}

.color-btn.sold-out::after {
  content: "";
  position: absolute;
  position: absolute;
  top: 50%;
  left: -10%;
  right: -10%;
  height: 2px;
  background: #999;
  transform: rotate(-45deg);
}

.color-btn.text-only {
  background: #f9f9f9;
  color: #000;
  width: auto;
  min-width: 70px;
  padding: 0 10px;
  font-size: 13px;
}

/* MOBILE */
@media (max-width: 968px) {
  .product-wrapper {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .main-image img {
    height: auto;
  }

  .product-info h1 {
    font-size: 36px;
  }

  .thumbnail-slider {
    max-width: 40vw;
    height: auto;
    overflow-x: scroll;
  }

  .thumbnail-slider img {
    width: 80px;
    height: 80px;
  }

}

@media (max-width: 480px) {
  .main-image img {
    height: auto;
    max-width: 100%;
  }

  .thumbnail-slider {
    max-width: 90vw;
    height: auto;
    overflow-x: scroll;
  }

  .thumbnail-slider img {
    width: 80px;
    height: 80px;
  }

}

/* Loading spinner */
.loading-spinner {
  grid-column: 1 / -1;
  text-align: center;
  padding: 100px 20px;
  font-size: 20px;
  color: #999;
}

.loading-spinner::after {
  content: "";
  display: block;
  width: 40px;
  height: 40px;
  margin: 20px auto;
  border: 4px solid #f3f3f3;
  border-top: 4px solid #000;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/* =============== PLACEHOLDER LOADING EFFECT =============== */
.placeholder-glow {
  background: transparent;
  border-radius: 4px;
  position: relative;
  overflow: hidden;
}

.placeholder-line {
  display: block;
  height: 16px;
  background: #e0e0e0;
  border-radius: 8px;
  margin: 8px 0;
}

.placeholder-glow::before {
  content: '';
  position: absolute;
  top: 0;
  left: -150%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.6), transparent);
  animation: shimmer 1.8s infinite;
}

.full {
  width: 100%;
  height: 680px;
}

.image-placeholder {
  width: 100%;
  height: 680px;
  background: #f0f0f0;
  position: relative;
}

@keyframes shimmer {
  0% {
    left: -150%;
  }

  100% {
    left: 100%;
  }
}


/* Category Filter Placeholder */
.filter-placeholder {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  padding: 20px 0;
}

.filter-placeholder .placeholder-glow {
  height: 44px;
  border-radius: 8px;
}

/* لما البيانات تتحمل → نخفي الـ placeholder */
.category-filter.loaded .filter-placeholder {
  display: none;
}

/* Categories Placeholder */
.category-placeholder {
  aspect-ratio: 3 / 4;
  border-radius: 0;
  overflow: hidden;
}

.full-card {
  width: 100%;
  height: 100%;
  background: #f0f0f0;
}

/* نخفي الـ placeholder بعد التحميل */
#categoriesGrid.loaded .category-placeholder {
  display: none;
}

/* About Page Styles */
.about-hero {
  background: #000;
  color: white;
  text-align: center;
  padding: 120px 20px;
  height: 100vh;
  min-height: 600px;
  background-image: url('images/hero1.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.about-hero h1 {
  font-size: clamp(35px, 8vw, 70px);
  font-weight: 600;
  letter-spacing: 2px;
  margin-bottom: 16px;
  text-transform: uppercase;
  opacity: 0.99;
  color: white;
}

.about-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.75);
  /* dark overlay for readability */
}


.about-hero p {
  font-size: clamp(30px, 3vw, 40px);
  font-weight: 300;
  margin-bottom: 40px;
  opacity: 0.99;
  text-transform: capitalize;
}

.store-info,
.contact-section {
  padding: 80px 0;
  background: #f9f9f9;
}

.store-grid,
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  margin-top: 40px;
}

.info-card,
.contact-item {
  background: white;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.info-card h2,
.contact-section h2 {
  font-size: 28px;
  margin-bottom: 20px;
}

.info-card p,
.info-card a {
  margin-bottom: 20px;
}

.hours-list {
  list-style: none;
  padding: 0;
}

.hours-list li {
  display: flex;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid #eee;
}

.hours-list li:last-child {
  border-bottom: none;
}

.static-map-link {
  display: block;
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.static-map-link:hover {
  transform: translateY(-4px);
}

.static-map-img {
  width: 100%;
  height: auto;
  display: block;
}

.map-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
  color: white;
  padding: 20px;
  text-align: center;
  font-weight: 600;
}

.map-overlay i {
  font: bold;
  font-size: 20px;
  margin-right: 8px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 20px;
}

.contact-item i {
  font-size: 28px;
  color: #000;
}

.contact-item a {
  color: #000;
  text-decoration: none;
}

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

/* Mobile */
@media (max-width: 768px) {
  .about-hero h1 {
    font-size: 45px;
  }

  .about-hero {
    padding: 80px 20px;
  }
}


/*  */
/* ─────── SCROLLING PROMOTION BAR ─────── */
.scrolling-promotion {
  background: white;
  color: #000;
  padding: 8vh 0;
  /* ← Bigger height */
  overflow: hidden;
  white-space: nowrap;
  position: relative;
  display: flex;
  align-items: center;
  /* ← Vertically center everything */
  font-family: 'Arial', sans-serif;
  font-weight: 500;
}

.scrolling-promotion .track {
  display: inline-flex;
  align-items: center;
  animation: scroll-left 70s linear infinite;
  padding-left: 100%;
  height: 100%;
  gap: 100px;
  /* space between items */
}

.scrolling-promotion:hover .track {
  animation-play-state: paused;
}

/* Each item (text or image) */
.promotion-item {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  flex-shrink: 0;
}

/* Text styling */
.promotion-item span {
  font-size: 22px;
  letter-spacing: 0.8px;
  text-align: center;
}

/* Images → Perfect Circle */
.promotion-item img {
  width: 100px;
  /* ← Adjust size here */
  height: 100px;
  /* border-radius: 50%; */
  /* ← Makes it a perfect circle */
  object-fit: contain;
  /* ensures image fills the circle nicely */
  /* border: 3px solid #000; */
  /* optional: white border for contrast */
  flex-shrink: 0;
}

/* Animation */
@keyframes scroll-left {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-100%);
  }
}

/* Responsive */
@media (max-width: 768px) {
  .scrolling-promotion {
    padding: 60px 0;
  }

  .promotion-item span {
    font-size: 16px;
  }

  .promotion-item img {
    width: 60px;
    height: 60px;
    border-width: 2px;
  }

  .scrolling-promotion .track {
    gap: 40px;
  }
}


/* Force footer to bottom of page */
html,
body {
  height: 100%;
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.header {
  flex-shrink: 0;
  position: relative;
  z-index: 1000;
}

main {
  flex: 1 0 auto;
  display: flex;
  flex-direction: column;
}

.footer {
  flex-shrink: 0;
}