/* ================= RESET ================= */
*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}
body{
  font-family:'Nunito Sans',sans-serif;
  background:#fff;
}

/* ================= HERO ================= */
.parallel-hero-full{
  width:100%;
  min-height:640px;
  display:flex;
  align-items:center;
  background:linear-gradient(90deg,#f7f9fd,#eaf1fb);
  overflow:hidden;
}

/* ================= SOL ALAN ================= */
.parallel-left{
  width:30%;
  padding:90px 70px;
}

.parallel-left h1{
  font-size:56px;
  line-height:1.1;
  color:#2a6fb4;
  font-style:italic;
  font-weight:700;
}

.parallel-left span{
  font-style:normal;
}

/* ================= SOSYAL ================= */
.parallel-social{
  margin-top:40px;
  display:flex;
  flex-direction:column;
  gap:14px;
}

.parallel-social a{
  width:46px;
  height:46px;
  background:#fff;
  border-radius:14px;
  display:flex;
  align-items:center;
  justify-content:center;
  color:#2a6fb4;
  box-shadow:0 8px 22px rgba(0,0,0,.12);
  transition:.3s ease;
}

.parallel-social a:hover{
  transform:translateY(-3px);
}

/* ================= SAĞ SAHNE ================= */
.parallel-stage{
  width:70%;
  position:relative;
  display:flex;
  align-items:center;
}

/* ================= KÜÇÜK PANELLER – NORMAL ================= */
.small-panels{
  display:flex;
  gap:24px;
  z-index:3;
  transition:.6s cubic-bezier(.22,.61,.36,1);
}

.small-panels .panel{
  width:260px;
  height:420px;
  border-radius:22px;
  overflow:hidden;
  background:#fff;
  box-shadow:0 20px 45px rgba(0,0,0,.25);
  transform:skewX(-10deg);
  cursor:pointer;
  transition:.6s cubic-bezier(.22,.61,.36,1);
}

.small-panels .panel img{
  width:100%;
  height:100%;
  object-fit:cover;
  transform:skewX(10deg) scale(1.05);
}

/* ================= BÜYÜK PANEL ================= */
.big-panel{
  position:absolute;
  right:0;
  width:0;
  height:520px;
  overflow:hidden;
  border-radius:26px;
  background:#fff;
  box-shadow:0 40px 90px rgba(0,0,0,.35);
  transition:.6s cubic-bezier(.22,.61,.36,1);
}

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

/* ================= HOVER / AKTİF ================= */
.parallel-stage.active .small-panels{
  position:relative;
  width:300px;
  height:520px;
  display:block;
}

.parallel-stage.active .small-panels .panel{
  position:absolute;
  left:0;
}

.parallel-stage.active .small-panels .panel:nth-child(1){
  top:0;
  left:-100px;
  z-index:3;
}

.parallel-stage.active .small-panels .panel:nth-child(2){
  top:40px;
  left:300px;
  z-index:2;
  opacity:.9;
}

.parallel-stage.active .small-panels .panel:nth-child(3){
  top:80px;
  left:600px;
  z-index:1;
  opacity:.85;
}

.parallel-stage.active .big-panel{
  width:620px;
}

/* ================= RESPONSIVE ================= */

/* Laptop */
@media (max-width:1400px){
  .parallel-left h1{font-size:48px}
  .small-panels .panel{width:240px;height:390px}
  .parallel-stage.active .big-panel{width:520px}
}

/* Tablet */
@media (max-width:992px){
  .parallel-hero-full{
    flex-direction:column;
    padding-bottom:80px;
  }

  .parallel-left{
    width:100%;
    padding:60px 40px;
    text-align:center;
  }

  .parallel-social{
    flex-direction:row;
    justify-content:center;
  }

  .parallel-stage{
    width:100%;
    justify-content:center;
  }

  .parallel-stage.active .big-panel{
    display:none; /* tablette büyük panel kapat */
  }
}

/* Mobil */
@media (max-width:576px){
  .parallel-left h1{font-size:36px}
  .small-panels{
    flex-direction:column;
  }
}
/* ===============================
   GLOBAL FIX – TEK PARÇA
   1920 → TÜM EKRANLAR
=============================== */

.page-1920{
  width:100%;
  max-width:1920px;
  margin:0 auto;
  padding:0 24px;
}

.category-cards,
.brand-cards{
  display:grid;
  gap:40px;
  grid-template-columns:repeat(4,1fr); /* default */
}

/* 1200 altı */
@media (max-width:1200px){
  .category-cards,
  .brand-cards{
    grid-template-columns:repeat(3,1fr);
  }
}

/* 992 altı */
@media (max-width:992px){
  .category-cards,
  .brand-cards{
    grid-template-columns:repeat(2,1fr);
  }
}

/* 576 altı */
@media (max-width:576px){
  .category-cards,
  .brand-cards{
    grid-template-columns:1fr;
  }
}
.category-section{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:60px;
}
.side-arrow{
  padding-left: 25px;
  box-sizing: border-box;
}

.side-arrow{ margin-left:20px; }
.side-arrow{ padding-right:50px; }