
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    background-color: #F8F7F5;
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.1);
}
.logo img {
    height: 40px;
}
.sayfa-banner{
    background-image: url(./img/Img.png);
    width: 100%;
    border-radius: 16px;
    height: 232px;
}
.banner-yazi{
    height: 232px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-left: 30px;
    row-gap: 20px;
}
.banner-yazi h1{
    color: #FFCE13;
    font-size: 24px;
}
.banner-yazi p{
    color: white;
    font-size:12px ;
}
.search-bar input {
    padding: 8px;
    width: 525px;
    border: 1px solid #ccc;
    border-radius: 5px;
}
.user-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}
.cart, .profile {
    background: none;
    border: none;
    font-size: 20px;
    cursor: pointer;
}
.banner{
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #222;
    color: white;
}
.banner-content {
    max-width: 500px;
}
.banner h1 {
    font-size: 24px;
    color: yellow;
}
.banner p {
    font-size: 16px;
}
.banner-image img {
    max-width: 100%;
    height: auto;
}

.title-and-price {
    background-color: #F8F7F5;
    padding: 10px;
    border: 1px solid transparent;
    border-radius: 4.83px;
    }
h2 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 15px;
}
.products {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    padding: 10px 0;
}
.product {
    border: 1px solid #ddd;
    padding: 10px;
    text-align: center;
    min-width: 180px;
    background: #fff;
    border-radius: 8px;
}
.product img {
    width: 100px;
    height: auto;
}
.price {
    font-weight: bold;
    color: #222;
}
.discount {
    color: #FFCE13;
    font-size: 14px;
}
.view-all {
    color: #f0ad4e;
    text-decoration: none;
    font-weight: bold;
}


* {
  box-sizing: border-box;
}



.headerWrapper {
  align-items: center;
  justify-content: space-between;
  padding: 10px 40px;
  background: #f9f9f9;
  border-bottom: 1px solid #eee;
}


.searchFieldContainer {
  flex: 1;
  margin: 0 40px;
}

.searchFieldInput {
  width: 100%;
  padding: 10px 16px;
  border: 1px solid #ddd;
  border-radius: 10px;
  font-size: 14px;
}

.headerRightSection {
  display: flex;
  align-items: center;
  gap: 16px;
}

.iconBox {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 10px;
  padding: 8px;
  cursor: pointer;
}

.iconImage {
  height: 20px;
}

.userProfileArea {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  position: relative;
}

.userProfileImage {
  height: 32px;
  width: 32px;
  border-radius: 50%;
}

.profileMenu {
  position: absolute;
  top: 42px;
  right: 0;
  background: white;
  border: 1px solid #ddd;
  border-radius: 8px;
  display: none;
  min-width: 150px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  z-index: 10;
}

.profileMenuItem {
  display: block;
  padding: 10px;
  text-decoration: none;
  color: #333;
  font-size: 14px;
}

.profileMenuItem:hover {
  background: #f5f5f5;
}

.userProfileArea:hover .profileMenu {
  display: block;
}






/* Banner Stili */
.banner {
    position: relative;
    width: 100%;
    max-height: 300px;
    overflow: hidden;
}

.banner img {
    width: 100%;
    height: auto;
    display: block;
}

.banner-text {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 15px;
    border-radius: 5px;
    display: flex;
    align-items: center;
    flex-direction: column;

}

.banner-text h2 {
    margin: 0;
    font-size: 24px;
}

.banner-text span {
    color: yellow;
}

/* Kart Stili */

.bolum-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    column-gap: 30px;
  }
  
  .kart-kapsayici {
    display: flex;
    align-items: center;
    width: 100%;
    height: 183px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    background-color: white;
    margin-top: 55px;
    margin-bottom: 50px;
  }
  
  .kart-gorsel {
    width: 60%;
    height: 100%;
    object-fit: cover;
  }
  
  .kart-yazi {
    width: 173px;
    height: 190px;
    background-color: #212121;
    color: white;
    font-size: 18px;
    font-weight: bold;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 10px;
  }
  .kart-yazi h5{
    color: #FFCE13;
  }



.container {
    max-width: 1544px;
    margin: auto;
}
.title {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 10px;
}
.product-section {
    margin-bottom: 20px;
}
.product-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 15px;
}
.product-card {
    background: white;
    padding: 10px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}
.product-card img {
    max-width: 100%;
    height: auto;
}
.product-title {
    font-size: 14px;
    margin: 10px 0;
}
.price {
    font-size: 16px;
    font-weight: bold;
}
.discount {
    font-size: 12px;
    color: #FFCE13;
}
.view-all {
    text-align: right;
    margin-top: 10px;
    font-size: 14px;
    color: gold;
    cursor: pointer;
}



.banner {
    background: url('https://source.unsplash.com/1600x400/?car,road') no-repeat center center/cover;
    color: white;
    padding: 40px;
    text-align: center;
    position: relative;
}
.banner h1 {
    margin: 0;
    font-size: 24px;
}
.banner p {
    font-size: 14px;
    margin: 10px 0;
}
.banner button {
    background-color: #ffcc00;
    border: none;
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
    border-radius: 5px;
}
.alt-sosyal-medya{
    display: flex;
    align-items: center;
    column-gap: 20px;
}
.dahafazlabtn{
    display: flex;
    align-items: center;
    justify-content: center;
}
.dahafazlabtn2 {
    background-color: #F2F4F7;
    width: 168.44px;
    height: 45.58px;
    border: none;
    margin-top: 60px;
    margin-bottom: 60px;
}


.card img {
    width: 100%;
    height: auto;
    background: #F8F7F5;
    padding: 0px;
    border: 1px solid transparent;
    border-radius: 6px;
}

