/*
Theme Name: Blocksy Child
Template: blocksy
Version: 1.0
*/


/* HERO */

.arslan-hero {
  position: relative;
  min-height: 680px;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  background-size: cover;
  background-position: center;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.arslan-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.42);
}

.arslan-hero-content {
  position: relative;
  z-index: 2;
  width: min(900px, calc(100% - 32px));
  text-align: center;
  color: #fff;
}

.arslan-hero-content h1 {
  color: #fff;
  font-size: clamp(34px, 5vw, 64px);
  line-height: 1.05;
  margin: 0 0 18px;
  font-weight: 800;
}

.arslan-hero-content p {
  font-size: clamp(16px, 2vw, 22px);
  margin: 0 auto 30px;
  max-width: 720px;
  color: rgba(255,255,255,.9);
}

.arslan-hero-search {
  display: flex;
  background: #fff;
  border-radius: 999px;
  padding: 8px;
  box-shadow: 0 20px 60px rgba(0,0,0,.25);
  max-width: 760px;
  margin: 0 auto;
}

.arslan-hero-search input {
  flex: 1;
  border: 0;
  outline: 0;
  padding: 0 22px;
  font-size: 16px;
  border-radius: 999px;
}

.arslan-hero-search button {
  border: 0;
  background: #111;
  color: #fff;
  padding: 15px 28px;
  border-radius: 999px;
  font-weight: 700;
  cursor: pointer;
}

.arslan-popular-searches {
  margin-top: 22px;
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
  align-items: center;
}

.arslan-popular-searches span {
  color: rgba(255,255,255,.8);
}

.arslan-popular-searches a {
  color: #fff;
  text-decoration: none;
  background: rgba(255,255,255,.16);
  padding: 8px 14px;
  border-radius: 999px;
}

/* ==========================
   ÖNE ÇIKAN MARKALAR
========================== */

.featured-brands{
    background:#fff;
}

.section-head{
    text-align:center;
    margin-bottom:45px;
}

.section-head h2{
    font-size:40px;
    font-weight:700;
    color:#111;
    margin-bottom:12px;
}

.section-head p{
    color:#666;
    font-size:17px;
}

.featured-brand-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:35px;
    max-width:1300px;
    margin:auto;
}

.featured-brand-card{
    text-decoration:none;
    color:#111;
}

.featured-brand-card {
    display: block;
    overflow: hidden;
    border-radius: 18px;
    box-shadow: 0 15px 40px rgba(0,0,0,.12);
    transition: .35s;
}

.featured-brand-card img {
    width: 100%;
    height: 370px;
    object-fit: cover;
    display: block;
    object-fit: cover;
    transition: .35s;
}

.featured-brand-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 55px rgba(0,0,0,.18);
}

.featured-brand-card:hover img {
    transform: scale(1.05);
}

.featured-brand-info{
    text-align:center;
    margin-top:18px;
}

.featured-brand-info h3{
    font-size:24px;
    margin:0;
    font-weight:700;
}

.featured-brand-info span{
    display:block;
    margin-top:8px;
    color:#777;
    font-size:15px;
}

.section-action{
    text-align:center;
    margin-top:45px;
}

.outline-btn{
    display:inline-block;
    padding:14px 26px;
    border:2px solid #111;
    border-radius: 18px;
    color:#111;
    text-decoration:none;
    font-weight:600;
    transition:.25s;
}

.outline-btn:hover{
    background:#111;
    color:#fff;
}

@media(max-width:1200px){

.featured-brand-grid{

grid-template-columns:repeat(3,1fr);

 }
}

@media(max-width:900px){

.featured-brand-grid{

grid-template-columns:repeat(2,1fr);

}

}

@media (max-width: 600px) {

  .featured-brands {
    padding: 0 16px;
  }

  .section-head {
    margin-bottom: 30px;
  }

  .section-head h2 {
    font-size: 30px;
    line-height: 1.2;
    margin-bottom: 10px;
  }

  .section-head p {
    font-size: 15px;
    line-height: 1.6;
  }

  .featured-brand-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .featured-brand-card {
    border-radius: 14px;
  }

  .featured-brand-card img {
    width: 100%;
    height: auto;
    aspect-ratio: 1410 / 2250;
    object-fit: contain;
    object-position: center;
    background: #fff;
}

  .section-action {
    margin-top: 30px;
  }

  .outline-btn {
    width: 100%;
    padding: 14px 20px;
    font-size: 15px;
  }

}

