/* ===================================================================
   GANZE HOME — Premium One Page Website
   Design System + Full Styles
   =================================================================== */

/* ── CSS RESET ─────────────────────────────────────────────────────── */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--color-primary);
  background-color: var(--color-white);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s ease;
}

ul, ol {
  list-style: none;
}

button {
  border: none;
  background: none;
  cursor: pointer;
  font-family: inherit;
}

/* ── DESIGN TOKENS ─────────────────────────────────────────────────── */
:root {
  /* Colors */
  --color-primary: #1E2531;
  --color-primary-rgb: 30, 37, 49;
  --color-accent: #A78567;
  --color-accent-hover: #8C6E52;
  --color-white: #FFFFFF;
  --color-light: #F8F7F5;
  --color-gray: #EDEDED;
  --color-text: #4A4A4A;
  --color-text-light: #8A8A8A;
  --color-divider: rgba(167, 133, 103, 0.25);

  /* Fonts */
  --font-heading: 'Playfair Display', serif;
  --font-body: 'Inter', sans-serif;

  /* Spacing */
  --section-padding: clamp(80px, 10vw, 140px);
  --container-max: 1400px;
  --container-padding: clamp(20px, 4vw, 60px);

  /* Transitions */
  --transition-fast: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-medium: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.8s cubic-bezier(0.4, 0, 0.2, 1);

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.12);
  --shadow-xl: 0 16px 60px rgba(0, 0, 0, 0.16);

  /* Border radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --radius-xl: 24px;
}

/* ── UTILITY CLASSES ───────────────────────────────────────────────── */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

.section-label {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 16px;
  display: block;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 500;
  line-height: 1.2;
  color: var(--color-primary);
  margin-bottom: 24px;
}

.section-divider {
  width: 60px;
  height: 2px;
  background: var(--color-accent);
  margin-bottom: 32px;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ── HEADER ────────────────────────────────────────────────────────── */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 20px 0;
  transition: background var(--transition-medium),
              padding var(--transition-medium),
              box-shadow var(--transition-medium);
}

.header.scrolled {
  padding: 12px 0;
  background: rgba(var(--color-primary-rgb), 0.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 1px 30px rgba(0, 0, 0, 0.15);
}

.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header__logo img {
  height: 80px;
  width: auto;
  transition: height var(--transition-medium);
}

.header.scrolled .header__logo img {
  height: 64px;
}

.header__nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.header__nav a {
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 400;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--color-white);
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  transition: color var(--transition-fast),
              background var(--transition-fast);
  position: relative;
}

.header__nav a::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 14px;
  right: 14px;
  height: 1px;
  background: var(--color-accent);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform var(--transition-fast);
}

.header__nav a:hover::after,
.header__nav a.active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header__nav a:hover,
.header__nav a.active {
  color: var(--color-accent);
}

/* Language Switcher */
.lang-switch {
  display: flex;
  align-items: center;
  margin-left: 20px;
  gap: 4px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-sm);
  padding: 4px;
}

.lang-switch button {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  padding: 4px 10px;
  border-radius: 2px;
  transition: all var(--transition-fast);
}

.lang-switch button.active {
  background: var(--color-accent);
  color: var(--color-white);
}

.lang-switch button:hover:not(.active) {
  color: var(--color-white);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 30px;
  height: 30px;
  gap: 6px;
  cursor: pointer;
  z-index: 1001;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--color-white);
  border-radius: 2px;
  transition: all var(--transition-fast);
  transform-origin: center;
}

.hamburger.open span:nth-child(1) {
  transform: translateY(7.5px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
}

.hamburger.open span:nth-child(3) {
  transform: translateY(-7.5px) rotate(-45deg);
}

/* ── HERO ──────────────────────────────────────────────────────────── */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(var(--color-primary-rgb), 0.3) 0%,
    rgba(var(--color-primary-rgb), 0.55) 100%
  );
  z-index: 2;
}

.hero__content {
  position: relative;
  z-index: 3;
  text-align: center;
  max-width: 800px;
  padding: 0 var(--container-padding);
}

.hero__logo {
  width: 200px;
  margin: 0 auto 40px;
  opacity: 0;
}

