/* ============================================================
   AliBaba Turkish Delight – style.css
   ============================================================ */

/* ---- CSS Variables ---- */
:root {
  --clr-red: #C0392B;
  --clr-red-light: #E74C3C;
  --clr-red-bg: #FFF5F5;
  --clr-blue: #1565C0;
  --clr-blue-light: #1976D2;
  --clr-blue-bg: #F0F7FF;
  --clr-orange: #E65100;
  --clr-orange-light: #F57C00;
  --clr-orange-bg: #FFF8F0;
  --clr-gold: #C9A227;
  --clr-gold-light: #E8C547;
  --clr-dark: #1A0A00;
  --clr-dark-2: #2E1A0E;
  --clr-text: #3D2B1F;
  --clr-text-light: #6B5344;
  --clr-bg: #FAF7F2;
  --clr-white: #FFFFFF;
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-display: 'Playfair Display', serif;
  --font-sans: 'Lato', sans-serif;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 8px 32px rgba(0, 0, 0, 0.12);
  --shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.16);
  --radius: 12px;
  --radius-lg: 20px;
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

body {
  font-family: var(--font-sans);
  background: var(--clr-bg);
  color: var(--clr-text);
  line-height: 1.7;
  overflow-x: hidden;
}

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

/* Prevent CLS – explicit aspect-ratio for image containers */
.product-card__image-main {
  aspect-ratio: 4 / 3;
}

.product-card__image-sub {
  aspect-ratio: 16 / 9;
}

.wholesale__img {
  aspect-ratio: 4 / 3;
}

/* JS-managed transition class (replaces inline style) */
.img-swap-transition {
  transition: opacity 0.2s ease, transform 0.5s ease;
}

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

ul {
  list-style: none;
}

/* ---- Container ---- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ============================================================
   HEADER
   ============================================================ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(250, 247, 242, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(139, 26, 26, 0.12);
  transition: box-shadow var(--transition);
}

.header.scrolled {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 74px;
}

.logo-svg {
  width: 160px;
  height: auto;
}

/* PNG Logo */
.logo-img {
  height: 58px;
  width: auto;
  object-fit: contain;
  display: block;
  border-radius: 50% / 38%;
  background: linear-gradient(135deg, #FFF8ED 0%, #F5E6C8 50%, #EDD9A3 100%);
  box-shadow:
    0 2px 12px rgba(139, 26, 26, 0.18),
    0 1px 4px rgba(0, 0, 0, 0.1),
    inset 0 0 0 1.5px rgba(201, 162, 39, 0.35);
  padding: 4px 10px;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
}

.logo-img:hover {
  transform: scale(1.05) translateY(-1px);
  background: linear-gradient(135deg, #FFF3DC 0%, #F0D99A 50%, #E8C547 100%);
  box-shadow:
    0 6px 24px rgba(139, 26, 26, 0.25),
    0 2px 8px rgba(0, 0, 0, 0.12),
    inset 0 0 0 1.5px rgba(201, 162, 39, 0.55);
}

.logo-img--footer {
  height: 72px;
  margin-bottom: 14px;
  border-radius: 50% / 38%;
  background: linear-gradient(135deg, rgba(201, 162, 39, 0.18) 0%, rgba(255, 248, 237, 0.10) 100%);
  box-shadow:
    0 2px 16px rgba(0, 0, 0, 0.3),
    inset 0 0 0 1.5px rgba(201, 162, 39, 0.3);
  padding: 5px 12px;
}

.logo-img--footer:hover {
  background: linear-gradient(135deg, rgba(201, 162, 39, 0.28) 0%, rgba(255, 248, 237, 0.18) 100%);
  box-shadow:
    0 8px 28px rgba(0, 0, 0, 0.38),
    inset 0 0 0 1.5px rgba(201, 162, 39, 0.45);
}

/* ---- Language Switcher ---- */
.lang-switcher {
  display: flex;
  align-items: center;
  gap: 3px;
  background: rgba(26, 10, 0, 0.06);
  border: 1.5px solid rgba(139, 26, 26, 0.18);
  border-radius: 50px;
  padding: 3px;
}

.lang-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 38px;
  height: 30px;
  padding: 0 12px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--clr-text-light);
  background: transparent;
  transition: all 0.28s cubic-bezier(0.4, 0, 0.2, 1);
}

