/* Modern website styles */
:root {
  --primary-color: #333;
  --accent-color: #ff6b6b;
  --light-gray: #f8f8f8;
  --gray: #ccc;
  --dark-gray: #666;
  --white: #fff;
  
  /* FAQ Category Colors */
  --genel: #667eea;
  --toptan: #ff6b6b;
  --kargo: #4ECDC4;
  --iade: #f9ca24;
  --uye: #e84393;
  --odeme: #6c5ce7;
}

/* Reset ve genel stiller */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Inter', sans-serif;
}

html, body {
  overflow-x: hidden;
  width: 100%;
  max-width: 100%;
}

body {
  font-family: 'Inter', sans-serif;
  line-height: 1.6;
  min-height: 100vh;
  background-color: var(--light-gray);
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  width: 100%;
  max-width: 100%;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  text-decoration: none;
  color: var(--primary-color);
  transition: color 0.3s;
}

ul {
  list-style: none;
}

.container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 15px;
  box-sizing: border-box;
}

/* Main wrapper */
.main-wrapper {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 15px;
  box-sizing: border-box;
}

/* Content area */
.content-area {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 20px 15px;
  box-sizing: border-box;
}

/* Top Bar Styles */
.top-bar {
  background-color: #000;
  color: #fff;
  padding: 8px 0;
  font-size: 14px;
  display: block;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

.top-bar .container {
  display: flex;
  justify-content: space-between;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 15px;
  box-sizing: border-box;
}

.top-bar-left, .top-bar-right {
  display: flex;
  align-items: center;
}

.top-bar a {
  color: #fff;
  margin-right: 15px;
  display: flex;
  align-items: center;
  text-decoration: none;
}

.top-bar a i {
  margin-right: 5px;
}

/* Promo Banner Styles */
.promo-banner {
  padding: 0;
  margin: 0;
  line-height: 0;
  display: block;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

.promo-banner img {
  width: 100%;
  height: auto;
  display: block;
  padding: 0;
  margin: 0;
}

/* Header */
.main-header {
  padding: 15px 0;
  background-color: var(--white);
  border-bottom: 1px solid var(--gray);
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

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

.logo img {
  height: 40px;
  }

.search-box {
  flex-grow: 1;
  margin: 0 20px;
  position: relative;
  isolation:isolate; /* ensure pseudo stays behind */
}

.search-box input {
  width: 260px;
  max-width: 100%;
  transition: width 0.4s ease, box-shadow 0.4s ease;
  padding: 10px 45px 10px 15px;
  border: 1px solid var(--gray);
  border-radius: 4px;
  font-size: 14px;
}

.search-box input:focus {
  width: 100%;
}

/* Rainbow border effect */
.search-box::before {
  content: "";
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  border-radius: 6px;
  background: linear-gradient(45deg, red, orange, yellow, lime, cyan, blue, violet, red);
  background-size: 400% 400%;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.3s;
}

.search-box:focus-within::before {
  opacity: 1;
  animation: rainbow 8s linear infinite;
}

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

.search-box button {
  position: absolute;
  right: 5px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: var(--dark-gray);
  cursor: pointer;
  font-size: 18px;
}

.header-icons {
  display: flex;
  align-items: center;
}

.header-icon {
  margin-left: 20px;
  position: relative;
  color: var(--primary-color);
  font-size: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow: visible;
  padding: 5px;
}

.header-icon span {
  font-size: 12px;
  margin-top: 5px;
}

.icon-badge {
  position: absolute;
  top: -8px;
  right: -8px;
  background: linear-gradient(135deg, #ff4757 0%, #ff3742 100%);
  color: white;
  font-size: 12px;
  min-width: 22px;
  height: 22px;
  border-radius: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  box-shadow: 0 4px 12px rgba(255, 71, 87, 0.4);
  border: 2px solid white;
  z-index: 15;
  line-height: 1;
  text-align: center;
  padding: 0 6px;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  letter-spacing: -0.5px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes badgePulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.1); }
  100% { transform: scale(1); }
}

/* Mega Menu */
.mega-menu {
  background-color: var(--white);
  border-bottom: 1px solid var(--gray);
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

.nav-list {
  display: flex;
  justify-content: center;
  list-style: none;
  margin: 0;
  padding: 0;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  box-sizing: border-box;
}

.nav-item {
  position: relative;
  margin: 0;
  padding: 0;
}

.nav-link {
  display: block;
  padding: 15px 20px;
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
  white-space: nowrap;
}

.nav-link:hover {
  color: var(--accent-color);
}

.nav-item:hover .dropdown-menu {
  display: block;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background-color: var(--white);
  border: 1px solid var(--gray);
  border-radius: 4px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  min-width: 200px;
  z-index: 1000;
  display: none;
  max-width: 100vw;
  box-sizing: border-box;
}

/* Hero Slider */
.hero-slider {
  position: relative;
  width: 100%;
  max-width: 100%;
  height: 500px;
  overflow: hidden;
  box-sizing: border-box;
}

.slider-item {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.5s ease;
  display: none;
  box-sizing: border-box;
}

.slider-item.active {
  opacity: 1;
  display: block;
}

.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.8);
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 10;
  transition: background 0.3s;
  box-sizing: border-box;
}

.slider-arrow:hover {
  background: rgba(255,255,255,1);
}

.slider-arrow.left { left: 10px; }
.slider-arrow.right { right: 10px; }

.slider-dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255,255,255,0.5);
  cursor: pointer;
  transition: background 0.3s;
  border: none;
  box-sizing: border-box;
}

