/* Ürün Kartı Stilleri */
.product-card {
    background: #fff;
    border-radius: 4px; /* Daha keskin köşeler için 8px'den 4px'e düşürdük */
    overflow: hidden;
    margin: 15px 0;
    box-shadow: 
      0 5px 15px rgba(0,0,0,0.08),
      0 0 0 1px rgba(241, 188, 27, 0.15);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    border: 1px solid rgba(241, 188, 27, 0.2); /* Border opacity'sini artırdık */
    height: 400px;
    display: flex;
    flex-direction: column;
  }

  .product-image {
    position: relative;
    height: 280px; /* Sabit görsel yüksekliği */
    overflow: hidden;
    background: #fff;
  }

  .product-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 10px;
    transition: all 0.3s ease;
  }

  /* Hover efekti için overlay */
  .product-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    opacity: 0;
    transition: all 0.3s ease;
  }

  .product-card:hover .product-image::after {
    opacity: 1;
  }

  /* Quick view butonu */
  .quick-view-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    width: 50px;
    height: 50px;
    border-radius: 4px; /* Butonu da köşeli yaptık */
    background: #f1bc1b;
    border: none;
    color: #fff;
    font-size: 20px;
    cursor: pointer;
    z-index: 2;
    opacity: 0;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .product-card:hover .quick-view-btn {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }

  .quick-view-btn:hover {
    background: #fff;
    color: #f1bc1b;
  }

  .product-details {
    padding: 15px;
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .product-title {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
  }

  .product-description {
    font-size: 14px;
    color: #666;
    line-height: 1.4;
    margin-bottom: 10px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    height: 40px;
  }

  .product-badges {
    display: flex;
    gap: 8px;
    margin-top: auto;
  }

  /* Badge stilleri */
  .badge-category {
    position: absolute;
    top: 15px;
    left: 15px;
    padding: 6px 15px;
    background: linear-gradient(45deg, #333, #666);
    color: #fff;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    z-index: 2;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  }

  .product-badges {
    position: absolute;
    top: 15px;
    right: 15px;
    display: flex;
    gap: 8px;
    z-index: 2;
  }

  .badge-new, .badge-popular {
    padding: 4px 12px;
    font-size: 11px;
    font-weight: 600;
    border-radius: 15px;
    display: inline-block;
    margin-right: 5px;
  }

  .badge-new {
    background: linear-gradient(45deg, #f1bc1b, #ff9f1a);
    color: #fff;
  }

  .badge-popular {
    background: linear-gradient(45deg, #ff6b6b, #ff4757);
    color: #fff;
  }

  .product-rating {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
  }

  .stars {
    color: #f1bc1b;
    font-size: 14px;
  }

  .review-count {
    font-size: 13px;
    color: #666;
  }

  .product-price {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .price {
    font-size: 20px;
    font-weight: 700;
    color: #f1bc1b;
  }

  /* Responsive Düzenlemeler */
  @media (max-width: 767px) {
    .product-card {
      margin: 10px 0;
    }
    
    .product-title {
      font-size: 16px;
    }
    
    .price {
      font-size: 18px;
    }
    
    .product-actions {
      padding: 10px;
    }
    
    .quick-view-btn, .add-to-cart-btn {
      width: 35px;
      height: 35px;
    }
  }

  /* Animasyonlar */
  @keyframes fadeInUp {
    from {
      opacity: 0;
      transform: translateY(20px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  .product-card {
    animation: fadeInUp 0.6s ease forwards;
  }

  /* Filtreleme Alanı Stilleri */
  .filter-section {
    background: #fff;
    padding: 25px 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    margin: 0 0 40px;
  }

  .filter-box {
    position: relative;
    margin-bottom: 0;
  }

  .filter-label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }

  .custom-select {
    background: #fff !important;
    width: 100%;
    font-size: 14px;
    border: 2px solid #eee;
    border-radius: 10px;
    background-color: #fff;
    color: #333;
    cursor: pointer;
    transition: all 0.3s ease;
    appearance: none;
    -webkit-appearance: none;
    background-repeat: no-repeat;
    background-position: right 15px center;
  }

  .custom-select:hover {
    border-color: #f1bc1b;
  }

  .custom-select:focus {
    outline: none;
    border-color: #f1bc1b;
    box-shadow: 0 0 0 3px rgba(241,188,27,0.1);
  }

  .total-items {
    display: flex;
    align-items: flex-end;
    height: 100%;
  }

  .found-items {
    display: inline-block;
    padding: 12px 20px;
    background: #f8f8f8;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    color: #333;
    width: 100%;
    text-align: center;
    margin-top: 24px;
  }

  /* Responsive Düzenlemeler */
  @media (max-width: 767px) {
    .filter-section {
      padding: 20px;
    }
    
    .filter-box {
      margin-bottom: 15px;
    }
    
    .found-items {
      margin-top: 0;
    }
  }

  /* Animasyonlar */
  @keyframes fadeInDown {
    from {
      opacity: 0;
      transform: translateY(-10px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  .filter-box {
    animation: fadeInDown 0.4s ease forwards;
  }

  .filter-box:nth-child(1) { animation-delay: 0.1s; }
  .filter-box:nth-child(2) { animation-delay: 0.2s; }
  .filter-box:nth-child(3) { animation-delay: 0.3s; }
  .filter-box:nth-child(4) { animation-delay: 0.4s; }

  /* Hover Efektleri */
  .custom-select option {
    padding: 10px;
  }

  .custom-select option:hover {
    background-color: #f1bc1b;
    color: #fff;
  }

  /* Select açıldığında arka plan */
  .custom-select option:checked {
    background-color: #f1bc1b;
    color: #fff;
  }

  .shop-filter {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 30px;
  }

  .shop-select {
    display: flex;
    gap: 20px;
  }

  .category-filter,
  .show-item,
  .sort-by {
    position: relative;
  }

  .title-select {
    margin-bottom: 5px;
  }

  .input-field.type-2 {
    min-width: 180px;
    padding: 10px 15px;
    border: 2px solid #eee;
    border-radius: 8px;
    background-color: #fff;
    cursor: pointer;
    transition: all 0.3s ease;
  }

  .input-field.type-2:hover,
  .input-field.type-2:focus {
    border-color: #f1bc1b;
  }

  /* Responsive düzenlemeler */
  @media (max-width: 991px) {
    .shop-filter {
      flex-direction: column;
      gap: 15px;
    }
    
    .shop-select {
      flex-wrap: wrap;
    }
    
    .category-filter,
    .show-item,
    .sort-by {
      width: 100%;
    }
  }

  /* Yeni Filter Stilleri */
  .filters-wrapper {
    background: #fff;
    padding: 25px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    margin-bottom: 40px;
  }

  .filters-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
  }

  .filter-item {
    flex: 1;
    position: relative;
  }

  .filter-label {
    font-size: 13px;
    font-weight: 600;
    color: #666;
    margin-bottom: 8px;
    display: block;
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }

  .filter-select {
    width: 100%;
    padding: 12px 20px;
    font-size: 14px;
    color: #333;
    background-color: #f8f9fa;
    border: 2px solid transparent;
    border-radius: 12px;
    appearance: none;
    cursor: pointer;
    transition: all 0.3s ease;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24'%3E%3Cpath fill='%23333' d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
  }

  .filter-select:hover {
    background-color: #fff;
    border-color: #f1bc1b;
    box-shadow: 0 5px 15px rgba(241,188,27,0.1);
  }

  .filter-select:focus {
    outline: none;
    background-color: #fff;
    border-color: #f1bc1b;
    box-shadow: 0 5px 20px rgba(241,188,27,0.15);
  }

  .total-products {
    background: linear-gradient(45deg, #f1bc1b, #ffd700);
    color: #fff;
    padding: 12px 25px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 14px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(241,188,27,0.2);
    min-width: 180px;
  }

  /* Hover efektleri */
  .filter-select option {
    background: #fff;
    color: #333;
    padding: 10px;
  }

  .filter-select option:hover {
    background-color: #f1bc1b;
    color: #fff;
  }

  /* Responsive düzenlemeler */
  @media (max-width: 991px) {
    .filters-container {
      flex-direction: column;
      gap: 15px;
    }
    
    .filter-item {
      width: 100%;
    }
    
    .total-products {
      width: 100%;
    }
  }

  /* Animasyonlar */
  @keyframes slideDown {
    from {
      opacity: 0;
      transform: translateY(-10px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  .filter-item {
    animation: slideDown 0.4s ease forwards;
  }

  .filter-item:nth-child(1) { animation-delay: 0.1s; }
  .filter-item:nth-child(2) { animation-delay: 0.2s; }
  .filter-item:nth-child(3) { animation-delay: 0.3s; }
  .filter-item:nth-child(4) { animation-delay: 0.4s; }

  .shop-filter {
    margin-bottom: 40px;
  }

  .shop-header {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 15px 20px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  }

  .found-items {
    padding: 8px 16px;
    background: #f8f9fa;
    border-radius: 8px;
    white-space: nowrap;
  }

  .found-items .simple-text p {
    margin: 0;
    font-size: 14px;
    font-weight: 500;
    color: #666;
  }

  .found-items .main-col {
    color: #f1bc1b;
    margin: 0 4px;
  }

  .filter-controls {
    display: flex;
    gap: 15px;
    flex: 1;
    justify-content: flex-end;
  }

  .custom-select-wrapper {
    width: 180px;
  }

  .select-label {
    font-size: 13px;
    font-weight: 600;
    color: #666;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }

  .custom-select {
    position: relative;
    background: #fff;
    border-radius: 8px;
  }

  .select-native {
    width: 100%;
    font-size: 14px;
    line-height: 1.5;
    color: #333;
    background: transparent;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    -webkit-appearance: none;
    appearance: none;
    cursor: pointer;
    transition: all 0.3s ease;
  }

  .select-icon {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
  }

  .select-icon svg {
    fill: #666;
  }

  .custom-select:hover .select-icon svg {
    fill: #f1bc1b;
  }

  @media (max-width: 1200px) {
    .filter-controls {
      gap: 10px;
    }
    
    .custom-select-wrapper {
      width: 160px;
    }
  }

  @media (max-width: 992px) {
    .shop-header {
      flex-wrap: wrap;
    }

    .found-items {
      width: 100%;
    }

    .filter-controls {
      width: 100%;
      justify-content: flex-start;
    }
  }

  @media (max-width: 768px) {
    .custom-select-wrapper {
      width: 100%;
    }

    .filter-controls {
      flex-direction: column;
    }

    .shop-header {
      padding: 15px;
    }
  }

  .shop-filter {
    margin: 20px 0 40px;
  }

  .shop-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    padding: 20px 30px;
    background: linear-gradient(145deg, #ffffff, #f6f6f6);
    border-radius: 16px;
    box-shadow: 5px 5px 15px #d9d9d9, -5px -5px 15px #ffffff;
  }

  .found-items {
    background: #ffffff;
    padding: 12px 24px;
    border-radius: 12px;
    box-shadow: inset 2px 2px 5px #d9d9d9, inset -2px -2px 5px #ffffff;
  }

  .found-items .simple-text p {
    margin: 0;
    font-size: 15px;
    font-weight: 600;
    color: #444;
  }

  .found-items .main-col {
    color: #f1bc1b;
    font-size: 18px;
    margin: 0 4px;
  }

  .filter-controls {
    display: flex;
    gap: 20px;
    flex: 1;
    justify-content: flex-end;
  }

  .custom-select-wrapper {
    width: 200px;
  }

  .select-label {
    font-size: 12px;
    font-weight: 600;
    color: #666;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
  }

  .custom-select {
    position: relative;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 2px 2px 5px #d9d9d9, -2px -2px 5px #ffffff;
    transition: all 0.3s ease;
  }

  .custom-select:hover {
    transform: translateY(-2px);
    box-shadow: 4px 4px 10px #d9d9d9, -4px -4px 10px #ffffff;
  }

  .select-native {
    width: 100%;
    font-size: 14px;
    line-height: 1.5;
    color: #444;
    background: transparent;
    border: 1px solid transparent;
    border-radius: 12px;
    -webkit-appearance: none;
    appearance: none;
    cursor: pointer;
    transition: all 0.3s ease;
  }


  .select-icon {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    transition: all 0.3s ease;
  }

  .select-icon svg {
    fill: #666;
    transition: all 0.3s ease;
  }

  .custom-select:hover .select-icon svg {
    fill: #f1bc1b;
  }

  @media (max-width: 1200px) {
    .filter-controls {
      gap: 10px;
    }
    
    .custom-select-wrapper {
      width: 160px;
    }
  }

  @media (max-width: 992px) {
    .shop-header {
      flex-wrap: wrap;
    }

    .found-items {
      width: 100%;
    }

    .filter-controls {
      width: 100%;
      justify-content: flex-start;
    }
  }

  @media (max-width: 768px) {
    .custom-select-wrapper {
      width: 100%;
    }

    .filter-controls {
      flex-direction: column;
    }

    .shop-header {
      padding: 15px;
    }
  }

  .hero-section {
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), 
                      url('https://images.unsplash.com/photo-1495474472287-4d71bcdd2085?q=80&w=2940&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 500px; /* Yüksekliği 350px'den 500px'e çıkardım */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 20px;
    margin-bottom: 50px;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.3); /* Overlay'i biraz daha şeffaf yaptım */
    z-index: 1;
}

.hero-content {
    max-width: 800px;
    position: relative;
    z-index: 2;
    padding: 40px; /* Padding'i biraz artırdım */
    border-radius: 10px;
    background: rgba(0,0,0,0.3);
    backdrop-filter: blur(5px);
}

.hero-title {
    color: #ffffff;
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-description {
    color: #ffffff;
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 0;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

@media (max-width: 768px) {
    .hero-section {
        height: 400px; /* Mobil için yüksekliği ayarladım */
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .hero-description {
        font-size: 16px;
    }
}

.features-section {
    padding: 80px 0;
    background: #fff;
}
.features-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}
.feature-card {
    background: #ffffff;
    padding: 40px 25px;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
    margin: 15px 0;
    border: 1px solid #eee;
    height: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding-top: 50px;
}
.feature-card:hover {
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    transform: translateY(-5px);
}
.feature-icon {
    width: 90px;
    height: 90px;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.4s ease;
    background: #f8f9fa;
}

/* Her kart için özel renkler */
.col-md-3:nth-child(1) .feature-card .feature-icon i {
    color: #e74c3c;
    padding-top: 25px;
}
.col-md-3:nth-child(2) .feature-card .feature-icon i {
    color: #3498db;
    padding-top: 25px;
}
.col-md-3:nth-child(3) .feature-card .feature-icon i {
    color: #2ecc71;
    padding-top: 25px;
}
.col-md-3:nth-child(4) .feature-card .feature-icon i {
    color: #9b59b6;
    padding-top: 25px;
}

/* Hover durumunda ikon arka planları */
.col-md-3:nth-child(1) .feature-card:hover .feature-icon {
    background: #e74c3c;
}
.col-md-3:nth-child(2) .feature-card:hover .feature-icon {
    background: #3498db;
}
.col-md-3:nth-child(3) .feature-card:hover .feature-icon {
    background: #2ecc71;
}
.col-md-3:nth-child(4) .feature-card:hover .feature-icon {
    background: #9b59b6;
}

.feature-icon i {
    font-size: 35px;
    transition: all 0.4s ease;
}

.feature-card:hover .feature-icon i {
    color: #ffffff !important;
    transform: scale(1.1);
}

.feature-title {
    font-size: 22px;
    color: #2c3e50;
    margin-bottom: 20px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.feature-text {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
    margin: 0;
    max-width: 250px;
}

.modal-content {
    border: none;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  }
  
  .modal-header {
    border-bottom: 1px solid #eee;
    padding: 20px 30px;
  }
  
  .modal-body {
    padding: 30px;
  }
  
  .modal-product-image {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
  }
  
  .modal-product-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
  }
  
  .modal-product-details h3 {
    color: #333;
    font-size: 24px;
    font-weight: 600;
  }
  
  .price-label, .rating-label {
    color: #666;
    font-size: 14px;
    margin-right: 10px;
  }
  
  .price-value {
    color: #f1bc1b;
    font-size: 24px;
    font-weight: 600;
  }
  
  .rating-stars {
    color: #f1bc1b;
    font-size: 18px;
  }
  
  .review-count {
    color: #666;
    font-size: 14px;
    margin-left: 10px;
  }
  
  .description h6, .sizes h6 {
    color: #333;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 10px;
  }
  
  .description p {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
  }
  
  .size-options {
    display: flex;
    gap: 10px;
  }
  
  .size-option {
    padding: 8px 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 14px;
    color: #666;
    cursor: pointer;
    transition: all 0.3s ease;
  }
  
  .size-option:hover {
    border-color: #f1bc1b;
    color: #f1bc1b;
  }

  .quick-view-btn {
    background: rgb(241, 188, 27);
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    right: 10px;
    z-index: 2;
}

.quick-view-btn:hover {
    background: rgb(241, 188, 27);
    color: white;
}

.product-actions {
    position: absolute;
    top: 50%;
    right: 47.5%;
    padding: 10px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-card:hover .product-actions {
    opacity: 1;
}
.quick-view-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
  }
  
  .quick-view-overlay.active {
    opacity: 1;
    visibility: visible;
  }
  
  .quick-view-modal {
    background: #fff;
    width: 90%;
    max-width: 650px;
    padding: 25px;
    border-radius: 15px;
    position: relative;
    border: 1px solid rgba(241, 188, 27, 0.3); /* Border opaklığını artırdık */
    box-shadow: 
      0 5px 15px rgba(0,0,0,0.1),
      0 0 0 2px rgba(241, 188, 27, 0.2); /* Glow efektini artırdık */
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  }
  
  .quick-view-modal::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 15px;
    padding: 2px; /* Border kalınlığını artırdık */
    background: linear-gradient(
      45deg,
      rgba(241, 188, 27, 0.3) 0%, /* Gradient opaklığını artırdık */
      rgba(241, 188, 27, 0.4) 50%,
      rgba(241, 188, 27, 0.3) 100%
    );
    -webkit-mask: 
      linear-gradient(#fff 0 0) content-box, 
      linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    animation: modalBorderGlow 3s linear infinite; /* Animasyon süresini artırdık */
  }
  
  @keyframes modalBorderGlow {
    0% {
      background-position: 0% 50%;
      opacity: 0.8;
    }
    50% {
      background-position: 100% 50%;
      opacity: 1;
    }
    100% {
      background-position: 0% 50%;
      opacity: 0.8;
    }
  }
  
  .quick-view-overlay.active .quick-view-modal {
    transform: translateY(0) scale(1);
    opacity: 1;
    box-shadow: 
      0 15px 40px rgba(0,0,0,0.15),
      0 0 0 2px rgba(241, 188, 27, 0.25);
  }
  
  .quick-view-close {
    position: absolute;
    top: -12px;
    right: -12px;
    width: 28px;
    height: 28px;
    background: #fff;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    transition: all 0.3s ease;
    z-index: 2;
  }
  
  .quick-view-close:hover {
    transform: rotate(90deg);
    background: #f1bc1b;
    color: #fff;
  }
  
  .quick-view-image {
    width: 100%;
    height: 280px; /* Yüksekliği azalttık */
    background: #f8f9fa;
    border-radius: 12px;
    padding: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .quick-view-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
  }
  
  /* Başlık ve açıklama */
  .quick-view-title {
    font-size: 24px;
    font-weight: 600;
    color: #333;
    margin: 15px 0 10px;
    text-align: center;
  }
  
  .quick-view-description {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
    text-align: center;
    margin-bottom: 20px;
    padding: 0 15px;
  }
  
  /* Badge'ler */
  .product-badges {
    position: absolute;
    top: 15px;
    right: 15px;
    display: flex;
    gap: 8px;
    z-index: 2;
  }
  
  .badge-new, .badge-popular {
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 11px;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  }
  
  /* İçerik bölümü */
  .product-specs {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-top: 10px;
  }
  
  .spec-group {
    background: #f8f9fa;
    padding: 15px;
    border-radius: 10px;
  }
  
  .spec-title {
    font-size: 13px;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
  }
  
  .spec-content {
    font-size: 12px;
    color: #666;
    line-height: 1.5;
  }
  
  /* Responsive */
  @media (max-width: 768px) {
    .quick-view-modal {
      width: 95%;
      padding: 20px;
    }
    
    .quick-view-image {
      height: 250px;
    }
    
    .product-specs {
      grid-template-columns: 1fr;
    }
  }

  .categories-section {
    padding: 60px 0;
    background: #f8f9fa;
}

.section-title {
    font-size: 32px;
    color: #333;
    margin-bottom: 15px;
}

.section-description {
    font-size: 16px;
    color: #666;
    margin-bottom: 40px;
}

.mb-5 {
    margin-bottom: 3rem;
}

.product-card::after {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(45deg, 
    #f1bc1b 0%, 
    transparent 50%, 
    #f1bc1b 100%
  );
  border-radius: 4px;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
  z-index: -1;
}

.product-card:hover::after {
  opacity: 0.1;
}

/* Opsiyonel: Köşelerde parlama efekti */
.product-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 4px;
  padding: 1px;
  background: linear-gradient(
    45deg,
    rgba(241, 188, 27, 0.15) 0%, /* Başlangıç opaklığını artırdık */
    rgba(241, 188, 27, 0.2) 50%, /* Orta opaklığı artırdık */
    rgba(241, 188, 27, 0.15) 100%
  );
  -webkit-mask: 
    linear-gradient(#fff 0 0) content-box, 
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.product-card:hover {
  border-color: transparent;
  transform: translateY(-5px);
  box-shadow: 
    0 10px 25px rgba(0,0,0,0.1),
    0 0 0 2px rgba(241, 188, 27, 0.2);
}

.product-card:hover::before {
  background: linear-gradient(
    45deg,
    rgba(241, 188, 27, 0.1) 0%,
    rgba(241, 188, 27, 0.3) 50%,
    rgba(241, 188, 27, 0.1) 100%
  );
  animation: borderGlow 2s linear infinite;
}

@keyframes borderGlow {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}