.lang-btn.active {
  background: linear-gradient(135deg, #8B1A1A 0%, #C0392B 100%);
  color: #fff;
  box-shadow:
    0 2px 10px rgba(139, 26, 26, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.lang-btn:hover:not(.active) {
  color: var(--clr-red);
  background: rgba(139, 26, 26, 0.07);
}

.nav__menu {
  display: flex;
  gap: 36px;
  align-items: center;
}


.nav__link {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--clr-text);
  position: relative;
  padding-bottom: 4px;
  transition: color var(--transition);
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--clr-red);
  transition: width var(--transition);
}

.nav__link:hover {
  color: var(--clr-red);
}

.nav__link:hover::after {
  width: 100%;
}

.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}

.nav__hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--clr-dark);
  border-radius: 2px;
  transition: var(--transition);
}

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

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

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

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-block;
  padding: 13px 30px;
  border-radius: 50px;
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition);
  text-align: center;
}

.btn--primary {
  background: var(--clr-red);
  color: #fff;
  border-color: var(--clr-red);
}

.btn--primary:hover {
  background: var(--clr-red-light);
  border-color: var(--clr-red-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(192, 57, 43, 0.35);
}

.btn--outline {
  background: transparent;
  color: var(--clr-red);
  border-color: var(--clr-red);
}

.btn--outline:hover {
  background: var(--clr-red);
  color: #fff;
  transform: translateY(-2px);
}

.btn--red {
  --accent: var(--clr-red);
}

.btn--red.btn--primary {
  background: var(--clr-red);
  border-color: var(--clr-red);
}

.btn--red.btn--primary:hover {
  background: #a93226;
}

.btn--ghost {
  background: transparent;
  color: var(--clr-text);
  border-color: rgba(0, 0, 0, 0.2);
}

.btn--ghost:hover {
  background: rgba(0, 0, 0, 0.05);
  transform: translateY(-2px);
}

.btn--blue.btn--primary {
  background: var(--clr-blue);
  border-color: var(--clr-blue);
}

.btn--blue.btn--primary:hover {
  background: #0d47a1;
  box-shadow: 0 8px 20px rgba(21, 101, 192, 0.35);
  transform: translateY(-2px);
}

.btn--blue.btn--ghost {
  color: var(--clr-blue);
  border-color: var(--clr-blue);
}

.btn--blue.btn--ghost:hover {
  background: rgba(21, 101, 192, 0.06);
}

.btn--orange.btn--primary {
  background: var(--clr-orange);
  border-color: var(--clr-orange);
}

.btn--orange.btn--primary:hover {
  background: #bf360c;
  box-shadow: 0 8px 20px rgba(230, 81, 0, 0.35);
  transform: translateY(-2px);
}

.btn--orange.btn--ghost {
  color: var(--clr-orange);
  border-color: var(--clr-orange);
}

.btn--orange.btn--ghost:hover {
  background: rgba(230, 81, 0, 0.06);
}

.btn--gold.btn--primary {
  background: var(--clr-gold);
  border-color: var(--clr-gold);
  color: #fff;
}

.btn--gold.btn--primary:hover {
  background: var(--clr-gold-light);
  box-shadow: 0 8px 20px rgba(201, 162, 39, 0.35);
  transform: translateY(-2px);
}

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

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #2E0E00 0%, #5C1A0A 35%, #8B2500 65%, #6D1E10 100%);
  overflow: hidden;
}

.hero__bg-pattern {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 50%, rgba(201, 162, 39, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 30%, rgba(255, 255, 255, 0.04) 0%, transparent 40%),
    url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23C9A227' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

.hero__content {
  position: relative;
  z-index: 1;
  max-width: 700px;
  padding-top: 80px;
}

.hero__tagline {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--clr-gold-light);
  margin-bottom: 16px;
  animation: fadeInUp 0.8s ease 0.2s both;
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 24px;
  animation: fadeInUp 0.8s ease 0.4s both;
}

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

.hero__subtitle {
  font-family: var(--font-sans);
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.75);
  max-width: 540px;
  margin-bottom: 40px;
  animation: fadeInUp 0.8s ease 0.6s both;
}

.hero__cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  animation: fadeInUp 0.8s ease 0.8s both;
}

.hero__cta .btn--primary {
  background: var(--clr-gold);
  border-color: var(--clr-gold);
  color: #1A0A00;
  font-weight: 900;
}

.hero__cta .btn--primary:hover {
  background: var(--clr-gold-light);
}

.hero__cta .btn--outline {
  border-color: rgba(255, 255, 255, 0.5);
  color: #fff;
}

.hero__cta .btn--outline:hover {
  background: rgba(255, 255, 255, 0.1);
}

