/* ============================
   ARIVULAGAM — GLOBAL STYLES
   ============================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --primary: #0ea5e9;
  --primary-dark: #0284c7;
  --primary-light: #e0f2fe;
  --accent: #f97316;
  --accent2: #8b5cf6;
  --green: #22c55e;
  --text: #0f172a;
  --text-muted: #64748b;
  --text-light: #94a3b8;
  --white: #ffffff;
  --bg: #f8fafc;
  --bg2: #f1f5f9;
  --border: #e2e8f0;
  --card-shadow: 0 4px 24px rgba(14,165,233,0.10);
  --card-shadow-hover: 0 12px 40px rgba(14,165,233,0.20);
  --radius: 16px;
  --radius-sm: 10px;
  --transition: 0.35s cubic-bezier(.4,0,.2,1);
  --font: 'Nunito', sans-serif;
  --font-display: 'Playfair Display', serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.6;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}
.footer {
  margin-top: auto;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

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

/* ============================
   TOPBAR
   ============================ */
.topbar {
  background: linear-gradient(90deg, #0ea5e9 0%, #8b5cf6 100%);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 600;
  padding: 7px 0;
}
.topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
}
.topbar-left, .topbar-right {
  display: flex;
  align-items: center;
  gap: 20px;
}
.topbar-left span, .topbar-right span {
  display: flex;
  align-items: center;
  gap: 6px;
  opacity: 0.95;
}
.topbar-left img, .topbar-right img {
  width: 14px; height: 14px;
  filter: brightness(0) invert(1);
  display: inline-block;
}

/* ============================
   HEADER
   ============================ */
.header {
  position: sticky;
  top: 0;
  z-index: 999;
  background: rgba(255,255,255,0.98);
  backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 var(--border);
  transition: box-shadow var(--transition);
}
.header.scrolled {
  box-shadow: 0 4px 32px rgba(14,165,233,0.12);
}
.header-main .container {
  display: flex;
  align-items: center;
  gap: 24px;
  padding-top: 14px;
  padding-bottom: 14px;
}
.logo-area {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
  text-decoration: none;
}
.logo-area img {
  height: 52px;
  width: 52px;
  object-fit: contain;
  border-radius: 12px;
  padding: 3px 4px;
  margin-left: 410px;
  transition: transform var(--transition);
  background: #f0f9ff;
}
.logo-area:hover img { transform: scale(1.07) rotate(-4deg); }
.logo-text { display: flex; flex-direction: column;padding:13px 10px; }
.site-name {
  font-size: 3rem;
  font-weight: 800;
  background: linear-gradient(135deg, #0ea5e9, #3888b6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  letter-spacing: -0.02em;
}
.site-tagline {
  font-size: 1rem;
  color: var(--text-muted);
  font-weight: 500;
  margin-top: 3px;
  letter-spacing: 0.04em;
}

.header-search { flex: 1; max-width: 490px; }
.search-box {
  display: flex;
  border: 2px solid var(--border);
  border-radius: 50px;
  overflow: hidden;
  transition: border-color var(--transition), box-shadow var(--transition);
  background: var(--bg);
}
.search-box:focus-within {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(14,165,233,0.10);
  background: #fff;
}
.search-box input {
  flex: 1;
  border: none;
  outline: none;
  background: transparent;
  padding: 10px 18px;
  font-size: 0.88rem;
  font-family: var(--font);
  color: var(--text);
}
.search-box button {
  background: linear-gradient(135deg, #0ea5e9, #8b5cf6);
  color: #fff;
  border: none;
  padding: 10px 23px;
  font-size: 0.82rem;
  font-weight: 700;
  font-family: var(--font);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: opacity var(--transition);

}
.search-box button:hover { opacity: 0.88; }
.search-box button img {
  width: 15px; height: 15px;
  filter: brightness(0) invert(1);
  display: inline;
}

.header-icons {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
}
.icon-btn {
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: right;
  gap: 5px;
  padding: 10px 70px;
  border-radius: 10px;
  font-family: var(--font);
  font-size: 0.78rem;
  color: var(--text-muted);
  font-weight: 600;
  position: relative;
  transition: background var(--transition), color var(--transition);
}
.icon-btn:hover { background: var(--white); color: var(--black); }
.icon-img { width: 22px; height: 22px; object-fit: contain; }
.badge {
  position: absolute;
  top: 4px; right: 6px;
  background: var(--accent);
  color: #fff;
  border-radius: 50%;
  width: 17px; height: 17px;
  font-size: 0.62rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--transition);
}

.hamburger-btn {
  display: none;
  background: none;
  border: 2px solid var(--border);
  font-size: 1.4rem;
  cursor: pointer;
  color: var(--text);
  width: 42px; height: 42px;
  border-radius: 10px;
  align-items: center;
  justify-content: center;
  transition: background var(--transition);
}
.hamburger-btn:hover { background: var(--primary-light); }

/* ============================
   NAVBAR
   ============================ */
.navbar {
  background: #fff;
  border-top: 1px solid var(--border);
}
.navbar .container {
  display: flex;
  align-items: stretch;
  gap: 0;
}

.nav-categories { position: relative; flex-shrink: 0; }
.cat-toggle {
  background: linear-gradient(135deg, #0ea5e9, #8b5cf6);
  color: #fff;
  border: none;
  padding: 14px 22px;
  font-size: 0.85rem;
  font-weight: 700;
  font-family: var(--font);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  height: 100%;
  white-space: nowrap;
  transition: opacity var(--transition);
}
.cat-toggle:hover { opacity: 0.9; }
.cat-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  min-width: 240px;
  border-radius: 0 0 16px 16px;
  box-shadow: 0 16px 48px rgba(0,0,0,0.12);
  z-index: 500;
  display: none;
  border: 1px solid var(--border);
  border-top: none;
  overflow: hidden;
}
.nav-categories:hover .cat-dropdown,
.cat-toggle:focus + .cat-dropdown { display: block; }
.cat-dropdown li a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 20px;
  font-size: 0.87rem;
  font-weight: 600;
  color: var(--text);
  transition: background var(--transition), color var(--transition), padding-left var(--transition);
  border-bottom: 1px solid #f1f5f9;
}
.cat-dropdown li:last-child a { border-bottom: none; }
.cat-dropdown li a:hover {
  background: var(--primary-light);
  color: var(--primary);
  padding-left: 28px;
}
.cat-icon {
  width: 28px;
  text-align: center;
  font-size: 1.1rem;
}

