/* =============================================
   AviatorPK.com — Premium Aviator Eyewear
   Main Stylesheet
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400&family=Inter:wght@300;400;500;600;700&family=Noto+Nastaliq+Urdu:wght@400;500;600;700&display=swap');

/* ---- CSS Variables ---- */
:root {
  --gold:       #C9A84C;
  --gold-light: #E8D08A;
  --gold-dark:  #9A7A28;
  --black:      #0D0D0D;
  --white:      #FFFFFF;
  --off-white:  #F8F7F4;
  --grey-100:   #F3F2EF;
  --grey-200:   #E8E6E0;
  --grey-400:   #9E9B93;
  --grey-700:   #4A4843;
  --text:       #1A1916;

  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans:  'Inter', system-ui, sans-serif;
  --font-urdu:  'Noto Nastaliq Urdu', serif;

  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;

  --shadow-sm: 0 1px 4px rgba(0,0,0,.06);
  --shadow-md: 0 4px 24px rgba(0,0,0,.09);
  --shadow-lg: 0 12px 48px rgba(0,0,0,.13);

  --transition: .3s cubic-bezier(.4,0,.2,1);
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }
body {
  font-family: var(--font-sans);
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ---- Utility ---- */
.container { width: 100%; max-width: 1280px; margin: 0 auto; padding: 0 24px; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }
.urdu { font-family: var(--font-urdu); direction: rtl; }
.section-label {
  font-family: var(--font-sans);
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
}
.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 400;
  line-height: 1.15;
  color: var(--black);
  margin-top: .5rem;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .8rem 2rem;
  border-radius: var(--radius-sm);
  font-size: .875rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  transition: var(--transition);
}
.btn-gold {
  background: var(--gold);
  color: var(--white);
  border: 2px solid var(--gold);
}
.btn-gold:hover { background: var(--gold-dark); border-color: var(--gold-dark); transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn-outline {
  background: transparent;
  color: var(--gold);
  border: 2px solid var(--gold);
}
.btn-outline:hover { background: var(--gold); color: var(--white); transform: translateY(-1px); }
.btn-dark {
  background: var(--black);
  color: var(--white);
  border: 2px solid var(--black);
}
.btn-dark:hover { background: var(--grey-700); border-color: var(--grey-700); transform: translateY(-1px); }

/* ==========================================
   HEADER / NAV
   ========================================== */
#site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  border-bottom: 1px solid var(--grey-200);
  box-shadow: var(--shadow-sm);
}
.header-top {
  background: var(--black);
  color: var(--grey-400);
  font-size: .75rem;
  text-align: center;
  padding: .45rem 24px;
  letter-spacing: .04em;
}
.header-top span { color: var(--gold-light); font-weight: 500; }

.header-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 24px;
  max-width: 1280px;
  margin: 0 auto;
}
.logo {
  display: flex;
  align-items: center;
  gap: .75rem;
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--black);
  letter-spacing: .01em;
}
.logo-icon {
  width: 42px;
  height: 42px;
  background: var(--black);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.logo-icon svg { width: 26px; height: 26px; }
.logo sup {
  font-size: .55rem;
  font-family: var(--font-sans);
  font-weight: 600;
  letter-spacing: .12em;
  color: var(--gold);
  vertical-align: super;
  margin-left: 2px;
}

nav.main-nav { display: flex; align-items: center; gap: .25rem; }
nav.main-nav a {
  padding: .5rem 1rem;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--grey-700);
  border-radius: var(--radius-sm);
  transition: var(--transition);
  position: relative;
}
nav.main-nav a::after {
  content: '';
  position: absolute;
  bottom: 2px; left: 50%; right: 50%;
  height: 2px;
  background: var(--gold);
  transition: var(--transition);
}
nav.main-nav a:hover, nav.main-nav a.active {
  color: var(--black);
}
nav.main-nav a:hover::after, nav.main-nav a.active::after {
  left: 1rem; right: 1rem;
}

.header-actions { display: flex; align-items: center; gap: .75rem; }
.header-phone {
  font-size: .8rem;
  font-weight: 600;
  color: var(--black);
  display: flex;
  align-items: center;
  gap: .4rem;
}
.header-phone svg { color: var(--gold); }

/* Mobile menu toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: .4rem;
}
.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--black);
  border-radius: 2px;
  transition: var(--transition);
}

/* ==========================================
   HERO SECTION
   ========================================== */
#hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--off-white);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('../images/hero-aviator.jpg');
  background-size: cover;
  background-position: center;
  filter: brightness(.45) saturate(.8);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(13,13,13,.88) 0%, rgba(13,13,13,.4) 55%, transparent 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 680px;
  padding: 5rem 0;
}
.hero-content .section-label { color: var(--gold-light); }
.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 300;
  color: var(--white);
  line-height: 1.08;
  margin-top: .75rem;
}
.hero-title strong { font-weight: 700; color: var(--gold-light); display: block; }
.hero-subtitle {
  font-size: 1.05rem;
  color: rgba(255,255,255,.75);
  margin-top: 1.25rem;
  max-width: 500px;
  line-height: 1.7;
}
.hero-urdu {
  font-family: var(--font-urdu);
  font-size: 1.1rem;
  color: rgba(255,255,255,.55);
  direction: rtl;
  margin-top: .5rem;
}
.hero-cta {
  display: flex;
  gap: 1rem;
  margin-top: 2.5rem;
  flex-wrap: wrap;
}
.hero-badge {
  position: absolute;
  right: 60px;
  bottom: 60px;
  z-index: 2;
  width: 130px;
  height: 130px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--white);
  font-weight: 700;
  padding: 16px;
  box-shadow: var(--shadow-lg);
  animation: spin-slow 20s linear infinite;
}
.hero-badge-inner {
  font-size: .65rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  line-height: 1.4;
}
@keyframes spin-slow {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* ==========================================
   PROMO STRIP
   ========================================== */
.promo-strip {
  background: var(--black);
  color: var(--gold-light);
  padding: 1rem 0;
  overflow: hidden;
}
.promo-track {
  display: flex;
  gap: 3rem;
  animation: marquee 25s linear infinite;
  white-space: nowrap;
}
.promo-track span {
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  flex-shrink: 0;
}
.promo-track .dot {
  color: var(--gold);
  font-size: 1.2rem;
  line-height: 1;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ==========================================
   FEATURED PRODUCTS
   ========================================== */
.section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 3rem;
  gap: 1rem;
  flex-wrap: wrap;
}
.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.product-card {
  background: var(--white);
  border: 1px solid var(--grey-200);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition);
  position: relative;
}
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--gold-light);
}
.product-img-wrap {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--grey-100);
}
.product-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.product-card:hover .product-img-wrap img { transform: scale(1.05); }
.product-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: .25rem .65rem;
  border-radius: 100px;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  z-index: 1;
}
.badge-hit { background: var(--gold); color: var(--white); }
.badge-new { background: var(--black); color: var(--white); }
.badge-sale { background: #D94B4B; color: var(--white); }

.product-info { padding: 1.25rem; }
.product-name {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--black);
  margin-bottom: .25rem;
  line-height: 1.3;
}
.product-model {
  font-size: .75rem;
  color: var(--grey-400);
  letter-spacing: .05em;
  margin-bottom: .75rem;
}
.product-price {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--black);
}
.product-price .currency { font-size: .8rem; color: var(--grey-400); margin-left: .25rem; }
.product-price-urdu {
  font-family: var(--font-urdu);
  font-size: .85rem;
  color: var(--grey-400);
  direction: rtl;
  margin-top: .2rem;
}

/* ==========================================
   WHY SECTION
   ========================================== */
.why-section { background: var(--off-white); }
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}
.why-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 2.5rem 2rem;
  border: 1px solid var(--grey-200);
  transition: var(--transition);
  text-align: center;
}
.why-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.why-icon {
  width: 60px;
  height: 60px;
  background: var(--black);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}
.why-icon svg { width: 28px; height: 28px; color: var(--gold); }
.why-title {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: .75rem;
}
.why-text { font-size: .9rem; color: var(--grey-700); line-height: 1.7; }

/* ==========================================
   LIFESTYLE / BANNER SECTION
   ========================================== */
.lifestyle-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 560px;
}
.lifestyle-img {
  position: relative;
  overflow: hidden;
}
.lifestyle-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .7s ease;
}
.lifestyle-img:hover img { transform: scale(1.04); }
.lifestyle-content {
  background: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4rem 3.5rem;
}
.lifestyle-content .section-label { color: var(--gold); }
.lifestyle-content .section-title { color: var(--white); margin-bottom: 1.25rem; }
.lifestyle-text { color: rgba(255,255,255,.7); line-height: 1.8; margin-bottom: 2rem; }
.lifestyle-text-urdu {
  font-family: var(--font-urdu);
  color: rgba(255,255,255,.45);
  direction: rtl;
  font-size: 1rem;
  line-height: 2;
  margin-bottom: 2rem;
}