.hero__scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero__scroll-indicator span {
  display: block;
  width: 24px;
  height: 40px;
  border: 2px solid rgba(255, 255, 255, 0.4);
  border-radius: 12px;
  position: relative;
}

.hero__scroll-indicator span::before {
  content: '';
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 8px;
  background: rgba(255, 255, 255, 0.7);
  border-radius: 2px;
  animation: scrollBounce 1.8s ease infinite;
}

/* ============================================================
   INTRO STRIP
   ============================================================ */
.intro-strip {
  background: var(--clr-dark);
  padding: 24px 0;
}

.intro-strip__grid {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 16px;
}

.intro-strip__item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.85);
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.intro-strip__icon {
  font-size: 1.3rem;
}

/* ============================================================
   SECTION HEADER
   ============================================================ */
.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-header__sub {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--clr-red);
  margin-bottom: 10px;
}

.section-header__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--clr-dark);
  margin-bottom: 16px;
}

.section-header--light .section-header__title {
  color: #fff;
}

.section-header--light .section-header__sub {
  color: var(--clr-gold-light);
}

.section-header--light .section-header__desc {
  color: rgba(255, 255, 255, 0.75);
  max-width: 560px;
  margin: 0 auto;
}

.section-header__line {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--clr-gold), var(--clr-red));
  margin: 0 auto 20px;
  border-radius: 2px;
}

/* ============================================================
   PRODUCTS
   ============================================================ */
.products {
  padding: 100px 0;
  background: var(--clr-bg);
}

.product-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  margin-bottom: 80px;
  transition: box-shadow var(--transition), transform var(--transition);
}

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

/* Reversed card (mavi) */
.product-card--reverse {
  direction: rtl;
}

.product-card--reverse>* {
  direction: ltr;
}

/* Images side */
.product-card__images {
  display: flex;
  flex-direction: column;
  position: relative;
}

.product-card__image-main {
  position: relative;
  overflow: hidden;
  background: #f5f5f5;
  flex: 1;
  min-height: 380px;
}

.product-card__image-main .product-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  /* Görsel alanları standart olacak, kesilme olmayacak */
  padding: 20px;
  background: #fafafa;
  transition: transform 0.5s ease;
}

.product-card:hover .product-card__image-main .product-img {
  transform: scale(1.04);
}

.product-card__image-sub {
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  overflow: hidden;
  background: #f5f5f5;
  height: 220px;
  position: relative;
}

.product-card__image-sub .product-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 16px;
  background: #fafafa;
  transition: transform 0.5s ease;
}

.product-card:hover .product-card__image-sub .product-img {
  transform: scale(1.04);
}

.product-card__badge {
  position: absolute;
  top: 16px;
  left: 16px;
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  z-index: 5;
}

.product-card__badge--red {
  background: var(--clr-red);
  color: #fff;
}

.product-card__badge--blue {
  background: var(--clr-blue);
  color: #fff;
}

.product-card__badge--orange {
  background: var(--clr-orange);
  color: #fff;
}

/* Info side */
.product-card__info {
  padding: 48px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
  position: relative;
  overflow: hidden;
}

.product-card--red .product-card__info {
  background: var(--clr-red-bg);
}

.product-card--blue .product-card__info {
  background: var(--clr-blue-bg);
}

.product-card--orange .product-card__info {
  background: var(--clr-orange-bg);
}

.product-card__color-bar {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
}

.product-card__color-bar--red {
  background: linear-gradient(90deg, var(--clr-red), var(--clr-gold));
}

.product-card__color-bar--blue {
  background: linear-gradient(90deg, var(--clr-blue), #42A5F5);
}

.product-card__color-bar--orange {
  background: linear-gradient(90deg, var(--clr-orange), var(--clr-gold));
}

.product-card__tag {
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--clr-red);
  margin-top: 4px;
}

.product-card__tag--blue {
  color: var(--clr-blue);
}

.product-card__tag--orange {
  color: var(--clr-orange);
}

.product-card__name {
  font-family: var(--font-display);
  font-size: 2.1rem;
  font-weight: 700;
  color: var(--clr-dark);
  line-height: 1.2;
}

.product-card__name-en {
  font-family: var(--font-sans);
  font-size: 0.82rem;
  color: var(--clr-text-light);
  font-style: italic;
  margin-top: -6px;
}

.product-card__desc {
  font-size: 0.95rem;
  color: var(--clr-text-light);
  line-height: 1.75;
}

/* Specs table */
.product-card__specs {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.84rem;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.06);
}

.product-card__specs tr:nth-child(odd) {
  background: rgba(255, 255, 255, 0.7);
}

