/* ============================================================
   ZÜRICH TIME & GIFTS — Main Stylesheet
   Color Palette: Deep Navy, Swiss Red, Champagne Gold, Off-White
============================================================ */

:root {
  --navy: #0077b6;
  --navy-mid: #0096c7;
  --navy-light: #90e0ef;
  --red: #c0392b;
  --red-dark: #96281b;
  --gold: #c9a84c;
  --gold-light: #e8c96e;
  --cream: #edf7fc;
  --white: #ffffff;
  --grey-50: #f0f7f9;
  --grey-100: #e1f0f4;
  --grey-200: #c5e1e6;
  --grey-500: #5c848e;
  --grey-800: #1b3d45;

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', system-ui, sans-serif;

  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 32px;

  --shadow-sm: 0 2px 8px rgba(0, 119, 182, .08);
  --shadow-md: 0 8px 32px rgba(0, 119, 182, .14);
  --shadow-lg: 0 20px 60px rgba(0, 119, 182, .22);
  --shadow-card: 0 4px 24px rgba(0, 119, 182, .10);

  --transition: all 0.3s cubic-bezier(.25, .46, .45, .94);
  --transition-fast: all 0.18s ease;
}

/* ============ RESET & BASE ============ */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background: var(--white);
  color: var(--navy);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

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

.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ============ NAVBAR ============ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: transparent;
  transition: background 0.4s cubic-bezier(0.4, 0, 0.2, 1),
    padding 0.4s cubic-bezier(0.4, 0, 0.2, 1),
    box-shadow 0.4s ease;
  padding: 10px 0;
}

.navbar.scrolled::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 119, 182, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: -1;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.navbar.scrolled {
  background: transparent;
  padding: 0;
}

.navbar.navbar--open {
  background: var(--navy) !important;
}

.navbar__inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  height: 72px;
  gap: 20px;
}

.navbar__logo {
  grid-column: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: var(--transition-fast);
  z-index: 10;
}

.navbar__links {
  grid-column: 3;
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 32px;
}

.navbar__logo:hover {
  opacity: .85;
}

.logo-icon,
.logo-img {
  height: 3.5rem;
  width: auto;
  filter: drop-shadow(0 0 10px rgba(201, 168, 76, .3));
  transition: transform 0.3s ease;
}

.navbar:hover .logo-icon,
.navbar:hover .logo-img {
  transform: scale(1.1);
}

.logo-text em {
  font-style: italic;
  color: var(--gold-light);
}

.navbar__links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.navbar__links a {
  color: rgba(255, 255, 255, .88);
  font-size: .93rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: var(--transition-fast);
  position: relative;
}

.navbar__links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold-light);
  border-radius: 2px;
  transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar__links a:hover,
.navbar__links a.active-link {
  color: var(--white);
}

.navbar__links a.active-link {
  color: var(--gold-light) !important;
}

.navbar__links a:hover::after,
.navbar__links a.active-link::after {
  width: 100%;
}

.navbar__hamburger {
  display: none;
  grid-column: 3;
  justify-self: end;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}

.navbar__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: var(--radius-lg);
  font-family: var(--font-body);
  font-size: .93rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  transition: var(--transition);
  cursor: pointer;
  border: 2px solid transparent;
  white-space: nowrap;
}

.btn--primary {
  background: var(--red);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(192, 57, 43, .35);
}

.btn--primary:hover {
  background: var(--red-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(192, 57, 43, .45);
}

.btn--outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, .6);
}

.btn--outline:hover {
  background: rgba(255, 255, 255, .12);
  border-color: var(--white);
  transform: translateY(-2px);
}

.btn--nav {
  background: var(--red);
  color: var(--white) !important;
  padding: 9px 22px;
  border-radius: var(--radius-md);
  font-size: .88rem;
}

.btn--nav:hover {
  background: var(--red-dark);
  transform: translateY(-1px);
}