/* CAROUSEL */

.remote-blog-row {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  gap: 22px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 12px;
}

.remote-blog-card {
  min-width: 340px;
  max-width: 340px;
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  text-decoration: none;
  color: #111;
  border: 1px solid #e8e8e8;
  scroll-snap-align: start;
  transition: .2s ease;
}

.remote-blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 35px rgba(0,0,0,.08);
}

.remote-blog-img {
  height: 190px;
  background: #eee;
}

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

.remote-blog-content {
  padding: 18px;
}

.remote-blog-content h3 {
  font-size: 19px;
  margin: 0 0 10px;
}

.remote-blog-content p {
  color: #666;
  font-size: 14px;
  margin: 0 0 14px;
}

.remote-blog-content span {
  font-weight: 700;
}


/* REMOTE PRODUCT */

.remote-products-row {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  gap: 22px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 12px;
}

.remote-product-card {
  min-width: 260px;
  max-width: 260px;
  background: #fff;
  border: 1px solid #e8e8e8;
  border-radius: 18px;
  overflow: hidden;
  text-decoration: none;
  color: #111;
  scroll-snap-align: start;
  transition: .2s ease;
}

.remote-product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 35px rgba(0,0,0,.08);
}

.remote-product-img {
  height: 230px;
  background: #f4f4f4;
}

.remote-product-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 18px;
}

.remote-product-content {
  padding: 16px;
}

.remote-product-content h3 {
  font-size: 16px;
  line-height: 1.35;
  margin: 0 0 14px;
}

.remote-product-content span {
  font-size: 14px;
  font-weight: 700;
}

/* KATALOG GRİD */

.arslan-katalog-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
  max-width: 1280px;
  margin: 0 auto;
}

.arslan-katalog-card {
  background: #fff;
  border: 1px solid #e8e8e8;
  border-radius: 18px;
  overflow: hidden;
  transition: .2s ease;
}

.arslan-katalog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 35px rgba(0,0,0,.08);
}

.arslan-katalog-image {
  display: block;
  height: 330px;
  background: #f6f6f6;
  overflow: hidden;
}

.arslan-katalog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.arslan-katalog-content {
  padding: 18px;
}

.arslan-katalog-content h3 {
  font-size: 18px;
  line-height: 1.3;
  margin: 8px 0 10px;
}

.arslan-katalog-content h3 a {
  color: #111;
  text-decoration: none;
}

.arslan-katalog-buttons {
  display: flex;
  gap: 10px;
}

.arslan-btn {
  padding: 10px 14px;
  border-radius: 18px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}

.arslan-btn.primary {
  background: #111;
  color: #fff;
}

.arslan-btn.secondary {
  background: #f2f2f2;
  color: #111;
}

/* Statistics */
.arslan-stats-section {
  background: transparent;
  padding: 0 20px 60px;
  margin-top: -120px;
  position: relative;
  z-index: 5;
}

.arslan-stats-wrap {
  max-width: 1180px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid #e9e9e9;
  border-radius: 18px;
  box-shadow: 0 22px 60px rgba(0,0,0,.16);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  overflow: hidden;
}

.arslan-stat-card {
  text-align: center;
  padding: 30px 20px;
  border-right: 1px solid #eee;
}

.arslan-stat-card:last-child {
  border-right: 0;
}

.arslan-stat-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 18px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.arslan-stat-icon img {
    width: 64px;
    height: 64px;
    display: block;
    object-fit: contain;
}

.arslan-stat-card strong {
  display: block;
  font-size: 34px;
  line-height: 1;
  color: #111;
  margin-bottom: 8px;
}

.arslan-stat-card p {
  margin: 0;
  color: #666;
  font-size: 15px;
}