.product-card__specs tr:nth-child(even) {
  background: rgba(255, 255, 255, 0.3);
}

.spec-label {
  padding: 9px 14px;
  font-weight: 700;
  color: var(--clr-text);
  white-space: normal;
  word-break: break-word;
  width: 38%;
  border-right: 1px solid rgba(0, 0, 0, 0.05);
}

.spec-value {
  padding: 9px 14px;
  color: var(--clr-text-light);
}

.product-card__actions {
  display: flex;
  gap: 12px;
  margin-top: 8px;
  flex-wrap: wrap;
}

/* ============================================================
   WHOLESALE
   ============================================================ */
.wholesale {
  padding: 100px 0;
  background: linear-gradient(135deg, #1A0A00 0%, #3D1A08 50%, #2E0E00 100%);
  position: relative;
  overflow: hidden;
}

.wholesale::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23C9A227' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

.wholesale__content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  position: relative;
}

.wholesale__image-wrap {
  position: relative;
}

.wholesale__img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.4);
  transition: transform var(--transition);
}

.wholesale__img:hover {
  transform: scale(1.02) rotate(-1deg);
}

.wholesale__img-caption {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--clr-gold);
  color: var(--clr-dark);
  padding: 14px 20px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: var(--shadow-md);
  white-space: nowrap;
}

.wholesale__subtitle {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: #fff;
  margin-bottom: 24px;
}

.wholesale__features {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 36px;
}

.wholesale__features li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.feature-icon {
  width: 28px;
  height: 28px;
  min-width: 28px;
  background: var(--clr-gold);
  color: var(--clr-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 900;
  margin-top: 2px;
}

.wholesale__features strong {
  display: block;
  color: #fff;
  margin-bottom: 2px;
}

.wholesale__features p {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.9rem;
}

/* ============================================================
   CONTACT
   ============================================================ */
.contact {
  padding: 100px 0;
  background: var(--clr-bg);
}

.contact__grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 64px;
  align-items: start;
}

.contact__form {
  background: #fff;
  padding: 48px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--clr-text);
  margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid rgba(0, 0, 0, 0.12);
  border-radius: 8px;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  color: var(--clr-text);
  background: #fafafa;
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--clr-red);
  box-shadow: 0 0 0 3px rgba(192, 57, 43, 0.12);
  background: #fff;
}

.form-success {
  display: none;
  margin-top: 16px;
  padding: 14px;
  background: #E8F5E9;
  border-radius: 8px;
  font-size: 0.9rem;
  color: #2E7D32;
  font-weight: 700;
  text-align: center;
}

.form-success.visible {
  display: block;
}

.contact__info {
  display: flex;
  flex-direction: column;
  gap: 28px;
  padding-top: 16px;
}

.contact__info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.contact__icon {
  font-size: 1.5rem;
  width: 44px;
  height: 44px;
  min-width: 44px;
  background: var(--clr-red-bg);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact__info-item strong {
  display: block;
  color: var(--clr-dark);
  font-size: 0.9rem;
  margin-bottom: 4px;
}

.contact__info-item p {
  color: var(--clr-text-light);
  font-size: 0.9rem;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--clr-dark);
  color: rgba(255, 255, 255, 0.75);
}

.footer__inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 48px;
  padding: 64px 24px 48px;
}

.footer__logo .logo-svg {
  width: 150px;
  margin-bottom: 12px;
}

.footer__tagline {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 8px;
}

.footer__links h4,
.footer__cert h4 {
  color: #fff;
  font-family: var(--font-sans);
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.footer__links ul li+li {
  margin-top: 10px;
}

.footer__links a {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
  transition: color var(--transition);
}

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

.cert-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.cert-badge {
  padding: 7px 14px;
  border: 1px solid rgba(201, 162, 39, 0.4);
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--clr-gold-light);
  background: rgba(201, 162, 39, 0.08);
}

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 20px 24px;
  text-align: center;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.35);
}

/* ============================================================
   MODALS
   ============================================================ */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(4px);
  z-index: 2000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

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

.modal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -48%) scale(0.96);
  z-index: 2001;
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 40px;
  max-width: 520px;
  width: 90%;
  max-height: 85vh;
  overflow-y: auto;
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.3);
  opacity: 0;
  pointer-events: none;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.modal.active {
  opacity: 1;
  pointer-events: all;
  transform: translate(-50%, -50%) scale(1);
}

.modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 32px;
  height: 32px;
  background: rgba(0, 0, 0, 0.06);
  border: none;
  border-radius: 50%;
  font-size: 1rem;
  cursor: pointer;
  color: var(--clr-text);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition);
}