.hero__title {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 500;
  color: var(--color-white);
  line-height: 1.15;
  margin-bottom: 20px;
  opacity: 0;
}

.hero__subtitle {
  font-family: var(--font-body);
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  font-weight: 300;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
  max-width: 600px;
  margin: 0 auto 40px;
  opacity: 0;
}

.hero__actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 16px 36px;
  border-radius: var(--radius-sm);
  transition: all var(--transition-fast);
  cursor: pointer;
}

.btn--primary {
  background: var(--color-accent);
  color: var(--color-white);
  border: 1px solid var(--color-accent);
}

.btn--primary:hover {
  background: var(--color-accent-hover);
  border-color: var(--color-accent-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn--outline {
  background: transparent;
  color: var(--color-white);
  border: 1px solid rgba(255, 255, 255, 0.4);
}

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

.btn--dark {
  background: var(--color-primary);
  color: var(--color-white);
  border: 1px solid var(--color-primary);
}

.btn--dark:hover {
  background: #2a3344;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* ── ABOUT (HAKKIMIZDA) ───────────────────────────────────────────── */
.about {
  padding: var(--section-padding) 0;
  background: var(--color-white);
}

.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}

.about__image-wrap {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
}

.about__image-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid var(--color-divider);
  border-radius: var(--radius-md);
  pointer-events: none;
}

.about__image-wrap img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: var(--radius-md);
  transition: transform var(--transition-slow);
}

.about__image-wrap:hover img {
  transform: scale(1.03);
}

.about__content {
  padding: 20px 0;
}

.about__text {
  font-size: 1rem;
  color: var(--color-text);
  line-height: 1.85;
  margin-bottom: 20px;
}

.about__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
  padding-top: 40px;
  border-top: 1px solid var(--color-gray);
}

.about__stat-number {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 3vw, 2.8rem);
  font-weight: 600;
  color: var(--color-accent);
  line-height: 1;
  margin-bottom: 8px;
}

.about__stat-label {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--color-text-light);
}

/* ── COLLECTION (KOLEKSIYON) ───────────────────────────────────────── */
.collection {
  padding: var(--section-padding) 0;
  background: var(--color-light);
}

.collection__header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px;
}

.collection__header .section-title {
  margin-bottom: 16px;
}

.collection__header p {
  font-size: 1rem;
  color: var(--color-text);
  line-height: 1.7;
}

/* Product Item */
.product {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(30px, 5vw, 70px);
  align-items: center;
  padding: 60px 0;
  border-bottom: 1px solid var(--color-divider);
}

.product:last-child {
  border-bottom: none;
}

.product:nth-child(even) {
  direction: rtl;
}

.product:nth-child(even) > * {
  direction: ltr;
}

/* Product Gallery */
.product__gallery {
  position: relative;
  min-width: 0; /* Prevents grid blowout from large content */
}

.product__main-image {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: var(--radius-md);
  cursor: pointer;
}

.product__main-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow),
              opacity var(--transition-medium);
}

.product__main-image:hover img {
  transform: scale(1.02);
}

.product__main-image .lightbox-icon {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 40px;
  height: 40px;
  background: rgba(var(--color-primary-rgb), 0.6);
  backdrop-filter: blur(8px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: scale(0.8);
  transition: all var(--transition-fast);
}

.product__main-image .lightbox-icon svg {
  width: 16px;
  height: 16px;
  fill: var(--color-white);
}

.product__main-image:hover .lightbox-icon {
  opacity: 1;
  transform: scale(1);
}

.product__thumbnails {
  display: flex;
  gap: 10px;
  margin-top: 12px;
  overflow-x: auto;
  padding-bottom: 8px;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
}

/* Custom scrollbar for thumbnails */
.product__thumbnails::-webkit-scrollbar {
  height: 4px;
}
.product__thumbnails::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 4px;
}
.product__thumbnails::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.2);
  border-radius: 4px;
}
.product__thumbnails::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 255, 255, 0.4);
}

.product__thumb {
  flex: 0 0 calc((100% - 50px) / 6);
  aspect-ratio: 4 / 3;
  height: auto;
  overflow: hidden;
  border-radius: var(--radius-sm);
  cursor: pointer;
  opacity: 0.5;
  border: 2px solid transparent;
  transition: all var(--transition-fast);
}

