.footer-links{
  margin-top:25px;
  display:flex;
  flex-wrap:wrap;
  justify-content:center;
  gap:10px;
  font-size:11px;
}
.footer-links a{
  color:#8899a6;
  text-decoration:none;
}
.footer-links a:hover{
  text-decoration:underline;
}

.footer-bottom{
  margin-top:10px;
  text-align:center;
  font-size:11px;
  color:#8899a6;
}
*{
  box-sizing:border-box;
  margin:0;
  padding:0;
  font-family: Arial, Helvetica, sans-serif;
}

body{
  background:#f1f4f7;
}

/* TOP BAR */
.topbar{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:20px 40px;
}

.topbar nav a{
  margin-left:20px;
  text-decoration:none;
  color:#555;
  font-size:14px;
}

/* MAIN */
.container{
  max-width:1200px;
  margin:auto;
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:60px 40px;
}

/* LEFT */
.left{
  width:55%;
}

.left h1{
  font-size:38px;
  margin-bottom:20px;
}

.left h1 span{
  color:#2b7cff;
}

.left p{
  color:#777;
  max-width:500px;
  margin-bottom:30px;
}

.buttons{
  display:flex;
  gap:15px;
}

.btn-primary{
  background:#2b7cff;
  color:#fff;
  padding:16px 15px;
  border-radius:6px;
  text-decoration:none;
  font-weight:500;
}


.btn-secondary{
  background:#fff;
  color:#333;
  padding:12px 26px;
  border-radius:6px;
  border:1px solid #ddd;
  text-decoration:none;
}

/* RIGHT */
.right{
  width:40%;
  display:flex;
  justify-content:center;
}

.card{
  background:#fff;
  border-radius:12px;
  padding:0px;
  box-shadow:0 10px 30px rgba(0,0,0,0.1);
}

.card img{
  width:100%;
  max-width:320px;
}
.oakley-gif{
  position:relative;
  animation:float 4s ease-in-out infinite;
}

.oakley-gif img{
  width:320px;
  max-width:90%;
  filter:drop-shadow(0 20px 40px rgba(255,100,50,.25));
}

/* Işıltı efekti */
.oakley-gif::after{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(
    120deg,
    transparent 30%,
    rgba(255,255,255,.35),
    transparent 70%
  );
  animation:shine 3.5s infinite;
  pointer-events:none;
}

/* Yukarı–aşağı süzülme */
@keyframes float{
  0%,100%{
    transform:translateY(0);
  }
  50%{
    transform:translateY(-10px);
  }
}

/* Parlama geçişi */
@keyframes shine{
  0%{
    transform:translateX(-120%);
  }
  60%{
    transform:translateX(120%);
  }
  100%{
    transform:translateX(120%);
  }
}
.oakley-img{
  width:100%;
  max-width:320px;   /* mobilde ideal */
  height:auto;
  display:block;
  margin:20px auto;  /* ortalama */
}
@media (min-width:768px){
  .oakley-img{
    max-width:420px; /* tablet */
  }
}

@media (min-width:1024px){
  .oakley-img{
    max-width:520px; /* masaüstü */
  }
}
.meta-footer{
  background:#fff;
  color:#1c1e21;
  padding:40px 20px;
  font-size:14px;
}

.footer-top{
  display:flex;
  flex-direction:column;
  gap:16px;
  margin-bottom:30px;
}

.meta-logo{
  font-weight:700;
  font-size:18px;
}

.socials{
  display:flex;
  gap:14px;
}

.footer-socials{
  display:flex;
  gap:16px;
  align-items:center;
}

.footer-socials img{
  width:22px;
  height:22px;
  opacity:.7;
  transition:.3s;
}

.footer-socials img:hover{
  opacity:1;
}


/* MOBILE: accordion */
.footer-columns details{
  border-top:1px solid #e4e6eb;
  padding:12px 0;
}

.footer-columns summary{
  font-weight:600;
  cursor:pointer;
  list-style:none;
}

.footer-columns a{
  display:block;
  margin:8px 0;
  text-decoration:none;
  color:#65676b;
}

/* DESKTOP */
@media(min-width:900px){
  .footer-columns{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:40px;
  }

  .footer-columns details{
    border:none;
  }

  .footer-columns summary{
    cursor:default;
  }

  .footer-columns details[open] summary::-webkit-details-marker{
    display:none;
  }
  .footer{
  padding:40px 20px;
  background:#fff;
}

.footer-brand{
  max-width:1200px;
  margin:auto;
}

.footer-socials{
  display:flex;
  gap:18px;
  margin-top:12px;
}

.footer-socials a{
  font-size:20px;
  color:#65676b;
  transition:.3s;
}

.footer-socials a:hover{
  color:#1877f2;
}

/* 📱 MOBİL */
@media(max-width:768px){
  .footer-socials{
    justify-content:flex-start;
    flex-wrap:wrap;
  }
}

/* 📱 M*
.copyright-text{
  font-size:12px;   /* küçültür */
  line-height:1.4;  /* satır arası */
}
.copyright-text .title{
  font-size:14px;
  font-weight:300;
  color:#1d9bf0;
}