@media (max-width: 800px) {
  .arslan-stats-wrap {
    grid-template-columns: repeat(2, 1fr);
  }

  .arslan-stat-card:nth-child(2) {
    border-right: 0;
  }

  .arslan-stat-card {
    border-bottom: 1px solid #eee;
  }

  .arslan-stat-card:nth-child(3),
  .arslan-stat-card:nth-child(4) {
    border-bottom: 0;
  }
}

@media (max-width: 480px) {

  .arslan-stats-section {
    margin-top: -60px;
    padding: 0 16px 40px;
  }

  .arslan-stats-wrap {
    grid-template-columns: repeat(2, 1fr);
    border-radius: 14px;
  }

  .arslan-stat-card {
    padding: 22px 12px;
    border-right: 1px solid #eee;
    border-bottom: 1px solid #eee;
  }

  .arslan-stat-card:nth-child(2n) {
    border-right: 0;
  }

  .arslan-stat-card:nth-child(3),
  .arslan-stat-card:nth-child(4) {
    border-bottom: 0;
  }

  .arslan-stat-icon {
    width: 52px;
    height: 52px;
    margin-bottom: 12px;
  }

  .arslan-stat-icon img {
    width: 44px;
    height: 44px;
  }

  .arslan-stat-card strong {
    font-size: 26px;
  }

  .arslan-stat-card p {
    font-size: 13px;
  }

}

@media (max-width: 600px) {

  .arslan-katalog-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .arslan-katalog-card {
    border-radius: 14px;
  }

  .arslan-katalog-image {
    height: 220px;
  }

  .arslan-katalog-content {
    padding: 14px;
  }

  .arslan-katalog-content h3 {
    font-size: 16px;
    line-height: 1.35;
    margin: 6px 0 8px;
  }

  .arslan-katalog-content p {
    display: none;
  }

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

/* ==========================
   CTA
========================== */

.arslan-cta-section{
    width:100%;
    padding:90px 20px;
    background:linear-gradient(135deg,#111111,#1b1b1b);
}

.arslan-cta-box{
    max-width:1000px;
    margin:auto;
    text-align:center;
    color:#fff;
}

.arslan-cta-box span{
    display:inline-block;
    margin-bottom:14px;
    color:#f5c542;
    font-size:15px;
    font-weight:700;
    letter-spacing:.5px;
    text-transform:uppercase;
}

.arslan-cta-box h2{
    color:#fff;
    font-size:clamp(34px,4vw,52px);
    line-height:1.15;
    margin:0 auto 20px;
    max-width:850px;
}

.arslan-cta-box p{
    max-width:700px;
    margin:0 auto 35px;
    color:#bfbfbf;
    font-size:18px;
    line-height:1.8;
}

.arslan-cta-box a{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:16px 34px;
    border-radius:999px;
    background:#fff;
    color:#111;
    text-decoration:none;
    font-weight:700;
    transition:.3s;
}

.arslan-cta-box a:hover{
    background:#f5c542;
    color:#111;
    transform:translateY(-2px);
}

/* FOOTER */ 
.footer-links h4,
.footer-contact h4 {
  color: #777;
  margin-bottom: 16px;
}

.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a,
.footer-contact a,
.footer-brand p,
.footer-contact p {
  color: #777;
  text-decoration: none;
}

.footer-links a:hover,
.footer-contact a:hover {
  color: #7777;
}

/* Scroll Carousel */ 
.remote-blog-row,
.remote-products-row {
  scrollbar-width: none;
}

.remote-blog-row::-webkit-scrollbar,
.remote-products-row::-webkit-scrollbar {
  display: none;
}

.carousel-wrap {
  position: relative;
  max-width: 1280px;
  margin: 0 auto;
}

.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 44px;
  height: 44px;
  border-radius: 18px;
  background: #fff;
color: #111;
box-shadow: 0 10px 25px rgba(0,0,0,.15);
  cursor: pointer;
  font-size: 22px;
}

.carousel-arrow.left {
  left: -38px;
}

.carousel-arrow.right {
  right: -38px;
}

.ae-page-header{
    text-align:center;
    margin:60px auto;
    max-width:700px;
}

.ae-page-header h1{
    font-size:42px;
    margin-bottom:15px;
}

.ae-page-header p{
    color:#666;
    font-size:18px;
}

.ae-brands-grid{

    display:grid;

    grid-template-columns:
    repeat(auto-fit,minmax(220px,1fr));

    gap:24px;

}

.ae-brand-card{

    background:#fff;

    border-radius:18px;

    padding:30px;

    text-align:center;

    text-decoration:none;

    color:#222;

    transition:.25s;

    box-shadow:
    0 8px 25px rgba(0,0,0,.05);

}

.ae-brand-card:hover{

    transform:translateY(-6px);

    box-shadow:
    0 20px 45px rgba(0,0,0,.12);

}

.ae-brand-logo {
    width: 100%;
    height: 110px;
    margin-bottom: 22px;
    padding: 18px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #f7f7f7;
    border-radius: 14px;
}

.ae-brand-logo img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.ae-brand-logo span {
    width: 72px;
    height: 72px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;
    background: #ededed;

    font-size: 28px;
    font-weight: 700;
}

.ae-brand-card h3{

    margin-bottom:10px;

}

.ae-brand-card span{

    color:#777;

}

.ae-brand-search-wrap {
    max-width: 620px;
    margin: -20px auto 45px;
}

.ae-brand-search-box {
    position: relative;
}

.ae-brand-search-box input {
    width: 100%;
    height: 58px;

    padding: 0 22px 0 54px;

    border: 1px solid rgba(0, 0, 0, .08);
    border-radius: 999px;

    background: rgba(255, 255, 255, .9);

    box-shadow: 0 12px 35px rgba(0, 0, 0, .07);

    font-size: 16px;
    color: #222;

    outline: none;

    transition:
        border-color .2s ease,
        box-shadow .2s ease,
        background .2s ease;
}

.ae-brand-search-box input:focus {
    background: #fff;
    border-color: rgba(0, 0, 0, .18);
    box-shadow: 0 16px 45px rgba(0, 0, 0, .11);
}

.ae-brand-search-box input::placeholder {
    color: #999;
}

.ae-brand-search-icon {
    position: absolute;
    top: 50%;
    left: 21px;

    display: flex;

    color: #777;

    transform: translateY(-50%);

    pointer-events: none;
}

#ae-brand-empty {
    margin: 28px 0 0;

    text-align: center;
    color: #777;
}