.btn--nav::after {
  display: none !important;
}

.btn--card {
  background: var(--navy);
  color: var(--white);
  padding: 10px 22px;
  border-radius: var(--radius-md);
  font-size: .87rem;
  width: 100%;
  margin-top: 12px;
}

.btn--card:hover {
  background: var(--red);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(192, 57, 43, .3);
}

.btn--full {
  width: 100%;
}

.btn--whatsapp {
  background: #25D366;
  color: var(--white);
  padding: 10px 24px;
  border-radius: var(--radius-md);
  font-size: .9rem;
  margin-top: 8px;
  display: inline-flex;
}

.btn--whatsapp:hover {
  background: #1ebe5c;
  transform: translateY(-2px);
}

/* ============ HERO ============ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 620px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.04);
  animation: heroZoom 4s ease-in-out infinite alternate;
}

@keyframes heroZoom {
  from {
    transform: scale(1.04);
  }

  to {
    transform: scale(1.10);
  }
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
      rgba(0, 119, 182, .65) 0%,
      rgba(0, 119, 182, .45) 50%,
      rgba(0, 119, 182, .20) 100%);
}

.hero__content {
  position: relative;
  z-index: 1;
  max-width: 680px;
  padding-top: 80px;
  animation: fadeSlideUp 0.33s ease 0.07s both;
}

@keyframes fadeSlideUp {
  from {
    opacity: 0;
    transform: translateY(32px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero__tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(201, 168, 76, .18);
  border: 1px solid rgba(201, 168, 76, .4);
  color: var(--gold-light);
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 20px;
  backdrop-filter: blur(8px);
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.12;
  margin-bottom: 20px;
}

.highlight {
  background: linear-gradient(90deg, var(--gold-light), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero__sub {
  color: rgba(255, 255, 255, .82);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 560px;
}

.hero__cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

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

.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, .10);
  border: 1px solid rgba(255, 255, 255, .22);
  backdrop-filter: blur(8px);
  color: rgba(255, 255, 255, .9);
  font-size: .80rem;
  font-weight: 500;
  padding: 6px 14px;
  border-radius: 100px;
}

.badge__icon {
  color: var(--gold-light);
  font-size: .9rem;
}

.hero__scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, .6);
  font-size: .75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--transition-fast);
}

.hero__scroll:hover {
  color: var(--white);
}

.scroll-arrow {
  width: 20px;
  height: 20px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
  animation: scrollBounce 1.6s ease infinite;
}

@keyframes scrollBounce {

  0%,
  100% {
    transform: rotate(45deg) translateY(0);
    opacity: .6;
  }

  50% {
    transform: rotate(45deg) translateY(6px);
    opacity: 1;
  }
}

/* ============ ANNOUNCEMENT BAR ============ */
.announcement-bar {
  background: var(--navy);
  padding: 12px 0;
  overflow: hidden;
  position: relative;
}

.announcement-track {
  display: flex;
  width: max-content;
  gap: 0;
  white-space: nowrap;
  animation: ticker 20s linear infinite;
  color: var(--gold-light);
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: 0.03em;
}

.announcement-track span {
  padding: 0 8px;
  flex-shrink: 0;
}

@keyframes ticker {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-33.3333%);
  }
}

/* ============ BRANDS TICKER ============ */
.brands-marquee {
  background: var(--cream);
  padding: 24px 0;
  overflow: hidden;
  position: relative;
  border-bottom: 2px solid var(--grey-100);
}

.brands-track {
  display: flex;
  width: max-content;
  align-items: center;
  gap: 0;
  white-space: nowrap;
  animation: brandsTicker 30s linear infinite;
  color: var(--navy-mid);
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.brands-track span {
  padding: 0 40px;
  flex-shrink: 0;
}

.brands-track span.dot {
  padding: 0;
  color: var(--gold);
  font-size: 1.5rem;
}

@keyframes brandsTicker {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-33.3333%);
  }
}