.modal__close:hover {
  background: rgba(0, 0, 0, 0.12);
}

.modal__img {
  width: 100%;
  height: 220px;
  object-fit: contain;
  border-radius: 8px;
  background: #f5f5f5;
  margin-bottom: 20px;
}

.modal__title {
  font-family: var(--font-display);
  font-size: 1.6rem;
  margin-bottom: 12px;
}

.modal__text {
  color: var(--clr-text-light);
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 20px;
}

.modal__specs {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.modal__specs li {
  font-size: 0.9rem;
  color: var(--clr-text-light);
  padding: 8px 12px;
  background: var(--clr-bg);
  border-radius: 6px;
}

.modal__specs strong {
  color: var(--clr-text);
}

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

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

@keyframes scrollBounce {

  0%,
  100% {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
  }

  80% {
    transform: translateX(-50%) translateY(14px);
    opacity: 0.2;
  }
}

/* ============================================================
   SCROLL ANIMATIONS (JS-triggered)
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal--left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal--left.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal--right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal--right.visible {
  opacity: 1;
  transform: translateX(0);
}

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

  .product-card--reverse {
    direction: ltr;
  }

  .product-card__images {
    grid-template-rows: 320px 180px;
  }

  .product-card__info {
    padding: 36px;
  }

  .wholesale__content {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .wholesale__img-caption {
    right: 0;
    bottom: -16px;
  }

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

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

@media (max-width: 768px) {
  .nav__menu {
    position: fixed;
    top: 74px;
    left: 0;
    right: 0;
    background: rgba(250, 247, 242, 0.98);
    backdrop-filter: blur(14px);
    flex-direction: column;
    gap: 0;
    padding: 12px 0 24px;
    transform: translateY(-120%);
    opacity: 0;
    transition: all var(--transition);
    box-shadow: var(--shadow-md);
  }

  .nav__menu.open {
    transform: translateY(0);
    opacity: 1;
  }

  .nav__link {
    padding: 14px 32px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    display: block;
    width: 100%;
  }

  .nav__hamburger {
    display: flex;
  }

  /* Product card – mobilde tek sütun, taşma yok */
  .product-card {
    grid-template-columns: 1fr;
    display: flex;
    flex-direction: column;
  }

  .product-card--reverse {
    direction: ltr;
    flex-direction: column;
  }

  .product-card__images {
    flex-direction: column;
    width: 100%;
  }

  .product-card__image-main {
    min-height: 260px;
    width: 100%;
  }

  .product-card__image-sub {
    height: 160px;
    width: 100%;
  }

  .product-card__info {
    padding: 28px 20px 32px;
    width: 100%;
    overflow: hidden;
  }

  .product-card__name {
    font-size: 1.7rem;
  }

  /* Spec tablosunda taşma önleme */
  .product-card__specs {
    table-layout: fixed;
    word-break: break-word;
  }

  .spec-label {
    white-space: normal;
    word-break: break-word;
    width: 42%;
    font-size: 0.78rem;
    padding: 8px 10px;
  }

  .spec-value {
    font-size: 0.82rem;
    padding: 8px 10px;
    word-break: break-word;
  }

  /* Detay butonu tam genişlik ve ortalanmış */
  .product-card__actions {
    justify-content: center;
  }

  .product-card__actions .btn {
    width: 100%;
    text-align: center;
  }

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

  .contact__form {
    padding: 28px 20px;
  }

  .hero__cta .btn {
    padding: 12px 22px;
    font-size: 0.78rem;
  }

  .wholesale__img-caption {
    position: static;
    margin-top: 16px;
    width: fit-content;
  }
}

/* ============================================================
   KÜÇÜK EKRANLAR (≤ 480px)
   ============================================================ */
@media (max-width: 480px) {
  .product-card {
    margin-bottom: 40px;
    border-radius: 12px;
  }

  .product-card__image-main {
    min-height: 220px;
  }

  .product-card__image-sub {
    height: 130px;
  }

  .product-card__info {
    padding: 22px 16px 28px;
    gap: 10px;
  }

  .product-card__name {
    font-size: 1.45rem;
  }

  .product-card__desc {
    font-size: 0.88rem;
  }

  .spec-label,
  .spec-value {
    font-size: 0.75rem;
    padding: 7px 8px;
  }

  .product-card__badge {
    font-size: 0.65rem;
    padding: 5px 10px;
    top: 10px;
    left: 10px;
  }

  .container {
    padding: 0 16px;
  }
}