/* ==========================================
   COLLECTION SECTION
   ========================================== */
.collection-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 3rem;
}
.collection-card {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-radius: var(--radius-md);
  cursor: pointer;
}
.collection-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}
.collection-card:hover img { transform: scale(1.08); }
.collection-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.75) 0%, transparent 60%);
  display: flex;
  align-items: flex-end;
  padding: 1.5rem;
}
.collection-label {
  color: var(--white);
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 600;
}

/* ==========================================
   STORE / VISIT
   ========================================== */
.visit-section {
  background: var(--off-white);
}
.visit-inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
  align-items: center;
}
.visit-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.visit-img img { width: 100%; height: 460px; object-fit: cover; }
.visit-details .section-title { margin-bottom: 1.25rem; }
.visit-info { display: flex; flex-direction: column; gap: 1.25rem; }
.visit-info-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.visit-info-icon {
  width: 44px;
  height: 44px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.visit-info-icon svg { width: 20px; height: 20px; color: var(--white); }
.visit-info-text strong { display: block; font-weight: 600; font-size: .85rem; letter-spacing: .04em; margin-bottom: .2rem; }
.visit-info-text span { font-size: .9rem; color: var(--grey-700); }

/* ==========================================
   TESTIMONIALS
   ========================================== */
.testimonials-section { background: var(--white); }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
.testimonial-card {
  background: var(--off-white);
  border: 1px solid var(--grey-200);
  border-radius: var(--radius-md);
  padding: 2rem;
}
.stars { color: var(--gold); font-size: 1rem; letter-spacing: .1em; margin-bottom: 1rem; }
.testimonial-text {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-style: italic;
  color: var(--grey-700);
  line-height: 1.7;
  margin-bottom: 1.25rem;
}
.testimonial-author { font-weight: 700; font-size: .85rem; }
.testimonial-location { font-size: .8rem; color: var(--grey-400); margin-top: .2rem; }

/* ==========================================
   NEWSLETTER
   ========================================== */
.newsletter-section {
  background: var(--black);
  padding: 5rem 0;
  text-align: center;
}
.newsletter-section .section-title { color: var(--white); margin-bottom: 1rem; }
.newsletter-text { color: rgba(255,255,255,.65); margin-bottom: 2.5rem; font-size: .95rem; }
.newsletter-form {
  display: flex;
  max-width: 480px;
  margin: 0 auto;
  gap: 0;
  border: 1px solid var(--gold);
  border-radius: var(--radius-sm);
  overflow: hidden;
}
.newsletter-form input {
  flex: 1;
  padding: .9rem 1.2rem;
  border: none;
  background: rgba(255,255,255,.05);
  color: var(--white);
  font-family: var(--font-sans);
  font-size: .9rem;
  outline: none;
}
.newsletter-form input::placeholder { color: rgba(255,255,255,.35); }
.newsletter-form button {
  padding: .9rem 1.8rem;
  background: var(--gold);
  color: var(--white);
  font-weight: 700;
  font-size: .8rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  transition: var(--transition);
}
.newsletter-form button:hover { background: var(--gold-dark); }

/* ==========================================
   FOOTER
   ========================================== */
#site-footer {
  background: #0D0D0D;
  color: rgba(255,255,255,.6);
}
.footer-main {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 3rem;
  padding: 4rem 24px 3rem;
  max-width: 1280px;
  margin: 0 auto;
}
.footer-brand .logo { color: var(--white); margin-bottom: 1.25rem; }
.footer-brand p { font-size: .88rem; line-height: 1.75; color: rgba(255,255,255,.5); max-width: 280px; }
.footer-brand-urdu {
  font-family: var(--font-urdu);
  font-size: .85rem;
  direction: rtl;
  color: rgba(255,255,255,.3);
  margin-top: .75rem;
  line-height: 2;
}
.footer-col-title {
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 1.25rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: .65rem; }
.footer-col ul a {
  font-size: .875rem;
  color: rgba(255,255,255,.5);
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: .4rem;
}
.footer-col ul a:hover { color: var(--gold-light); padding-left: 4px; }