/* ============ SECTIONS ============ */
.section {
  padding: 100px 0;
}

.section__header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 64px;
}

.section__tag {
  display: inline-block;
  color: var(--red);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 12px;
  position: relative;
  padding: 0 16px;
}

.section__tag::before,
.section__tag::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 24px;
  height: 1px;
  background: var(--red);
  opacity: .5;
}

.section__tag::before {
  right: 100%;
}

.section__tag::after {
  left: 100%;
}

.section__title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.18;
  margin-bottom: 16px;
}

.section__sub {
  color: var(--grey-500);
  font-size: .97rem;
  line-height: 1.72;
}

/* ============ WATCHES SECTION ============ */
.watches-section {
  background: var(--cream);
  position: relative;
}

.watches-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--red), var(--gold), var(--red));
}

.outlet-banner {
  display: flex;
  align-items: center;
  gap: 20px;
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  color: var(--white);
  padding: 20px 32px;
  border-radius: var(--radius-lg);
  margin-bottom: 48px;
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
}

.outlet-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -20%;
  width: 200%;
  height: 200%;
  background: radial-gradient(ellipse at 20% 50%, rgba(201, 168, 76, .12) 0%, transparent 60%);
}

.outlet-banner__icon {
  font-size: 2.2rem;
  flex-shrink: 0;
}

.outlet-banner__text {
  flex: 1;
}

.outlet-banner__text strong {
  display: block;
  font-size: 1.1rem;
  margin-bottom: 4px;
  color: var(--gold-light);
}

.outlet-banner__text span {
  font-size: .87rem;
  opacity: .78;
}

.outlet-banner__tag {
  background: var(--red);
  color: var(--white);
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  padding: 8px 18px;
  border-radius: 100px;
  flex-shrink: 0;
}

/* ============ PRODUCT GRID ============ */
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.product-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  overflow: hidden;
  position: relative;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.product-card__badge {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 2;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  padding: 5px 12px;
  border-radius: 100px;
}

.badge--sale {
  background: var(--red);
  color: var(--white);
}

.badge--hot {
  background: var(--navy);
  color: var(--gold-light);
}

.badge--new {
  background: var(--gold);
  color: var(--navy);
}

.product-card__image-wrap {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: var(--grey-100);
}

.product-card__image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.product-card:hover .product-card__image-wrap img {
  transform: scale(1.07);
}

.product-card__hover-actions {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 16px;
  background: linear-gradient(transparent, rgba(0, 119, 182, .75));
  opacity: 0;
  transform: translateY(8px);
  transition: var(--transition);
  display: flex;
  justify-content: center;
}

.product-card:hover .product-card__hover-actions {
  opacity: 1;
  transform: translateY(0);
}

.action-btn {
  background: rgba(255, 255, 255, .15);
  border: 1px solid rgba(255, 255, 255, .4);
  backdrop-filter: blur(8px);
  color: var(--white);
  font-size: .82rem;
  font-weight: 600;
  padding: 8px 20px;
  border-radius: 100px;
  cursor: pointer;
  transition: var(--transition-fast);
}

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

.product-card__body {
  padding: 20px 22px 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.product-card__brand {
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 6px;
}

.product-card__name {
  font-family: var(--font-display);
  font-size: 1.08rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 8px;
  line-height: 1.3;
}

.product-card__desc {
  font-size: .82rem;
  color: var(--grey-500);
  line-height: 1.55;
  margin-bottom: 14px;
  flex: 1;
}

.product-card__prices {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 8px;
}

.price--original {
  font-size: .88rem;
  color: var(--grey-200);
  text-decoration: line-through;
}

.price--sale {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--red);
  font-family: var(--font-display);
}

.product-card__rating {
  font-size: .82rem;
  color: var(--gold);
  margin-bottom: 4px;
}

.product-card__rating span {
  color: var(--grey-500);
  font-size: .78rem;
}