.nav-links {
  display: flex;
  align-items: center;
  flex: 1;
  padding: 0 220px;
  gap: 2px;
}
.nav-links a {
  padding: 15px 26px;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--black);
  white-space: nowrap;
  position: relative;
  transition: color var(--transition);
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 50%;
  width: 0; height: 3px;
  background: linear-gradient(90deg, #c2cbcf, #000000);
  border-radius: 99px;
  transition: width var(--transition), left var(--transition);
}
.nav-links a:hover { color: var(--black); }
.nav-links a:hover::after { width: 70%; left: 15%; }
.nav-links a.active { color: var(--black); }
.nav-links a.active::after { width: 70%; left: 15%; }

/* ============================
   MOBILE MENU
   ============================ */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9998;
  background: rgba(0,0,0,0.5);
}
.mobile-menu.open { display: block; }
.mobile-menu-inner {
  position: absolute;
  top: 0; left: 0;
  width: 280px;
  height: 100%;
  background: #fff;
  padding: 24px;
  overflow-y: auto;
  animation: slideInLeft 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
@keyframes slideInLeft {
  from { transform: translateX(-100%); }
  to { transform: translateX(0); }
}
.close-btn {
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--text);
  align-self: flex-end;
  margin-bottom: 12px;
  padding: 4px 8px;
}
.mobile-menu-inner a {
  display: block;
  padding: 12px 16px;
  font-weight: 700;
  font-size: 0.95rem;
  border-radius: 10px;
  transition: background var(--transition), color var(--transition);
  color: var(--text);
}
.mobile-menu-inner a:hover { background: var(--primary-light); color: var(--primary); }

/* ============================
   HERO SLIDER
   ============================ */