.footer-contact { display: flex; flex-direction: column; gap: .9rem; }
.footer-contact-item {
  display: flex;
  gap: .75rem;
  align-items: flex-start;
  font-size: .875rem;
  color: rgba(255,255,255,.5);
}
.footer-contact-item svg { width: 16px; height: 16px; color: var(--gold); flex-shrink: 0; margin-top: 3px; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 1.5rem 24px;
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: .78rem;
  gap: 1rem;
  flex-wrap: wrap;
}
.footer-legal { display: flex; gap: 1.5rem; }
.footer-legal a { color: rgba(255,255,255,.4); transition: var(--transition); }
.footer-legal a:hover { color: var(--gold-light); }

/* ==========================================
   BREADCRUMB
   ========================================== */
.breadcrumb {
  padding: 1rem 0;
  border-bottom: 1px solid var(--grey-200);
  font-size: .8rem;
  color: var(--grey-400);
  display: flex;
  align-items: center;
  gap: .5rem;
}
.breadcrumb a { color: var(--grey-400); transition: var(--transition); }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb span { color: var(--text); font-weight: 500; }

/* ==========================================
   PAGE HERO (inner pages)
   ========================================== */
.page-hero {
  background: var(--black);
  padding: 5rem 0 4rem;
  position: relative;
  overflow: hidden;
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: .18;
}
.page-hero-content { position: relative; z-index: 1; }
.page-hero .section-label { color: var(--gold); }
.page-hero-title {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 300;
  color: var(--white);
  margin-top: .5rem;
}
.page-hero-sub { color: rgba(255,255,255,.55); margin-top: .75rem; font-size: .95rem; }

/* ==========================================
   CATALOG PAGE
   ========================================== */
.catalog-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 2.5rem;
  margin-top: 2rem;
}
.filter-sidebar { position: sticky; top: 120px; height: fit-content; }
.filter-panel {
  background: var(--off-white);
  border: 1px solid var(--grey-200);
  border-radius: var(--radius-md);
  padding: 1.75rem;
}
.filter-title {
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--grey-400);
  margin-bottom: 1.5rem;
  padding-bottom: .75rem;
  border-bottom: 1px solid var(--grey-200);
}
.filter-group { margin-bottom: 1.75rem; }
.filter-group-title {
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: .85rem;
}
.filter-option {
  display: flex;
  align-items: center;
  gap: .6rem;
  padding: .3rem 0;
  cursor: pointer;
  font-size: .875rem;
  color: var(--grey-700);
  transition: var(--transition);
}
.filter-option:hover { color: var(--gold); }
.filter-option input[type="radio"],
.filter-option input[type="checkbox"] {
  accent-color: var(--gold);
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}
.filter-option label { cursor: pointer; }

.catalog-sort {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
  gap: .75rem;
}
.sort-left { display: flex; align-items: center; gap: .75rem; font-size: .85rem; color: var(--grey-700); }
.sort-select {
  padding: .45rem .9rem;
  border: 1px solid var(--grey-200);
  border-radius: var(--radius-sm);
  font-size: .85rem;
  font-family: var(--font-sans);
  color: var(--text);
  background: var(--white);
  cursor: pointer;
  outline: none;
  transition: var(--transition);
}
.sort-select:focus { border-color: var(--gold); }
.catalog-count { font-size: .82rem; color: var(--grey-400); }
.catalog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

/* ==========================================
   TECHNOLOGY PAGE
   ========================================== */