.product__thumb.active,
.product__thumb:hover {
  opacity: 1;
  border-color: var(--color-accent);
}

.product__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Product Info */
.product__info {
  padding: 20px 0;
}

.product__collection-label {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 12px;
  display: block;
}

.product__name {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 500;
  color: var(--color-primary);
  margin-bottom: 20px;
  line-height: 1.2;
}

.product__description {
  font-size: 0.95rem;
  color: var(--color-text);
  line-height: 1.8;
  margin-bottom: 28px;
}

.product__features {
  margin-bottom: 32px;
}

.product__feature {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--color-gray);
  font-size: 0.88rem;
  color: var(--color-text);
}

.product__feature:last-child {
  border-bottom: none;
}

.product__feature-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: var(--color-accent);
}

.product__cta {
  margin-top: 8px;
}

/* ── INSTAGRAM ─────────────────────────────────────────────────────── */
.instagram {
  padding: var(--section-padding) 0;
  background: var(--color-white);
}

.instagram__header {
  text-align: center;
  margin-bottom: 50px;
}

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

.instagram__item {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: var(--radius-md);
  cursor: pointer;
}

.instagram__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.instagram__item:hover img {
  transform: scale(1.08);
}

.instagram__item-overlay {
  position: absolute;
  inset: 0;
  background: rgba(var(--color-primary-rgb), 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition-fast);
}

.instagram__item:hover .instagram__item-overlay {
  opacity: 1;
}

.instagram__item-overlay svg {
  width: 32px;
  height: 32px;
  fill: var(--color-white);
}

.instagram__handle {
  text-align: center;
  margin-top: 32px;
}

.instagram__handle a {
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 1px;
  color: var(--color-accent);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: color var(--transition-fast);
}

.instagram__handle a:hover {
  color: var(--color-accent-hover);
}

/* ── CONTACT (İLETİŞİM) ───────────────────────────────────────────── */
.contact {
  padding: var(--section-padding) 0;
  background: var(--color-light);
}

.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
}

.contact__info {
  padding: 20px 0;
}

.contact__item {
  display: flex;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid var(--color-divider);
}

.contact__item:last-child {
  border-bottom: none;
}

.contact__item-icon {
  width: 48px;
  height: 48px;
  background: rgba(167, 133, 103, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact__item-icon svg {
  width: 20px;
  height: 20px;
  color: var(--color-accent);
}

.contact__item-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--color-text-light);
  margin-bottom: 4px;
}

.contact__item-value {
  font-size: 0.95rem;
  color: var(--color-primary);
  line-height: 1.6;
}

.contact__item-value a {
  color: var(--color-primary);
  transition: color var(--transition-fast);
}

.contact__item-value a:hover {
  color: var(--color-accent);
}

.contact__map-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4 / 3;
}

.contact__map-wrap iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* ── FOOTER ────────────────────────────────────────────────────────── */
.footer {
  background: var(--color-primary);
  color: var(--color-white);
  padding: 60px 0 30px;
}

.footer__top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer__brand img {
  height: 90px;
  margin-bottom: 20px;
}

.footer__brand p {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.7;
  max-width: 300px;
}

.footer__title {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 20px;
}

.footer__links a {
  display: block;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.6);
  padding: 6px 0;
  transition: color var(--transition-fast);
}

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

.footer__contact-item {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.6);
  padding: 6px 0;
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer__contact-item svg {
  width: 14px;
  height: 14px;
  color: var(--color-accent);
  flex-shrink: 0;
}

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 30px;
}

.footer__copyright {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.4);
}

.footer__signature {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.4);
  text-decoration: none;
  transition: opacity var(--transition-fast), transform var(--transition-fast);
}

.footer__signature:hover {
  opacity: 1;
  transform: scale(1.05);
}

.footer__signature img {
  height: 16px;
  width: auto;
  filter: brightness(0) invert(1);
}

.footer__social {
  display: flex;
  gap: 12px;
}

.footer__social a {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
}