.hero-slider-wrap {
  position: relative;
  overflow: hidden;
  height: 88vh;
  min-height: 500px;
  max-height: 700px;
  background: #0f172a;
}
.hero-slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  opacity: 0;
  transition: opacity 0.8s ease, transform 0.8s ease;
  transform: scale(1.02);
  pointer-events: none;
}
.hero-slide.active {
  opacity: 1;
  transform: scale(1);
  pointer-events: auto;
}
.slide-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 6s linear;
}
.hero-slide.active .slide-bg { transform: scale(1.05); }
.slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(15,23,42,0.80) 0%, rgba(15,23,42,0.30) 60%, transparent 100%);
}
.hero-slide .container { position: relative; z-index: 2; }
.slide-text { max-width: 580px; }
.slide-tag {
  display: inline-block;
  background: linear-gradient(135deg, #000000, #000000);
  color: #fff;
  font-size: 0.85rem;
  font-weight: 800;
  padding: 6px 28px;
  border-radius: 99px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 20px;
  animation: fadeUp 0.6s 0.2s both;
}
.slide-text h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1.15;
  color: #fff;
  margin-bottom: 18px;
  animation: fadeUp 0.6s 0.3s both;
}
.slide-text h1 span {
  color: #80ecff;
}
.slide-text p {
  color: rgba(255,255,255,0.80);
  font-size: 1.02rem;
  line-height: 1.75;
  margin-bottom: 32px;
  animation: fadeUp 0.6s 0.4s both;
  max-width: 480px;
}
.slide-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  animation: fadeUp 0.6s 0.5s both;
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 30px;
  border-radius: 50px;
  font-weight: 800;
  font-size: 0.88rem;
  cursor: pointer;
  border: 2px solid transparent;
  font-family: var(--font);
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition), color var(--transition), border-color var(--transition);
  letter-spacing: 0.03em;
  text-transform: uppercase;
}
.btn-primary {
  background: linear-gradient(135deg, #000000, #000000);
  color: #fff;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.35);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 10px 32px rgba(14,165,233,0.45); }
.btn-outline-white {
  background: transparent;
  border-color: rgba(255,255,255,0.7);
  color: #fff;
}
.btn-outline-white:hover { background: #fff; color: var(--primary); border-color: #fff; transform: translateY(-3px); }
.btn-outline {
  background: transparent;
  border-color: var(--primary);
  color: var(--primary);
}
.btn-outline:hover { background: var(--primary); color: #fff; transform: translateY(-3px); }
.btn-sm {
  padding: 9px 20px;
  font-size: 0.82rem;
}

.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.25);
  color: #fff;
  width: 50px; height: 50px;
  border-radius: 50%;
  font-size: 1.3rem;
  cursor: pointer;
  z-index: 10;
  transition: background var(--transition), transform var(--transition);
  display: flex; align-items: center; justify-content: center;
}
.slider-arrow:hover { background: rgba(255,255,255,0.30); transform: translateY(-50%) scale(1.1); }
.slider-arrow.prev { left: 24px; }
.slider-arrow.next { right: 24px; }

.slider-controls {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 10;
}
.s-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.40);
  border: none;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition), width var(--transition);
}
.s-dot.active {
  background: #fff;
  width: 28px;
  border-radius: 99px;
}

/* ============================
   BANNER GRID
   ============================ */
.banner-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  padding: 32px 0;
}
.banner-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  height: 220px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.10);
}
.banner-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.banner-card:hover img { transform: scale(1.07); }
.banner-body {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 20px 22px;
  background: linear-gradient(to top, rgba(15,23,42,0.90) 0%, transparent 100%);
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
.banner-body h3 {
  color: #fff;
  font-size: 1.05rem;
  font-weight: 800;
}
.banner-body a {
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(8px);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.3);
  padding: 6px 16px;
  border-radius: 99px;
  font-size: 0.75rem;
  font-weight: 700;
  transition: background var(--transition);
  white-space: nowrap;
}
.banner-body a:hover { background: var(--primary); border-color: var(--primary); }

/* ============================
   SECTION TITLES
   ============================ */
.section { padding: 72px 0; }
.section-alt { background: var(--bg); }
.section-title {
  text-align: center;
  margin-bottom: 48px;
}
.section-title .label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 10px;
  background: var(--primary-light);
  padding: 5px 14px;
  border-radius: 99px;
}
.section-title h2 {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  color: var(--text);
  margin-bottom: 12px;
  line-height: 1.2;
}
.section-title p {
  color: var(--text-muted);
  font-size: 0.97rem;
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ============================
   CATEGORY GRID
   ============================ */
.category-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}
.cat-card {
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 25px;
  text-align: center;
  cursor: pointer;
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
  text-decoration: none;
  color: var(--text);
  display: block;
}
.cat-card:hover {
  border-color: var(--primary);
  transform: translateY(-6px);
  box-shadow: var(--card-shadow-hover);
}
.cat-card img {
  width: 100px;
  height: 100px;
  object-fit: cover;
  border-radius: 50%;
  margin: 0 auto 12px;
  transition: transform var(--transition);
}
.cat-card:hover img { transform: scale(1.1); }
.cat-card span {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text-muted);
  display: block;
  line-height: 1.3;
}

/* ============================
   VIDEO GRID
   ============================ */
.video-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.video-card {
  border-radius: var(--radius);
  overflow: hidden;
  background: #fff;
  box-shadow: var(--card-shadow);
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition);
}
.video-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--card-shadow-hover);
}
.video-thumb {
  position: relative;
  height: 180px;
  overflow: hidden;
}
.video-thumb img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.video-card:hover .video-thumb img { transform: scale(1.06); }
.play-btn {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 54px; height: 54px;
 
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(0,0,0,0.20);
  transition: transform var(--transition), background var(--transition);
}
.play-btn img {
  width: 40px; height: 35px;
  margin-left: 3px;
}
.video-card:hover .play-btn { transform: translate(-50%, -50%) scale(1.1); }