.dot.active {
  background: rgba(255,255,255,1);
}

.slider-content {
  position: absolute;
  left: 50px;
  top: 50%;
  transform: translateY(-50%);
  max-width: 500px;
}

.slider-title {
  font-size: 48px;
  font-weight: bold;
  margin-bottom: 15px;
  color: var(--primary-color);
}

.slider-subtitle {
  font-size: 20px;
  color: var(--dark-gray);
  margin-bottom: 30px;
}

.slider-btn {
  display: inline-block;
  background-color: var(--accent-color);
  color: var(--white);
  padding: 10px 30px;
  border-radius: 4px;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 14px;
}

/* Category Grid */
.category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin: 40px 0;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

.category-item {
  background: var(--white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  transition: transform 0.3s;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

.category-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.3s;
  box-sizing: border-box;
}

.category-item:hover .category-img {
  transform: scale(1.05);
}

.category-title {
  padding: 15px;
  text-align: center;
  font-weight: 600;
  color: var(--primary-color);
  box-sizing: border-box;
}

/* Banner */
.banner {
  position: relative;
  height: 400px;
  margin-bottom: 30px;
}

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

.banner-content {
    position: absolute;
  left: 50px;
  bottom: 50px;
  max-width: 400px;
}

.banner-title {
  font-size: 36px;
  font-weight: bold;
  color: var(--white);
  margin-bottom: 10px;
  text-shadow: 1px 1px 3px rgba(0,0,0,0.8);
}

.banner-subtitle {
  font-size: 18px;
  color: var(--white);
  margin-bottom: 20px;
  text-shadow: 1px 1px 3px rgba(0,0,0,0.8);
}

.banner-price {
  font-size: 24px;
  font-weight: bold;
  color: var(--white);
  margin-bottom: 10px;
  text-shadow: 1px 1px 3px rgba(0,0,0,0.8);
}

/* Trust Badges */
.trust-badges {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  margin-bottom: 30px;
  background-color: var(--light-gray);
}

.trust-badge img {
  height: 40px;
  opacity: 0.7;
  transition: opacity 0.3s;
}

.trust-badge img:hover {
  opacity: 1;
}

/* Footer */
.footer {
  width: 100vw;
  max-width: 100vw;
  margin: 0;
  left: 50%;
  right: 50%;
  position: relative;
  margin-left: -50vw;
  margin-right: -50vw;
  background-color: #000;
  color: var(--white);
  padding: 30px 0 15px;
}

.footer-content {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 0 20px;
  gap: 25px;
}

.footer-column {
  flex: 1 1 250px;
  min-width: 200px;
  margin-bottom: 20px;
  text-align: left;
}

.footer-title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 20px;
  text-transform: uppercase;
  text-align: left;
}