/* Spanning removed for uniform card size */

.watches-cta-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-top: 56px;
  flex-wrap: wrap;
  text-align: center;
  color: var(--grey-500);
  font-size: .97rem;
}

.watches-cta-row strong {
  color: var(--navy);
}

/* ============ USP SECTION ============ */
.usp-section {
  background: var(--navy);
  padding: 72px 0;
}

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

.usp-card {
  text-align: center;
  color: var(--white);
  padding: 24px 16px;
  border-radius: var(--radius-md);
  transition: var(--transition);
}

.usp-card:hover {
  background: rgba(255, 255, 255, .06);
  transform: translateY(-4px);
}

.usp-icon {
  font-size: 2.4rem;
  margin-bottom: 16px;
  display: block;
  filter: drop-shadow(0 0 10px rgba(201, 168, 76, .3));
}

.usp-card h4 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--gold-light);
  margin-bottom: 10px;
}

.usp-card p {
  font-size: .87rem;
  color: rgba(255, 255, 255, .65);
  line-height: 1.65;
}

/* ============ SOUVENIRS ============ */
.souvenirs-section {
  background: var(--white);
}

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

.souvenir-card {
  background: var(--grey-50);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border: 1px solid var(--grey-100);
}

.souvenir-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--grey-200);
}

/* Spanning removed for uniform card size */

.souvenir-card__image {
  height: 220px;
  overflow: hidden;
}

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

.souvenir-card:hover .souvenir-card__image img {
  transform: scale(1.06);
}

.souvenir-card__body {
  padding: 20px 22px 24px;
}

.souvenir-card__body h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 8px;
}

.souvenir-card__body p {
  font-size: .87rem;
  color: var(--grey-500);
  line-height: 1.6;
  margin-bottom: 14px;
}

.souvenir-price {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--red);
  font-family: var(--font-display);
}

/* ============ ABOUT ============ */
.about-section {
  background: var(--grey-50);
}

.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-image {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about-image img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  display: block;
}

.about-image__badge {
  position: absolute;
  bottom: 28px;
  right: 28px;
  background: var(--navy);
  color: var(--white);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  text-align: center;
  box-shadow: var(--shadow-md);
  border: 2px solid rgba(201, 168, 76, .3);
}

.big-num {
  display: block;
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--gold-light);
  line-height: 1;
}

.about-image__badge span:last-child {
  font-size: .78rem;
  color: rgba(255, 255, 255, .7);
  letter-spacing: 0.04em;
}

.about-content .section__title {
  margin-top: 12px;
}

.about-content p {
  color: var(--grey-500);
  font-size: .97rem;
  line-height: 1.75;
  margin-bottom: 20px;
}

.about-stats {
  display: flex;
  gap: 40px;
  margin-top: 36px;
  padding-top: 36px;
  border-top: 1px solid var(--grey-200);
}

.stat {
  text-align: center;
}

.stat__num {
  display: block;
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--red);
  line-height: 1;
  margin-bottom: 6px;
}

.stat__label {
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--grey-500);
}

/* ============ TESTIMONIALS ============ */
.testimonials-section {
  background: var(--navy);
  padding: 100px 0;
}

.testimonials-section .section__title {
  color: var(--white);
}

.testimonials-section .section__tag {
  color: var(--gold-light);
}

.testimonials-section .section__tag::before,
.testimonials-section .section__tag::after {
  background: var(--gold-light);
}

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

.testimonial-card {
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .10);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: var(--transition);
}

.testimonial-card:hover {
  background: rgba(255, 255, 255, .10);
  transform: translateY(-4px);
}

.testimonial-stars {
  font-size: 1rem;
  color: var(--gold-light);
  margin-bottom: 16px;
}