.video-info {
  padding: 14px 16px;
}
.video-info h4 {
  font-size: 0.88rem;
  font-weight: 700;
  margin-bottom: 5px;
  color: var(--text);
  display: -webkit-box;

  -webkit-box-orient: vertical;
  overflow: hidden;
}
.video-info span {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 600;
}

/* ============================
   PRODUCTS
   ============================ */
.filter-bar {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}
.filter-btn {

  border: 2px solid transparent;
  border-radius: 50px;
  padding: 9px 22px;
  font-size: 0.85rem;
  font-weight: 700;
  font-family: var(--font);
  cursor: pointer;

  transition: all var(--transition);
}
.filter-btn:hover, .filter-btn.active {
  background: linear-gradient(135deg, #d3cdcd, #ffffff);
  color: #000000;
  border-color: transparent;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgb(255, 254, 254);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.product-card {
  background: #fff;
  border: 2px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
}
.product-card:hover {
  border-color: var(--primary);
  transform: translateY(-6px);
  box-shadow: var(--card-shadow-hover);
}
.product-img {
  position: relative;
  height: 220px;
  overflow: hidden;
  background: var(--bg);
}
.product-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.product-card:hover .product-img img { transform: scale(1.06); }
.product-badge {
  position: absolute;
  top: 12px; left: 12px;
  background: linear-gradient(135deg, #000000, #000000);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 800;
  padding: 4px 12px;
  border-radius: 99px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.product-badge.new { background: linear-gradient(135deg, #000000, #000000); }
.product-badge.hot { background: linear-gradient(135deg, #000000, #000000); }
.product-overlay {
  position: absolute;
  top: 12px; right: 12px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  opacity: 0;
  transform: translateX(10px);
  transition: opacity var(--transition), transform var(--transition);
}
.product-card:hover .product-overlay { opacity: 1; transform: translateX(0); }
.overlay-btn {
  width: 36px; height: 36px;
  background: #fff;
  border: none;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0,0,0,0.12);
  font-size: 0.9rem;
  transition: background var(--transition), transform var(--transition);
}
.overlay-btn:hover { background: var(--black); transform: scale(1.12); }
.product-info { padding: 16px 18px; }
.product-cats {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--black);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 7px;
}
.product-info h4 {
  font-size: 0.9rem;
  font-weight: 800;
  margin-bottom: 8px;
  color: var(--black);
  line-height: 1.35;
}
.product-info h4 a { color: black; }
.product-info h4 a:hover { color: var(--black); }
.star-row {
  color: #f59e0b;
  font-size: 0.82rem;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.star-row span { color: var(--text-muted); font-size: 0.78rem; }
.price-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}
.price {
  font-size: 1.12rem;
  font-weight: 800;
  color: var(--black);
}
.old-price {
  font-size: 0.85rem;
  color: var(--text-light);
  text-decoration: line-through;
}
.add-cart-btn {
  width: 100%;
  background: linear-gradient(135deg, #000000, #020007);
  color: #fff;
  border: none;
  padding: 11px 0;
  border-radius: 10px;
  font-size: 0.85rem;
  font-weight: 800;
  font-family: var(--font);
  cursor: pointer;
  transition: opacity var(--black), transform var(--);
  letter-spacing: 0.02em;
}
.add-cart-btn:hover { opacity: 0.88; transform: translateY(-1px); }

/* ============================
   STATS STRIP
   ============================ */
.stats-strip {
  background: linear-gradient(135deg, #000000 0%, #012d3a 100%);
  padding: 56px 0;
}
.stats-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.stat-item { text-align: center; }
.stat-icon {
  margin: 0 auto 12px;
  width: 56px; height: 56px;
  background: rgba(255,255,255,0.15);
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
}
.stat-icon img {
  width: 28px; height: 28px;
  filter: brightness(0) invert(1);
}
.stat-num {
  font-family: var(--font-display);
  font-size: 2.6rem;
  font-weight: 800;
  color: #fff;
  display: block;
  line-height: 1;
  margin-bottom: 6px;
}
.stat-label { color: rgba(255,255,255,0.80); font-size: 0.88rem; font-weight: 600; }

/* ============================
   WHY CHOOSE US
   ============================ */
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.why-card {
  background: #fff;
  border: 2px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
}
.why-card:hover {
  border-color: var(--primary);
  transform: translateY(-6px);
  box-shadow: var(--card-shadow-hover);
}
.why-img {
  width: 110px; height: 110px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 18px;
  transition: transform var(--transition);
}
.why-card:hover .why-img { transform: scale(1.1) rotate(-5deg); }
.why-card h4 {
  font-size: 1.02rem;
  font-weight: 800;
  margin-bottom: 10px;
  color: var(--text);
}
.why-card p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ============================
   TESTIMONIALS
   ============================ */
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testi-card {
  background: #fff;
  border: 2px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
}
.testi-card:hover {
  border-color: var(--primary);
  transform: translateY(-6px);
  box-shadow: var(--card-shadow-hover);
}
.testi-stars { color: #f59e0b; font-size: 1.1rem; margin-bottom: 14px; }
.testi-card p {
  font-size: 0.91rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 20px;
  font-style: italic;
}
.testi-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testi-author img {
  width: 48px; height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--primary-light);
}
.testi-author strong {
  font-size: 0.9rem;
  font-weight: 800;
  display: block;
  color: var(--text);
}
.testi-author span {
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* ============================
   ABOUT SECTION
   ============================ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.about-img-wrap {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(14,165,233,0.15);
}
.about-img-wrap img {
  width: 100%; 
  display: block;
  transition: transform 0.6s ease;
}
.about-img-wrap:hover img { transform: scale(1.03); }
.about-badge-float {
  position: absolute;
  bottom: 24px; left: 24px;
  background: linear-gradient(135deg, #0ea5e9, #8b5cf6);
  color: #fff;
  padding: 18px 24px;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 8px 32px rgba(14,165,233,0.35);
}
.about-badge-float .num {
  font-size: 2.4rem;
  font-weight: 900;
  font-family: var(--font-display);
  display: block;
  line-height: 1;
}
.about-badge-float .lbl {
  font-size: 0.75rem;
  opacity: 0.9;
  font-weight: 600;
}
.about-content .label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary);
  background: var(--primary-light);
  padding: 5px 14px;
  border-radius: 99px;
  margin-bottom: 14px;
}
.about-content h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  line-height: 1.2;
  margin-bottom: 16px;
  color: var(--text);
}
.about-content p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 14px;
}
.about-feats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 20px 0 28px;
}
.about-feat {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text);
}
.about-feat img {
  width: 20px; height: 20px;
  flex-shrink: 0;
}

/* ============================
   CONTACT SECTION
   ============================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 40px;
  align-items: start;
}
.contact-info { display: flex; flex-direction: column; gap: 16px; }
.info-card {
  background: #fff;
  border: 2px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
}
.info-card:hover {
  border-color: var(--primary);
  transform: translateX(4px);
  box-shadow: var(--card-shadow);
}
.info-card img {
  width: 48px; height: 48px;
  border-radius: 12px;
  object-fit: cover;
  flex-shrink: 0;
}
.info-card strong {
  font-size: 0.85rem;
  font-weight: 800;
  display: block;
  margin-bottom: 3px;
}
.info-card p {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.5;
}
.contact-form {
  background: #fff;
  border: 2px solid var(--border);
  border-radius: var(--radius);
  padding: 40px;
}
.contact-form h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  margin-bottom: 24px;
  color: var(--text);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  padding: 13px 18px;
  border: 2px solid var(--border);
  border-radius: 10px;
  font-size: 0.9rem;
  font-family: var(--font);
  color: var(--text);
  background: var(--bg);
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
  margin-bottom: 14px;
}
.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(14,165,233,0.10);
  background: #fff;
}
.contact-form textarea { resize: vertical; min-height: 120px; margin-bottom: 0; }

/* ============================
   BLOG CARDS
   ============================ */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.blog-card {
  background: #fff;
  border: 2px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
}
.blog-card:hover {
  border-color: var(--primary);
  transform: translateY(-6px);
  box-shadow: var(--card-shadow-hover);
}
.blog-img {
  height: 200px;
  overflow: hidden;
}
.blog-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.blog-card:hover .blog-img img { transform: scale(1.06); }
.blog-body { padding: 20px; }
.blog-cat {
  font-size: 0.72rem;
  font-weight: 800;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 8px;
}
.blog-body h4 {
  font-size: 0.97rem;
  font-weight: 800;
  margin-bottom: 10px;
  line-height: 1.4;
  color: var(--text);
}
.blog-body h4 a:hover { color: var(--primary); }
.blog-body p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 16px;
  display: -webkit-box;

  -webkit-box-orient: vertical;
  overflow: hidden;
}
.blog-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.78rem;
  color: var(--text-muted);
  font-weight: 600;
}
.blog-meta img { width: 26px; height: 26px; border-radius: 50%; object-fit: cover; }

/* ============================
   PAGE HERO
   ============================ */
.page-hero {
  background: linear-gradient(135deg, #000000 0%, #000000 100%);
  padding: 64px 0;
  text-align: center;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  width: 400px; height: 400px;
  background: rgba(255,255,255,0.05);
  border-radius: 50%;
  top: -100px; right: -100px;
}
.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  margin-bottom: 12px;
  position: relative;
}
.page-hero p {
  font-size: 1rem;
  opacity: 0.85;
  max-width: 540px;
  margin: 0 auto 18px;
  position: relative;
}
.breadcrumb {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  opacity: 0.80;
  position: relative;
}
.breadcrumb a { color: #fff; }
.breadcrumb span { opacity: 0.6; }

/* ============================
   FOOTER
   ============================ */
.footer {
  background: #0f172a;
  padding: 68px 1px 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.3fr;
  gap: 48px;
  padding-bottom: 70px;
}

.footer-logo {
  height: 54px; width: 54px;
  object-fit: contain;
  border-radius: 12px;
  background: #1e293b;
  padding: 4px;
  margin-bottom: 16px;
}
.footer-brand h3 {
  font-size: 1.3rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 12px;
  background: linear-gradient(135deg, #38bdf8, #a78bfa);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.footer-brand p { color: rgba(255,255,255,0.50); font-size: 0.87rem; line-height: 1.75; margin-bottom: 22px; }
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 38px; height: 38px;
  border-radius: 10px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.10);
  color: rgba(255,255,255,0.60);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.82rem;
  font-weight: 800;
  transition: background var(--transition), color var(--transition), transform var(--transition);
}
.footer-social a:hover { background: var(--primary); color: #fff; transform: translateY(-3px); }
.footer-col h5 { color: #fff; font-size: 0.95rem; font-weight: 800; margin-bottom: 20px; }
.footer-col a {
  display: block;
  color: rgba(255,255,255,0.50);
  font-size: 0.87rem;
  margin-bottom: 12px;
  transition: color var(--transition), padding-left var(--transition);
  font-weight: 600;
}
.footer-col a:hover { color: var(--primary); padding-left: 6px; }
.footer-contact-list { list-style: none; }
.footer-contact-list li {
  display: flex;
  gap: 10px;
  color: rgba(255,255,255,0.50);
  font-size: 0.85rem;
  margin-bottom: 14px;
  line-height: 1.5;
}
.footer-contact-list li img {
  width: 16px; height: 16px;
  flex-shrink: 0;
  margin-top: 2px;
  filter: brightness(0) saturate(0) invert(0.7);
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  color: rgba(255,255,255,0.35);
  font-size: 0.82rem;
}

/* ============================
   UTILITIES & ANIMATIONS
   ============================ */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

.toast {
  position: fixed;
  bottom: 32px; right: 32px;
  background: linear-gradient(135deg, #22c55e, #16a34a);
  color: #fff;
  padding: 14px 24px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.9rem;
  box-shadow: 0 8px 28px rgba(34,197,94,0.35);
  z-index: 9999;
  transform: translateY(80px);
  opacity: 0;
  transition: transform 0.4s ease, opacity 0.4s ease;
  pointer-events: none;
}
.toast.show { transform: translateY(0); opacity: 1; }

.back-top {
  position: fixed;
  bottom: 20px; right: 32px;
  width: 46px; height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, #000000, #000000);
  color: #fff;
  border: none;
  font-size: 1.3rem;
  cursor: pointer;
  box-shadow: 0 6px 20px rgba(211, 212, 212, 0.911);
  z-index: 9999;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity var(--transition), transform var(--transition);
  display: flex; align-items: center; justify-content: center;
}
.back-top.show { opacity: 1; transform: translateY(0); }
.back-top:hover { transform: translateY(-3px) !important; }

.view-all-wrap { text-align: center; margin-top: 40px; }

/* ============================
   SHOP PAGE
   ============================ */
.shop-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 32px;
  padding: 48px 0;
}
.shop-sidebar {
  background: #fff;
  border: 2px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  height: fit-content;
  position: sticky;
  top: 100px;
}
.sidebar-section { margin-bottom: 28px; }
.sidebar-section h5 {
  font-size: 0.9rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--border);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.sidebar-cat-list a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 9px 12px;
  border-radius: 8px;
  font-size: 0.87rem;
  font-weight: 600;
  color: var(--text-muted);
  transition: background var(--transition), color var(--transition);
  margin-bottom: 2px;
}
.sidebar-cat-list a:hover, .sidebar-cat-list a.active {
  background: var(--primary-light);
  color: var(--primary);
}
.sidebar-cat-list a span {
  background: var(--bg2);
  border-radius: 99px;
  padding: 2px 8px;
  font-size: 0.72rem;
  font-weight: 700;
}
.price-range { margin-top: 12px; }
.price-range input[type=range] {
  width: 100%;
  accent-color: var(--primary);
  margin-bottom: 8px;
}
.price-range-labels {
  display: flex;
  justify-content: space-between;
  font-size: 0.82rem;
  color: var(--text-muted);
  font-weight: 700;
}
.shop-products-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
  flex-wrap: wrap;
  gap: 12px;
}
.sort-select {
  padding: 9px 16px;
  border: 2px solid var(--border);
  border-radius: 10px;
  font-size: 0.87rem;
  font-family: var(--font);
  font-weight: 600;
  color: var(--text);
  background: #fff;
  outline: none;
  cursor: pointer;
  transition: border-color var(--transition);
}
.sort-select:focus { border-color: var(--primary); }

/* ============================
   ABOUT PAGE
   ============================ */
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.team-card {
  background: #fff;
  border: 2px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  text-align: center;
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
}
.team-card:hover {
  border-color: var(--primary);
  transform: translateY(-6px);
  box-shadow: var(--card-shadow-hover);
}
.team-img { height: 220px; overflow: hidden; }
.team-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.team-card:hover .team-img img { transform: scale(1.06); }
.team-info { padding: 18px 16px; }
.team-info h4 { font-size: 0.95rem; font-weight: 800; margin-bottom: 4px; }
.team-info span { font-size: 0.8rem; color: var(--primary); font-weight: 700; }

/* ============================
   RESPONSIVE
   ============================ */
@media (max-width: 1200px) {
  .category-grid { grid-template-columns: repeat(4, 1fr); }
  .video-grid { grid-template-columns: repeat(3, 1fr); }
  .product-grid { grid-template-columns: repeat(3, 1fr); }
  .stats-inner { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
}
@media (max-width: 1024px) {
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .banner-grid { grid-template-columns: repeat(2, 1fr); }
  .banner-grid .banner-card:last-child { grid-column: span 2; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .testi-grid { grid-template-columns: repeat(2, 1fr); }
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .shop-layout { grid-template-columns: 1fr; }
  .shop-sidebar { position: static; }
  .contact-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .topbar-right { display: none; }
  .header-search { display: none; }
  .hamburger-btn { display: flex; }
  .navbar { display: none; }
  .category-grid { grid-template-columns: repeat(3, 1fr); }
  .video-grid { grid-template-columns: repeat(2, 1fr); }
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: 1fr; }
  .testi-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-slider-wrap { height: 70vh; max-height: 500px; }
  .slide-text h1 { font-size: 1.6rem; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .form-row { grid-template-columns: 1fr; }
  .stats-inner { grid-template-columns: repeat(2, 1fr); }
  .banner-grid { grid-template-columns: 1fr; }
  .banner-grid .banner-card:last-child { grid-column: span 1; }
}
@media (max-width: 480px) {
  .category-grid { grid-template-columns: repeat(2, 1fr); }
  .video-grid { grid-template-columns: 1fr; }
  .product-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .stats-inner { grid-template-columns: 1fr; }
  .about-feats { grid-template-columns: 1fr; }
}

/* ============================
   ENHANCED ADDITIONS
   ============================ */

/* Contact Page - new layout styles */
.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 0;
}
.contact-info-card {
  background: #fff;
  border: 2px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 24px;
  text-align: center;
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
}
.contact-info-card:hover {
  border-color: var(--primary);
  transform: translateY(-6px);
  box-shadow: var(--card-shadow-hover);
}
.contact-info-icon {
  width: 72px; height: 72px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 18px;
  border: 3px solid var(--primary-light);
}
.contact-info-icon img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.contact-info-card h4 {
  font-size: 1rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 10px;
}
.contact-info-card p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.75;
}

/* Contact Form Wrap */

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.contact-form-wrap .contact-form {
  border: none;
  padding: 0;
  background: transparent;
}
.map-container {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(14,165,233,0.12);
}
.contact-store-hours {
  margin-top: 24px;
  background: #fff;
  border: 2px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
}
.contact-store-hours h4 {
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 16px;
}
.contact-store-hours ul { list-style: none; }
.contact-store-hours li {
  display: flex;
  justify-content: space-between;
  padding: 9px 0;
  font-size: 0.87rem;
  color: var(--text-muted);
  border-bottom: 1px solid var(--border);
}
.contact-store-hours li:last-child { border-bottom: none; }
.contact-store-hours li span { font-weight: 600; }
.contact-store-hours li strong { color: var(--primary); }

/* FAQ Grid */
.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.faq-item {
  background: #fff;
  border: 2px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
}
.faq-item:hover {
  border-color: var(--primary);
  transform: translateY(-4px);
  box-shadow: var(--card-shadow-hover);
}
.faq-item h4 {
  font-size: 0.97rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 10px;
}
.faq-item p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.75;
}

/* Form group labels */
.form-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 6px;
}
.form-group {
  margin-bottom: 14px;
}

/* Gradient mesh background effect on sections */
.section-alt {
  background: linear-gradient(135deg, #f8fafc 0%, #f0f9ff 50%, #faf5ff 100%);
}

/* Smooth page transitions */
body {
  animation: pageIn 0.4s ease both;
}
@keyframes pageIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Enhanced product card overlay buttons with images */
.overlay-btn img {
  width: 16px; height: 16px;
  object-fit: contain;
}
.overlay-btn:hover img { filter: brightness(0) invert(1); }

/* Floating gradient orbs on page hero */
.page-hero::after {
  content: '';
  position: absolute;
  width: 300px; height: 300px;
  background: rgba(255,255,255,0.04);
  border-radius: 50%;
  bottom: -80px; left: -60px;
}

/* Newsletter strip */
.newsletter-strip {
  background: linear-gradient(135deg, #0f172a 0%, #1e1b4b 100%);
  padding: 56px 0;
}
.newsletter-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.newsletter-text h3 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: #fff;
  margin-bottom: 6px;
}
.newsletter-text p {
  color: rgba(255,255,255,0.60);
  font-size: 0.9rem;
}
.newsletter-form {
  display: flex;
  gap: 0;
  border-radius: 50px;
  overflow: hidden;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  min-width: 360px;
}
.newsletter-form input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  padding: 14px 22px;
  font-size: 0.9rem;
  color: #fff;
  font-family: var(--font);
}
.newsletter-form input::placeholder { color: rgba(255,255,255,0.45); }
.newsletter-form button {
  background: linear-gradient(135deg, #0ea5e9, #8b5cf6);
  color: #fff;
  border: none;
  padding: 14px 28px;
  font-weight: 800;
  font-size: 0.87rem;
  font-family: var(--font);
  cursor: pointer;
  white-space: nowrap;
  transition: opacity var(--transition);
}
.newsletter-form button:hover { opacity: 0.88; }

/* Responsive additions */
@media (max-width: 1024px) {
  .contact-info-grid { grid-template-columns: 1fr; }
  .faq-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .contact-info-grid { grid-template-columns: 1fr; }
  .newsletter-inner { flex-direction: column; text-align: center; }
  .newsletter-form { min-width: unset; width: 100%; }
}

/* ========================================
   LANGUAGE TOGGLE  (ENG / FR)
   ======================================== */
.lang-toggle {
  display: inline-flex;
  align-items: center;
  margin-left: 18px;
  border: 2px solid rgba(255,255,255,0.55);
  border-radius: 20px;
  overflow: hidden;
  background: rgba(255,255,255,0.08);
  vertical-align: middle;
}

.lang-btn {
  background: transparent;
  border: none;
  color: rgba(255,255,255,0.75);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.5px;
  padding: 4px 11px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  line-height: 1;
}

.lang-btn:hover {
  background: rgba(255,255,255,0.18);
  color: #fff;
}

.lang-btn.active {
  background: #fff;
  color: var(--primary, #1a73e8);
}

/* Divider between ENG and FR */
.lang-btn:first-child {
  border-right: 1px solid rgba(255,255,255,0.35);
}

/* Mobile menu variant – darker background */
.mobile-menu-inner .lang-toggle {
  border-color: rgba(0,0,0,0.2);
  background: rgba(0,0,0,0.05);
}
.mobile-menu-inner .lang-btn {
  color: #555;
}
.mobile-menu-inner .lang-btn.active {
  background: var(--primary, #1a73e8);
  color: #fff;
}

/* ========================================
   LANGUAGE TOGGLE  (ENG / FR)
   ======================================== */
.lang-toggle {
  display: inline-flex !important;
  align-items: center;
  margin-left: 12px;
  border: 2px solid rgba(0,0,0,0.25);
  border-radius: 20px;
  overflow: hidden;
  background: rgba(0,0,0,0.06);
  vertical-align: middle;
  flex-shrink: 0;
}

.lang-btn {
  background: transparent;
  border: none;
  color: #333;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.5px;
  padding: 5px 12px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  line-height: 1;
  font-family: inherit;
}

.lang-btn:hover {
  background: rgba(0,0,0,0.1);
  color: #000;
}

.lang-btn.active {
  background: #222;
  color: #fff;
}

/* Divider between ENG and FR */
.lang-btn:first-child {
  border-right: 1px solid rgba(0,0,0,0.2);
}

/* Mobile menu variant */
.mobile-menu-inner .lang-toggle {
  border-color: rgba(0,0,0,0.2);
  background: rgba(0,0,0,0.05);
  margin-left: 0;
}
.mobile-menu-inner .lang-btn {
  color: #555;
}
.mobile-menu-inner .lang-btn.active {
  background: #222;
  color: #fff;
}