.footer-links {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.footer-link {
  color: #aaa;
  margin-bottom: 10px;
  font-size: 14px;
  transition: color 0.3s;
}

.footer-link:hover {
  color: var(--white);
}

.copyright {
  text-align: center;
  padding: 20px 20px 0;
  margin: 0 auto;
  max-width: 1200px;
  border-top: 1px solid #333;
  font-size: 12px;
  color: #aaa;
}

/* Slick slider custom styles */
.slick-prev, .slick-next {
  z-index: 1;
  width: 40px;
  height: 40px;
}

.slick-prev {
  left: 20px;
}

.slick-next {
  right: 20px;
}

.slick-prev:before, .slick-next:before {
  font-size: 40px;
}

.slick-dots {
  bottom: 20px;
}

.slick-dots li button:before {
  font-size: 12px;
  color: var(--white);
}

/* Mega Menü Başlıkları (dropdown-header) */
.dropdown-header {
  color: #ff7043 !important;
  font-size: 15px !important;
  font-weight: 700 !important;
  margin-bottom: 12px !important;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-family: 'Poppins', 'Inter', sans-serif;
}

/* Mega Menü Alt Kategoriler */
.dropdown-list a {
  color: #222 !important;
  font-size: 14px !important;
  font-weight: 400;
  padding: 6px 0 6px 0 !important;
  line-height: 1.7 !important;
  transition: color 0.2s;
}
.dropdown-list a:hover {
  color: #ff7043 !important;
  text-decoration: underline;
}

/* Mega Menü Sütunlar */
.mega-dropdown-column {
  min-width: 110px;
  padding: 0 6px 0 0 !important;
}

/* Mega Menü Arka Plan ve Gölge */
.mega-dropdown {
  background: #fff !important;
  box-shadow: 0 8px 32px rgba(44,52,54,0.13) !important;
  border-radius: 0 0 18px 18px !important;
  border-top: 2px solid #ff7043 !important;
  padding: 16px 0 12px 0 !important;
}

/* Mega menü genişliği ve taşma düzeltmesi */
.mega-dropdown {
  width: auto !important;
  max-width: none !important;
  left: 0 !important;
  transform: none !important;
  overflow-x: visible !important;
  min-width: 0 !important;
}
.mega-dropdown-content {
  padding: 20px;
}

/* Mega Menü Satır Aralığı */
.category-group {
  gap: 0 24px;
}

.category-group {
  display: flex;
  flex-wrap: nowrap;
  align-items: flex-start;
  gap: 0 24px;
}

.sub-menu-content-header {
  color: #ff7043;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-family: 'Poppins', 'Inter', sans-serif;
}

/* Responsive styles */
@media (max-width: 1400px) {
  .container {
    max-width: 1200px;
  }
  
  .hero-slider {
    height: 400px;
  }
  
  .static-images {
    height: 200px;
  }
  
  .category-cards {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 1200px) {
  .container {
    max-width: 960px;
    padding: 0 15px;
  }
  
  .hero-slider {
    height: 400px;
  }
  
  .static-images {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .category-cards {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 992px) {
  .category-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .slider-title {
    font-size: 24px;
  }
  
  .header-content {
    flex-direction: column;
    gap: 15px;
  }
  
  .search-box {
    width: 100%;
    max-width: 400px;
  }
  
  .nav-list {
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .nav-link {
    padding: 10px 15px;
    font-size: 14px;
  }
}

@media (max-width: 768px) {
  .header-content {
    flex-direction: column;
    gap: 10px;
  }
  
  .search-box {
    width: 100%;
    max-width: 300px;
  }
  
  .header-icons {
    gap: 10px;
  }
  
  .slider-content {
    padding: 20px;
  }
  
  .slider-title {
    font-size: 20px;
  }
  
  .slider-subtitle {
    font-size: 14px;
  }
  
  .category-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  
  .category-cards {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .footer-content {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }
  
  .footer-column {
    margin-bottom: 20px;
  }
  
  .copyright {
    text-align: center;
  }
  
  .nav-list {
    flex-direction: column;
    align-items: center;
  }
  
  .nav-link {
    padding: 8px 12px;
    font-size: 13px;
  }
  
  .mega-menu {
    display: none;
  }
  
  .dropdown-menu {
    position: static;
    box-shadow: none;
    border: none;
    display: none;
  }
}

@media (max-width: 600px) {
  .top-bar {
    padding: 5px 0;
  }
  
  .top-bar .container {
    flex-direction: column;
    gap: 5px;
    text-align: center;
  }
  
  .top-bar-left, .top-bar-right {
    justify-content: center;
  }
  
  .logo {
    margin-bottom: 10px;
  }
  
  .search-box input {
    width: 100%;
    max-width: 250px;
  }
  
  .hero-slider {
    height: 300px;
  }
  
  .slider-title {
    font-size: 18px;
  }
  
  .slider-subtitle {
    font-size: 12px;
  }
  
  .category-item {
    margin-bottom: 15px;
  }
  
  .category-title {
    font-size: 16px;
  }
  
  .banner {
    padding: 20px;
  }
  
  .banner-title {
    font-size: 20px;
  }
  
  .banner-subtitle {
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 10px;
  }
  
  .hero-slider {
    height: 250px;
  }
  
  .slider-title {
    font-size: 16px;
  }
  
  .slider-subtitle {
    font-size: 11px;
  }
  
  .category-item {
    margin-bottom: 10px;
  }
  
  .category-title {
    font-size: 14px;
  }
  
  .banner {
    padding: 15px;
  }
  
  .banner-title {
    font-size: 18px;
  }
}

@media (max-width: 320px) {
  .container {
    padding: 0 5px;
  }
  
  .logo {
    margin-bottom: 5px;
  }
  
  .search-box input {
    width: 100%;
    max-width: 200px;
  }
  
  .hero-slider {
    height: 200px;
  }
  
  .slider-title {
    font-size: 14px;
  }
  
  .slider-subtitle {
    font-size: 10px;
  }
  
  .category-item {
    margin-bottom: 8px;
  }
  
  .category-title {
    font-size: 12px;
  }
  
  .banner {
    padding: 10px;
  }
  
  .banner-title {
    font-size: 16px;
  }
}

/* Slider override */
.hero-slider {
  position: relative;
  width: 100%;
  max-width: 960px;
  height: 400px;
  margin: 0 auto;
  overflow: hidden;
  display: block;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  border-radius: 4px;
}
.hero-slider .slider-item {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transform: scale(1.08);
  transition: opacity 0.8s ease, transform 6s ease;
}
.hero-slider .slider-item.active { opacity: 1; transform: scale(1); }
.hero-slider .slider-item img { width: 100%; height: 100%; object-fit: cover; }

.static-images {
  width: 100%;
  max-width: 960px;
  margin: 30px auto;
}
.static-item {
  width: 100%;
  height: 400px;
  overflow: hidden;
  border-radius: 4px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  margin-bottom: 30px;
}
.static-item img{width:100%;height:100%;object-fit:cover;}

/* Category Cards */
.category-cards {
  width: 100%;
  max-width: 960px;
  margin: 30px auto;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px,1fr));
  gap: 20px;
}
.category-card {
  position: relative;
  overflow: hidden;
  border-radius: 6px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  cursor: pointer;
}
.category-card img{
  width:100%;
  height:auto;
  display:block;
  object-fit:contain;
  transition:transform 0.5s ease;
}
.category-card:hover img{transform:scale(1.05);}
/* category titles hidden as text on images */
.category-card h3{display:none;
  position:absolute;
  bottom:15px;
  left:15px;
  margin:0;
  color:#fff;
  font-size:24px;
  font-weight:600;
  text-shadow:1px 1px 3px rgba(0,0,0,0.8);
}

/* Responsive düzeltme */
@media (max-width: 992px) {
  .mega-dropdown {
    box-shadow: 0 4px 16px rgba(44,52,54,0.13) !important;
    padding: 18px 0 10px 0 !important;
  }
  .mega-dropdown-column {
    min-width: 120px;
    padding: 0 10px 0 0 !important;
  }
} 

/* Sadece kadın menüsü için soldan başlat */
.nav-item:nth-child(2) .mega-dropdown {
  left: 0 !important;
  right: auto !important;
  transform: none !important;
  min-width: unset !important;
  max-width: 100vw !important;
  width: auto !important;
} 

.hero-slider .slider-item { display: none; }
.hero-slider .slider-item.active { display: block; }

/* Semantic Badge Classes for Shipment Status */
.badge-shipped   { background: #17a2b81a; color: #17a2b8; }
.badge-intransit { background: #ffc1071a; color: #ffc107; }
.badge-delivered { background: #28a7451a; color: #28a745; }
.badge-problem   { background: #dc35451a; color: #dc3545; }
.hero-slider .slider-item img { width: 100%; height: 500px; object-fit: cover; }

/* FAQ Accordion Styles */
.faq-section {
  padding: 40px 0;
  background-color: var(--light-gray);
}

.faq-container {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 20px;
}

.faq-title {
  text-align: center;
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 40px;
  color: var(--primary-color);
}

/* Accordion Wrapper */
.faq-accordion {
  margin-bottom: 20px;
}

/* Category-specific accordion styling */
.accordion-item {
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.25s, box-shadow 0.25s;
}

.accordion-item:hover {
  transform: translateY(-3px);
}

/* Accordion Headers with category colors */
.accordion-header {
  position: relative;
  padding: 20px 25px;
  cursor: pointer;
  font-weight: 600;
  font-size: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
  border-left: 5px solid;
}

/* Category-specific colors for headers */
.accordion-item[data-category="genel"] .accordion-header {
  background-color: var(--genel);
  border-left-color: var(--genel);
  color: white;
}

.accordion-item[data-category="toptan"] .accordion-header {
  background-color: var(--toptan);
  border-left-color: var(--toptan);
  color: white;
}

.accordion-item[data-category="kargo"] .accordion-header {
  background-color: var(--kargo);
  border-left-color: var(--kargo);
  color: white;
}

.accordion-item[data-category="iade"] .accordion-header {
  background-color: var(--iade);
  border-left-color: var(--iade);
  color: white;
}

.accordion-item[data-category="uye"] .accordion-header {
  background-color: var(--uye);
  border-left-color: var(--uye);
  color: white;
}

.accordion-item[data-category="odeme"] .accordion-header {
  background-color: var(--odeme);
  border-left-color: var(--odeme);
  color: white;
}

/* Hover glow effect */
.accordion-item[data-category="genel"]:hover {
  box-shadow: 0 8px 24px rgba(102, 126, 234, 0.3);
}

.accordion-item[data-category="toptan"]:hover {
  box-shadow: 0 8px 24px rgba(255, 107, 107, 0.3);
}

.accordion-item[data-category="kargo"]:hover {
  box-shadow: 0 8px 24px rgba(78, 205, 196, 0.3);
}

.accordion-item[data-category="iade"]:hover {
  box-shadow: 0 8px 24px rgba(249, 202, 36, 0.3);
}

.accordion-item[data-category="uye"]:hover {
  box-shadow: 0 8px 24px rgba(232, 67, 147, 0.3);
}

.accordion-item[data-category="odeme"]:hover {
  box-shadow: 0 8px 24px rgba(108, 92, 231, 0.3);
}

/* Accordion toggle icon */
.accordion-toggle {
  font-size: 20px;
  transition: transform 0.3s ease;
}

.accordion-item.active .accordion-toggle {
  transform: rotate(180deg);
}

/* Accordion Content - white card with subtle shadow */
.accordion-content {
  padding: 0;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  background-color: white;
}

.accordion-item.active .accordion-content {
  max-height: 500px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.accordion-body {
  padding: 25px;
  line-height: 1.6;
  color: var(--dark-gray);
  background-color: white;
}

/* FAQ Category Filter Buttons */
.faq-categories {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 40px;
}

.category-btn {
  padding: 10px 20px;
  border: none;
  border-radius: 25px;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
  background-color: white;
  color: var(--primary-color);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.category-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.category-btn.active {
  color: white;
}

/* Category-specific active button colors */
.category-btn[data-category="all"].active {
  background-color: var(--primary-color);
}

.category-btn[data-category="genel"].active {
  background-color: var(--genel);
}

.category-btn[data-category="toptan"].active {
  background-color: var(--toptan);
}

.category-btn[data-category="kargo"].active {
  background-color: var(--kargo);
}

.category-btn[data-category="iade"].active {
  background-color: var(--iade);
}

.category-btn[data-category="uye"].active {
  background-color: var(--uye);
}

.category-btn[data-category="odeme"].active {
  background-color: var(--odeme);
}

/* Responsive FAQ styles */
@media (max-width: 768px) {
  .faq-title {
    font-size: 28px;
    margin-bottom: 30px;
  }
  
  .accordion-header {
    padding: 15px 20px;
    font-size: 15px;
  }
  
  .accordion-body {
    padding: 20px;
  }
  
  .faq-categories {
    gap: 10px;
  }
  
  .category-btn {
    padding: 8px 16px;
    font-size: 13px;
  }
}

@media (max-width: 480px) {
  .faq-title {
    font-size: 24px;
  }
  
  .accordion-header {
    padding: 12px 15px;
    font-size: 14px;
  }
  
  .accordion-toggle {
    font-size: 16px;
  }
}

/* Cart Badge Animation */
.animate-badge {
  animation: badgePulse 0.3s ease-in-out;
}

.icon-badge:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 16px rgba(255, 71, 87, 0.6);
  background: linear-gradient(135deg, #ff3742 0%, #ff2233 100%);
}

.header-icon:hover .icon-badge {
  animation: badgeWiggle 0.6s ease-in-out;
}

@keyframes badgePulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.2); }
  100% { transform: scale(1); }
}

@keyframes badgeWiggle {
  0%, 100% { transform: rotate(0deg) scale(1); }
  25% { transform: rotate(-5deg) scale(1.05); }
  75% { transform: rotate(5deg) scale(1.05); }
}

/* YENİ GELENLER gökkuşağı kayan animasyon */
.yeni-gelenler-animasyon {
  background: linear-gradient(90deg, #ff0000, #ff9900, #33cc33, #3399ff, #9900cc, #ff0000);
  background-size: 400% 400%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  animation: rainbow 3s linear infinite;
}
@keyframes rainbow {
  0% { background-position: 0% 50%; }
  100% { background-position: 100% 50%; }
}