.testimonial-card>p {
  font-size: .93rem;
  color: rgba(255, 255, 255, .78);
  line-height: 1.72;
  font-style: italic;
  margin-bottom: 24px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--red), var(--gold));
  color: var(--white);
  font-size: .85rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.testimonial-author div strong {
  display: block;
  color: var(--white);
  font-size: .9rem;
  margin-bottom: 2px;
}

.testimonial-author div span {
  font-size: .78rem;
  color: rgba(255, 255, 255, .5);
}

/* ============ STORE / MAP ============ */
.store-section {
  background: var(--cream);
}

.store-inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 60px;
  align-items: start;
}

.store-info {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.store-info__block {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding: 20px;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--grey-100);
  transition: var(--transition);
}

.store-info__block:hover {
  transform: translateX(5px);
  box-shadow: var(--shadow-md);
}

.store-info__icon {
  font-size: 1.6rem;
  flex-shrink: 0;
  width: 40px;
  text-align: center;
}

.store-info__block strong {
  display: block;
  font-size: .85rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 5px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.store-info__block span {
  font-size: .88rem;
  color: var(--grey-500);
  line-height: 1.55;
}

.store-map iframe {
  width: 100%;
}

/* ============ CONTACT ============ */
.contact-section {
  background: var(--white);
}

.contact-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 60px;
  align-items: start;
}

.contact-form {
  background: var(--grey-50);
  border-radius: var(--radius-xl);
  padding: 40px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--grey-100);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}

.form-group label {
  font-size: .83rem;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: 0.03em;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 16px;
  border: 1.5px solid var(--grey-200);
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: .93rem;
  color: var(--navy);
  background: var(--white);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  outline: none;
  resize: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(192, 57, 43, .12);
}

.form-success {
  margin-top: 14px;
  color: #16a34a;
  font-size: .9rem;
  font-weight: 600;
  text-align: center;
  min-height: 24px;
}

.contact-aside {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding-top: 8px;
}

.contact-card {
  background: var(--grey-50);
  border-radius: var(--radius-lg);
  padding: 28px;
  border: 1px solid var(--grey-100);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.contact-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.contact-card__icon {
  font-size: 2rem;
  margin-bottom: 12px;
  display: block;
}

.contact-card h4 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 8px;
}

.contact-card p {
  font-size: .88rem;
  color: var(--grey-500);
  line-height: 1.6;
}

/* ============ FOOTER ============ */
.footer {
  background: var(--navy);
  color: var(--white);
  padding: 72px 0 0;
}

.footer__inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: 48px;
  padding-bottom: 56px;
}

.footer__brand .navbar__logo {
  font-size: 1.15rem;
  margin-bottom: 16px;
  display: inline-flex;
}

.footer__brand p {
  font-size: .87rem;
  color: rgba(255, 255, 255, .55);
  line-height: 1.7;
  margin-top: 8px;
  max-width: 280px;
}

.footer__social {
  display: flex;
  gap: 16px;
  margin-top: 20px;
  flex-wrap: wrap;
}

.footer__social a {
  font-size: .78rem;
  color: rgba(255, 255, 255, .55);
  font-weight: 500;
  transition: color 0.2s ease;
}

.footer__social a:hover {
  color: var(--gold-light);
}

.footer__links h5 {
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 18px;
}

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

.footer__links a,
.footer__links span {
  font-size: .87rem;
  color: rgba(255, 255, 255, .55);
  margin-bottom: 10px;
  transition: color 0.2s ease;
  line-height: 1.5;
}

.footer__links a:hover {
  color: var(--white);
}

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, .08);
  padding: 20px 0;
}

.footer__bottom .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  font-size: .8rem;
  color: rgba(255, 255, 255, .38);
}

/* Global Hiding as per user request (Prices & Ratings) */
.product-card__prices,
.souvenir-price,
.modal__info .product-card__prices,
.product-card__rating {
  display: none !important;
}