.ae-brand-card[hidden] {
    display: none;
}

@media (max-width: 767px) {

    .ae-page-header {
        margin: 36px auto;
        padding: 0 14px;
    }

    .ae-page-header h1 {
        font-size: 34px;
        margin-bottom: 12px;
    }

    .ae-page-header p {
        font-size: 15px;
        line-height: 1.6;
    }

    .ae-brand-search-wrap {
        margin: 0 auto 28px;
    }

    .ae-brand-search-box input {
        height: 52px;
        padding: 0 18px 0 50px;
        font-size: 15px;
    }

    .ae-brands-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 14px;
    }

    .ae-brand-card {
        padding: 18px;
        border-radius: 14px;
    }

    .ae-brand-logo {
        height: 80px;
        margin-bottom: 16px;
        padding: 12px;
    }

    .ae-brand-logo span {
        width: 54px;
        height: 54px;
        font-size: 22px;
    }

    .ae-brand-card h3 {
        font-size: 17px;
        margin-bottom: 6px;
    }

    .ae-brand-card span {
        font-size: 13px;
    }

}

/* MOBIL HERO */
@media (max-width: 767px) {
  .arslan-hero {
    min-height: 430px;
    padding: 56px 0 44px;
    background-position: center;
  }

  .arslan-hero-content {
    width: calc(100% - 28px);
  }

  .arslan-hero-content h1 {
    font-size: 36px;
    line-height: 1.08;
    margin-bottom: 14px;
  }

  .arslan-hero-content p {
    max-width: 330px;
    margin-bottom: 22px;
    font-size: 16px;
    line-height: 1.55;
  }

  .arslan-popular-searches {
    gap: 8px;
    margin-top: 18px;
  }

  .arslan-popular-searches span {
    width: 100%;
    font-size: 13px;
  }

  .arslan-popular-searches a {
    padding: 7px 12px;
    font-size: 13px;
  }
}