.footer__social a:hover {
  background: var(--color-accent);
  border-color: var(--color-accent);
}

.footer__social a svg {
  width: 16px;
  height: 16px;
  fill: var(--color-white);
}

/* ── WHATSAPP FLOATING BUTTON ──────────────────────────────────────── */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 999;
  width: 56px;
  height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: all var(--transition-fast);
  animation: whatsappPulse 2s ease-in-out infinite;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 30px rgba(37, 211, 102, 0.5);
}

.whatsapp-float svg {
  width: 28px;
  height: 28px;
  fill: #FFFFFF;
}

@keyframes whatsappPulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4); }
  50% { box-shadow: 0 4px 30px rgba(37, 211, 102, 0.6); }
}

/* ── SCROLL PROGRESS ───────────────────────────────────────────────── */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background: linear-gradient(90deg, var(--color-accent), #C9A47E);
  z-index: 1001;
  transition: none;
}

/* ── ANIMATIONS INITIAL STATES ─────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(40px);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-60px);
}

.reveal-right {
  opacity: 0;
  transform: translateX(60px);
}

/* ── RESPONSIVE ────────────────────────────────────────────────────── */

/* Tablet */
@media (max-width: 1024px) {
  .header__nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 320px;
    height: 100vh;
    background: rgba(var(--color-primary-rgb), 0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: center;
    gap: 8px;
    padding: 40px;
    transition: right var(--transition-medium);
  }

  .header__nav.open {
    right: 0;
  }

  .header__nav a {
    font-size: 1rem;
    padding: 14px 20px;
    width: 100%;
  }

  .lang-switch {
    margin-left: 0;
    margin-top: 20px;
  }

  .hamburger {
    display: flex;
  }

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

  .about__image-wrap img {
    height: 400px;
  }

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

  .product:nth-child(even) {
    direction: ltr;
  }

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

  .footer__top {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .hero__logo {
    width: 140px;
    margin-bottom: 30px;
  }

  .hero__actions {
    flex-direction: column;
    align-items: center;
  }

  .btn {
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }

  .about__stats {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }

  .about__stat-number {
    font-size: 1.8rem;
  }

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

  .product__thumbnails {
    gap: 8px;
  }

  .product__thumb {
    flex: 0 0 calc((100% - 28px) / 4.5); /* 4.5 items visible */
    height: auto;
  }

  .footer__bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }

  .whatsapp-float {
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  .about__stats {
    grid-template-columns: 1fr;
    text-align: center;
  }

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

/* Large Desktop */
@media (min-width: 1440px) {
  :root {
    font-size: 17px;
  }
}

/* ── GLIGHTBOX MOBILE FIXES ────────────────────────────────────────── */
.gbtn {
  z-index: 99999 !important; /* Ensure buttons are above everything */
}

@media (max-width: 768px) {
  .gclose {
    top: 15px !important;
    right: 15px !important;
    background: rgba(0, 0, 0, 0.5) !important; /* Make it visible on bright images */
    border-radius: 50%;
    width: 40px !important;
    height: 40px !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
  }
  
  .gclose svg {
    width: 24px !important;
    height: 24px !important;
  }

  /* Make navigation arrows more accessible on mobile */
  .gnext, .gprev {
    background: rgba(0, 0, 0, 0.3) !important;
    border-radius: 50%;
    width: 40px !important;
    height: 40px !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
  }
}

/* ── REDUCED MOTION ────────────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .reveal,
  .reveal-left,
  .reveal-right {
    opacity: 1;
    transform: none;
  }
}

/* ── LOADING OVERLAY ───────────────────────────────────────────────── */
.loader {
  position: fixed;
  inset: 0;
  background: var(--color-primary);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

.loader.hidden {
  opacity: 0;
  visibility: hidden;
}

.loader__logo {
  width: 120px;
  animation: loaderFade 1.2s ease-in-out infinite alternate;
}

@keyframes loaderFade {
  from { opacity: 0.3; }
  to { opacity: 1; }
}

/* ── MOBILE NAV OVERLAY ────────────────────────────────────────────── */
.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 998;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-medium);
}

.nav-overlay.active {
  opacity: 1;
  visibility: visible;
}