/* ============ MODAL ============ */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 119, 182, .75);
  backdrop-filter: blur(6px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.modal-overlay.active {
  opacity: 1;
  pointer-events: all;
}

.modal {
  background: var(--white);
  border-radius: var(--radius-xl);
  max-width: 720px;
  width: 92%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  transform: translateY(24px) scale(0.97);
  transition: transform 0.3s cubic-bezier(.25, .46, .45, .94);
  box-shadow: 0 32px 80px rgba(0, 0, 0, .35);
}

.modal-overlay.active .modal {
  transform: translateY(0) scale(1);
}

.modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 10;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--grey-100);
  border: none;
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
}

.modal__close:hover {
  background: var(--grey-200);
}

.modal__content {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.modal__content img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-xl) 0 0 var(--radius-xl);
  min-height: 360px;
}

.modal__info {
  padding: 40px 36px 40px 32px;
}

.modal__info .product-card__brand {
  font-size: .8rem;
}

.modal__info .product-card__name {
  font-size: 1.3rem;
  margin-bottom: 12px;
}

.modal__info .product-card__desc {
  margin-bottom: 20px;
  font-size: .9rem;
}

.modal__info .product-card__prices {
  margin-bottom: 12px;
}

.modal__info .price--sale {
  font-size: 1.6rem;
}

.modal__info .product-card__rating {
  margin-bottom: 24px;
  font-size: .9rem;
}

/* ============ BACK TO TOP ============ */
.back-to-top {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 900;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--red);
  color: var(--white);
  border: none;
  font-size: 1.3rem;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(192, 57, 43, .4);
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.back-to-top.visible {
  opacity: 1;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--red-dark);
  transform: translateY(-2px);
}

/* ============ RESPONSIVE ============ */
@media (max-width: 1024px) {
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .featured-watch {
    grid-column: auto;
    grid-row: auto;
  }

  .featured-watch .product-card__image-wrap {
    aspect-ratio: 1 / 1;
  }

  .usp-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .footer__inner {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }
}

@media (max-width: 768px) {
  .section {
    padding: 64px 0;
  }

  .navbar__links {
    display: none;
  }

  .navbar__links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    inset: 0;
    background: var(--navy);
    /* Solid background for mobile menu */
    align-items: center;
    justify-content: center;
    /* Centered for more professional feel */
    padding-top: 0;
    gap: 32px;
    z-index: 999;
    animation: slideInDown 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  }

  @keyframes slideInDown {
    from {
      transform: translateY(-100%);
      opacity: 0;
    }

    to {
      transform: translateY(0);
      opacity: 1;
    }
  }

  .navbar__links.open a {
    font-size: 1.3rem;
  }

  .navbar__hamburger {
    display: flex;
    z-index: 1001;
  }

  .navbar__hamburger.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

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

  .navbar__hamburger.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .hero {
    align-items: flex-start;
    padding-top: 120px;
    min-height: 580px;
  }

  .hero__content {
    padding-top: 0;
  }

  .hero__title {
    font-size: clamp(1.9rem, 7vw, 2.8rem);
  }

  .hero__cta {
    flex-direction: column;
    gap: 12px;
  }

  .hero__cta .btn {
    width: 100%;
    text-align: center;
    justify-content: center;
  }

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

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

  .souvenir-card--featured {
    grid-column: auto;
  }

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

  .about-image img {
    height: 320px;
  }

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

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

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

  .contact-form {
    padding: 28px 20px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

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

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

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

  .modal__content img {
    border-radius: var(--radius-xl) var(--radius-xl) 0 0;
    min-height: 220px;
    max-height: 260px;
  }

  .modal__info {
    padding: 24px;
  }

  .about-stats {
    gap: 20px;
  }
}

@media (max-width: 480px) {
  .hero__badges .badge {
    font-size: .72rem;
    padding: 5px 10px;
  }

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

  .outlet-banner {
    flex-direction: column;
    text-align: center;
    padding: 20px;
  }

  .watches-cta-row {
    flex-direction: column;
  }
}