/* -------- Mobil Header -------- */
.autokey-mobile-header {
    display: none;
    align-items: center;
    justify-content: space-between;
    padding: 10px 15px;
    background-color: white;
    border-bottom: 1px solid #ddd;
  }

  .autokey-hamburger {
    background: none;
    border: none;
    cursor: pointer;
  }

  .autokey-hamburger svg {
    stroke: #334155;
  }

  .autokey-logo {
    height: 40px;
  }

  .autokey-icons {
    display: flex;
    gap: 16px;
  }

  .autokey-icon {
    width: 24px;
    height: 24px;
    opacity: 0.6;
  }

  /* Mobil Menü */
  .autokey-side-menu {
    display: block;
    position: fixed;
    top: 0;
    left: -250px;
    width: 220px;
    height: 100%;
    background-color: #fff;
    box-shadow: 2px 0 5px rgba(0,0,0,0.2);
    padding: 60px 20px;
    transition: left 0.3s ease;
    z-index: 20;
  }

  .autokey-side-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }

  .autokey-side-menu ul li {
    margin-bottom: 20px;
  }

  .autokey-side-menu ul li a {
    text-decoration: none;
    color: #333;
    font-size: 16px;
  }

  .autokey-side-menu.active {
    left: 0;
  }

  .autokey-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.4);
    z-index: 15;
  }

  .autokey-overlay.active {
    display: block;
  }


.panel2 {
  padding: 16px 15px;
    background-color: white;
    position: fixed;
    display: flex;
    align-items: center;
    flex-direction: column;
    row-gap: 40px;
    height: 100%;
    z-index: 2;
}
.page {
    width: calc(100% - 90px);
    margin-left: auto;
    background-color: #F8F7F5;
}
.web-panel-home-page{
    padding: 10px;
    border: 1px solid transparent;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}
 .web-panel-home-page.active{
    background-color: #FFCE13;
}
.all-web-panel a {
    display: flex;
    align-items: center;
    column-gap: 20px;
}
.web-panel {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    row-gap: 25px;
}
.open-web-panel {
    display: flex;
    flex-direction: column;
    justify-content: center;
    row-gap: 25px;
    position: absolute;
    top: 120px;
    left: 20px;
}
.offcanvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 15%;
    height: 100%;
    background: white;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
  }

  .offcanvas.show {
    transform: translateX(0);
    transition: transform 0.3s ease;
  }

  .offcanvas .close-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
    z-index: 10000;
  }
  .card {
  border: 1px solid #ddd;
  
  text-align: center;
  min-width: 180px;
  background: #fff;
  border-radius: 8px;
}
.card:hover {
    transition: .3s;
    border: 1.5px solid #FFCE13;
}
.card-button:hover svg path
{
  fill: #FFCE13;
  stroke: white;
}
.card-button:hover svg path:last-child {
    stroke: #FFCE13;
}
.card-button:hover svg circle{
  fill: white;
  stroke:#FFCE13;
}
.card-button:hover{
  background-color: #FFCE13;
}
.card img {
  width: 100%;
  height: auto;
}

.card .title {
  font-size: 16px;
  font-weight: 600;
  color: #333;
  margin-bottom: 8px;
}

.card .price-info {
  font-size: 14px;
  margin-bottom: 4px;
}

.card .old-price {
  text-decoration: line-through;
  color: gray;
  font-size: 13px;
}

.card .discount {
  color: #f1c40f;
  font-weight: bold;
  font-size: 13px;
}

.card .new-price {
  font-size: 18px;
  font-weight: bold;
  color: #000;
  margin-bottom: 12px;
}

.card a.button {
  display: block;
  background-color: #ffc107;
  color: #000;
  text-decoration: none;
  padding: 10px;
  border-radius: 6px;
  font-weight: bold;
  transition: background 0.3s;
}

.card a.button:hover {
  background-color: #e0a800;
}
.price-and-button {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.card-button {
  background-color: #F8F7F5;
  width: 45px;
  padding: 0px;
  border-width: initial;
  border-style: none;
  border-color: initial;
  border-image: initial;
  border-radius: 8px;
  border: 0.83px solid #E9E9E9;
}
.card img {
    width: 100%;
    height: auto;
}
.sepet-button{
  display: none;
}
.web-panel-home-page.active {
    background-color: #FFCE13;
}

.web-panel-home-page.active svg path {
    fill: white;
    stroke: white;
}
@media screen and (max-width:991px) {
    .sepet-button {
    display: block;
}
.autokey-mobile-header {
      display: flex;
    }
.card-button{
  display: none;
}
.panel2{
      display: none ;
    }
  }

  @media (min-width: 769px) {
    
  }

  @media (max-width: 768px) {
    
    .page{
      width: 100% !important;
    }
    .headerWrapper {
      flex-direction: column;
      align-items: flex-start;
      padding: 15px 20px;
      gap: 16px;
    }
  
    .searchFieldContainer {
      margin: 0;
      width: 100%;
    }
  
    .headerRightSection {
      width: 100%;
      justify-content: space-between;
      flex-wrap: wrap;
    }
  
    .userProfileArea span {
      display: none; 
    }
  .headerWrapper {
      display: none;
    }

    
    .contact-row {
      align-items: flex-start;
    }
    footer {
  padding: 30px 20px;
  flex-direction: column;
  align-items: flex-start;
  gap: 30px;
}
  .footer-columns {
    flex-direction: column;
    gap: 20px;
  }

  .footer-logo-block,
  .contact-block {
    width: 100%;
    max-width: 100%;
  }

  .footer-column {
    width: 100%;
  }
  }