.tech-features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}
.tech-card {
  display: flex;
  gap: 1.5rem;
  padding: 2rem;
  background: var(--off-white);
  border-radius: var(--radius-md);
  border: 1px solid var(--grey-200);
  transition: var(--transition);
}
.tech-card:hover { box-shadow: var(--shadow-md); }
.tech-card-icon {
  width: 52px;
  height: 52px;
  background: var(--black);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.tech-card-icon svg { width: 26px; height: 26px; color: var(--gold); }
.tech-card-content h3 {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: .5rem;
}
.tech-card-content p { font-size: .9rem; color: var(--grey-700); line-height: 1.7; }

/* ==========================================
   CONTACT PAGE
   ========================================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 3rem;
  align-items: start;
}
.contact-form-wrap {
  background: var(--off-white);
  border: 1px solid var(--grey-200);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
}
.form-title {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 1.75rem;
}
.form-group { margin-bottom: 1.25rem; }
.form-label {
  display: block;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--grey-700);
  margin-bottom: .5rem;
}
.form-input, .form-textarea, .form-select {
  width: 100%;
  padding: .85rem 1.1rem;
  border: 1px solid var(--grey-200);
  border-radius: var(--radius-sm);
  font-size: .9rem;
  font-family: var(--font-sans);
  color: var(--text);
  background: var(--white);
  transition: var(--transition);
  outline: none;
}
.form-input:focus, .form-textarea:focus, .form-select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,168,76,.12);
}
.form-textarea { resize: vertical; min-height: 120px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

.contact-info-wrap {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.contact-info-card {
  padding: 1.75rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--grey-200);
  background: var(--white);
}
.contact-info-card h3 {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: .6rem;
}
.contact-info-card h3 svg { color: var(--gold); }
.contact-info-card p, .contact-info-card address {
  font-size: .9rem;
  color: var(--grey-700);
  line-height: 1.7;
  font-style: normal;
}

/* ==========================================
   LEGAL PAGES (Privacy, Terms, Cookies)
   ========================================== */
.legal-content {
  max-width: 820px;
  margin: 0 auto;
  padding: 3rem 0 5rem;
}
.legal-content h2 {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 600;
  margin: 2.5rem 0 1rem;
  color: var(--black);
}
.legal-content h3 {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 600;
  margin: 1.5rem 0 .65rem;
  color: var(--black);
}
.legal-content p { font-size: .93rem; line-height: 1.8; color: var(--grey-700); margin-bottom: 1rem; }
.legal-content ul { padding-left: 1.5rem; margin-bottom: 1rem; }
.legal-content ul li { font-size: .93rem; line-height: 1.8; color: var(--grey-700); margin-bottom: .4rem; list-style: disc; }
.legal-last-updated {
  font-size: .8rem;
  color: var(--grey-400);
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--grey-200);
}

/* ==========================================
   COOKIE BANNER
   ========================================== */
#cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 9999;
  background: var(--black);
  border-top: 3px solid var(--gold);
  padding: 1.25rem 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
  transform: translateY(100%);
  transition: transform .4s ease;
}
#cookie-banner.visible { transform: translateY(0); }
#cookie-banner p { color: rgba(255,255,255,.7); font-size: .88rem; max-width: 700px; }
#cookie-banner p a { color: var(--gold-light); text-decoration: underline; }
.cookie-actions { display: flex; gap: .75rem; flex-shrink: 0; }

/* ==========================================
   SCROLL TOP BTN
   ========================================== */
#scroll-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 900;
  width: 44px;
  height: 44px;
  background: var(--gold);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
}
#scroll-top.visible { opacity: 1; pointer-events: auto; }
#scroll-top:hover { background: var(--gold-dark); transform: translateY(-3px); }
#scroll-top svg { width: 20px; height: 20px; }

/* ==========================================
   RESPONSIVE
   ========================================== */
@media (max-width: 1100px) {
  .products-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-main { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .lifestyle-split { grid-template-columns: 1fr; }
  .lifestyle-img { min-height: 360px; }
  .visit-inner { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .catalog-layout { grid-template-columns: 1fr; }
  .catalog-grid { grid-template-columns: repeat(2, 1fr); }
  .tech-features-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-main { grid-template-columns: repeat(2, 1fr); }
  nav.main-nav { display: none; }
  nav.main-nav.open { display: flex; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0; background: var(--white); padding: 1rem; border-top: 1px solid var(--grey-200); box-shadow: var(--shadow-md); z-index: 999; }
  .menu-toggle { display: flex; }
  #site-header { position: relative; }
  .header-main { position: relative; }
  .collection-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .catalog-grid { grid-template-columns: 1fr; }
  .hero-badge { display: none; }
  .footer-main { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .collection-grid { grid-template-columns: 1fr; }
  .hero-cta { flex-direction: column; align-items: flex-start; }
}

/* ---- Scroll reveal (safe) ---- */
.revealed, .product-card, .why-card, .tech-card, .testimonial-card, .collection-card {
  opacity: 1 !important;
  transform: translateY(0) !important;
}

/* ==========================================
   SECTION SPACING
   ========================================== */
section { padding: 5rem 0; }
.section-sm { padding: 3rem 0; }
.section-lg { padding: 7rem 0; }
