/** Shopify CDN: Minification failed

Line 97:21 Expected identifier but found whitespace
Line 97:23 Unexpected "{"
Line 97:33 Expected ":"

**/
/* Metin animasyonu */
@keyframes textReveal {
  0% { 
    clip-path: inset(0 100% 0 0); 
    opacity: 0;
  }
  100% { 
    clip-path: inset(0 0 0 0);
    opacity: 1;
  }
}

/* Flash sale badge animasyonu */
@keyframes flashBadgePulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}

.flash-sale-badge {
  animation: flashBadgePulse 2s infinite;
  transition: all 0.3s ease;
}

.flash-sale-badge:hover {
  transform: scale(1.1);
}

/* Arka plan animasyonu */
@keyframes backgroundReveal {
  0% { 
    transform: translateX(-100%);
  }
  100% { 
    transform: translateX(0);
  }
}

/* Masaüstü için quick-add-form-container animasyonu */
@media (min-width: 768px) {
  /* Başlangıçta görünmez durumda */
  .quick-view-container {
    opacity: 0 !important;
    visibility: hidden !important;
    transform: translateY(8px);
  }
  
  /* Quick-add-text elementi başlangıçta tamamen gizli olsun */
  .quick-add-text {
    display: none !important;
    opacity: 0 !important;
    max-width: 0 !important;
    visibility: hidden !important;
    overflow: hidden;
  }
  
  /* Grup hover durumunda görünür hale gelir */
  .group:hover .quick-view-container {
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateY(0);
    transition: 
      opacity 0.4s ease-in,
      visibility 0s linear 0s,
      transform 0.4s ease-in;
  }
  
  /* Sepete ekle butonu genişleme animasyonu */
  .js-ajax-cart-btn {
    position: relative;
    overflow: hidden;
    background-color: transparent;
    z-index: 1;
    transition: width 0.8s ease-in-out, padding-right 0.8s ease-in-out;
  }
  
  .js-ajax-cart-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: {{ settings.button_add_to_cart_bg_color | default: '#D6C3A2' }};
    z-index: -1;
    transform: translateX(-100%);
    transition: transform 0s;
  }
  
  .js-ajax-cart-btn:hover {
    width: 150px;
    padding-right: 1rem;
  }
  
  .js-ajax-cart-btn:hover::before {
    animation: backgroundReveal 0.4s ease-in-out forwards;
  }
  
  /* Sepete ekle yazısının görünme animasyonu */
  .js-ajax-cart-btn:hover .quick-add-text {
    display: inline-block !important;
    opacity: 1 !important;
    max-width: 200px !important;
    visibility: visible !important;
    animation: textReveal 0.4s ease-in-out forwards;
  }
}

@keyframes textAppear {
  0% { 
    clip-path: inset(0 100% 0 0);
    opacity: 0;
  }
  100% { 
    clip-path: inset(0 0 0 0);
    opacity: 1;
  }
}

/* Yeni ters animasyonlu buton */
.bookmarkBtn {
  width: 40px;
  height: 40px;
  border-radius: 40px;
  border: 1px solid rgba(255, 255, 255, 0.349);
  background-color: rgb(12, 12, 12);
  display: flex;
  align-items: center;
  justify-content: flex-start;
  
  cursor: pointer;
  transition-duration: 0.6s;
  overflow: hidden;
}

.IconContainer {
  width: 35px;
  height: 35px;
  background: #D6C3A2;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  z-index: 2;
  transition-duration: 0.6s;
}

.IconContainer svg {
  width: 24px;
  height: 24px;
  color: white;
}

.icon {
  border-radius: 1px;
}

.bookmark-text {
  height: 100%;
  width: 0px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding-left: 1px;
  color: white;
  z-index: 1;
  transition-duration: 0.6s;
  font-size: 0;
  opacity: 0;
  white-space: nowrap;
}

.bookmarkBtn:hover .IconContainer {
  width: 30px;
}

.bookmarkBtn:hover {
  width: 150px;
}

.bookmarkBtn:hover .bookmark-text {
  transform: translateX(8px);
  width: 100px;
  opacity: 1;
  font-size: 0.96em;
  transition-duration: 0.6s;
}

.bookmarkBtn:active {
  transform: scale(0.95);
  transition-duration: 0.3s;
}

/* Mobil ekranlar için sepet ikonu ve yazı düzenlemeleri */
@media (max-width: 767px) {
  .bookmarkBtn {
    width: 35px !important;
    height: 35px !important;
    padding-left: 2px !important;
  }
  
  .IconContainer {
    width: 35px !important;
    height: 35px !important;
  }
  
  .IconContainer svg {
    width: 24px !important;
    height: 24px !important;
  }
  
  .bookmark-text {
    font-size: 12px !important;
  }
  
  .bookmarkBtn:hover {
    width: 150px !important;
  }
  
  .bookmarkBtn:hover .bookmark-text {
    width: 70px !important;
  }
}
