@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&display=swap');

:root {
  --alizarin-crimson-50: #fef2f2;
  --alizarin-crimson-100: #fee2e2;
  --alizarin-crimson-200: #fecaca;
  --alizarin-crimson-300: #fca5a5;
  --alizarin-crimson-400: #f87171;
  --alizarin-crimson-500: #ef4444;
  --alizarin-crimson-600: #dc2626;
  --alizarin-crimson-700: #b91c1c;
  --alizarin-crimson-800: #991b1b;
  --alizarin-crimson-900: #7f1d1d;
  --alizarin-crimson-950: #450a0a;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  line-height: 1.6;
  color: #111;
  background-color: #fff;
}

/* Dark mode styles */
.dark {
  color: #eee;
  background-color: #000;
}

/* Base styles */
.bg-white\/85 {
  background-color: rgba(255, 255, 255, 0.85);
}

.dark .bg-black\/85 {
  background-color: rgba(0, 0, 0, 0.85);
}

.backdrop-blur-lg {
  backdrop-filter: blur(16px);
}

.backdrop-blur-xl {
  backdrop-filter: blur(24px);
}

.backdrop-blur-sm {
  backdrop-filter: blur(4px);
}

/* Utility classes */
.xs\:grid-cols-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.xl-2\:grid-cols-6 {
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

.xl-3\:grid-cols-7 {
  grid-template-columns: repeat(7, minmax(0, 1fr));
}

@media (min-width: 1536px) {
  .xl-2\:grid-cols-6 {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }
}

@media (min-width: 1920px) {
  .xl-3\:grid-cols-7 {
    grid-template-columns: repeat(7, minmax(0, 1fr));
  }
}

/* Cart button bezel effect */
.cart-button-bezel {
  box-shadow: inset 0 -1px 1px 0 rgba(0, 0, 0, 0.05), inset 0 1px 0 0 rgba(255, 255, 255, 0.15);
}

/* Dropdown animations */
.dropdown-enter-active,
.dropdown-leave-active {
  transition: all 0.2s ease;
}

.dropdown-enter-from,
.dropdown-leave-to {
  opacity: 0;
  transform: translateY(-10px) scale(0.95);
}

/* Loading skeleton */
.skeleton {
  animation: skeleton-loading 1s linear infinite alternate;
}

@keyframes skeleton-loading {
  0% {
    background-color: rgba(0, 0, 0, 0.1);
  }
  100% {
    background-color: rgba(0, 0, 0, 0.2);
  }
}

.dark .skeleton {
  animation: skeleton-loading-dark 1s linear infinite alternate;
}

@keyframes skeleton-loading-dark {
  0% {
    background-color: rgba(255, 255, 255, 0.1);
  }
  100% {
    background-color: rgba(255, 255, 255, 0.2);
  }
}

/* Product card hover effects */
.group:hover .group-hover\:opacity-0 {
  opacity: 0;
}

/* Icon color overrides */
svg[stroke="currentColor"] {
  stroke: #5F5F5F !important;
}

svg[fill="currentColor"] {
  fill: #5F5F5F !important;
}

/* Dark mode icon colors */
.dark svg[stroke="currentColor"] {
  stroke: #b7b7b7 !important;
}

.dark svg[fill="currentColor"] {
  fill: #b7b7b7 !important;
}

/* Notification animations */
.notification-enter {
  animation: slideInRight 0.3s ease-out;
}

.notification-leave {
  animation: slideOutRight 0.3s ease-in;
}

@keyframes slideInRight {
  from {
    transform: translateX(100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes slideOutRight {
  from {
    transform: translateX(0);
    opacity: 1;
  }
  to {
    transform: translateX(100%);
    opacity: 0;
  }
}

/* Custom scrollbar */
::-webkit-scrollbar {
  width: 0;
  height: 0;
  background-color: transparent;
}

::-webkit-scrollbar-track {
  background-color: transparent;
}

::-webkit-scrollbar-thumb {
  background-color: rgba(0, 0, 0, 0.15);
  border-radius: 9999px;
  border: 5px solid white;
}

.dark ::-webkit-scrollbar-thumb {
  background-color: rgba(255, 255, 255, 0.15);
  border: 5px solid black;
}

/* Categories Slider Styles */
.slider-container {
  display: flex;
  position: relative;
  overflow: hidden;
  align-items: center;
}

.slider-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.cards-slider {
  display: flex;
  cursor: grab;
  width: 100%;
  overflow: auto;
  gap: 0.5rem;
  padding-right: 0.75rem;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.cards-slider::-webkit-scrollbar {
  display: none;
}

.cards-slider:active {
  cursor: grabbing;
}

.card {
  cursor: pointer;
  min-width: max-content;
  user-select: none;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  border-radius: 9999px;
  padding: 0.375rem;
  transition: all 0.2s ease;
}

.card:active {
  cursor: grab;
  transform: scale(0.95);
}

.card.selected {
  background-color: #dc2626;
  color: white;
}

.dark .card.selected {
  background-color: #b91c1c;
}

/* Category button colors */
.bg-\[\#dad5ff\] { background-color: #dad5ff; }
.bg-\[\#ffe2eb\] { background-color: #ffe2eb; }
.bg-\[\#ffe4c2\] { background-color: #ffe4c2; }
.bg-\[\#fffd92\] { background-color: #fffd92; }
.bg-\[\#cfffcb\] { background-color: #cfffcb; }
.bg-\[\#dbfff6\] { background-color: #dbfff6; }
.bg-\[\#d7edff\] { background-color: #d7edff; }

.hover\:brightness-90:hover {
  filter: brightness(0.9);
}

/* Category button bezel effect */
.cat-button-bezel {
  box-shadow: inset 0 -1px 1px 0 rgba(0, 0, 0, 0.05), inset 0 1px 0 0 rgba(255, 255, 255, 0.15);
}

/* Sort dropdown styles */
.sort-option {
  cursor: pointer;
}

.sort-option:hover {
  background-color: #e9e9e9;
}

.dark .sort-option:hover {
  background-color: #3c3c3c;
}

/* Search container active state */
#search-container.active {
  background-color: rgba(0, 0, 0, 0.1);
}

.dark #search-container.active {
  background-color: rgba(255, 255, 255, 0.2);
}

/* Responsive utilities */
@media (min-width: 640px) {
  .xs\:grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 768px) {
  .md\:grid-cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .lg\:grid-cols-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
  
  .lg\:px-5 {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }
  
  .lg\:py-5 {
    padding-top: 1.25rem;
    padding-bottom: 1.25rem;
  }
  
  .lg\:gap-5 {
    gap: 1.25rem;
  }
  
  .lg\:pt-20 {
    padding-top: 5rem;
  }
  
  .lg\:top-20 {
    top: 5rem;
  }
  
  .lg\:h-20 {
    height: 5rem;
  }
  
  .lg\:rounded-b-3xl {
    border-bottom-left-radius: 1.5rem;
    border-bottom-right-radius: 1.5rem;
  }
  
  .lg\:max-h-\[calc\(100vh-80px\)\] {
    max-height: calc(100vh - 80px);
  }
  
  .cards-slider {
    gap: 1rem;
    padding-right: 1rem;
  }
  
  .card.selected:hover {
    background-color: #b91c1c;
  }
  
  .dark .card.selected:hover {
    background-color: #991b1b;
  }
}

@media (min-width: 1280px) {
  .xl\:grid-cols-5 {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
}

@media (min-width: 1536px) {
  .xl-2\:grid-cols-6 {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }
}

@media (min-width: 1920px) {
  .xl-3\:grid-cols-7 {
    grid-template-columns: repeat(7, minmax(0, 1fr));
  }
}

/* Common utility classes */
.hidden { display: none; }
.flex { display: flex; }
.grid { display: grid; }
.relative { position: relative; }
.absolute { position: absolute; }
.fixed { position: fixed; }
.top-0 { top: 0; }
.right-0 { right: 0; }
.left-0 { left: 0; }
.z-50 { z-index: 50; }
.w-full { width: 100%; }
.h-full { height: 100%; }
.min-h-\[calc\(100vh-72px\)\] { min-height: calc(100vh - 72px); }
.min-w-12 { min-width: 3rem; }
.min-h-12 { min-height: 3rem; }
.w-12 { width: 3rem; }
.h-12 { height: 3rem; }
.w-6 { width: 1.5rem; }
.h-6 { height: 1.5rem; }
.w-24 { width: 6rem; }
.h-28 { height: 7rem; }
.w-64 { width: 16rem; }
.h-80 { height: 20rem; }
.top-1 { top: 0.25rem; }
.top-4 { top: 1rem; }
.top-14 { top: 3.5rem; }
.top-\[72px\] { top: 72px; }
.right-1 { right: 0.25rem; }
.right-4 { right: 1rem; }
.overflow-hidden { overflow: hidden; }
.overflow-auto { overflow: auto; }
.cursor-pointer { cursor: pointer; }
.select-none { user-select: none; }
.max-w-2xl { max-width: 42rem; }
.max-w-7xl { max-width: 80rem; }
.max-h-\[calc\(100vh-72px\)\] { max-height: calc(100vh - 72px); }
.max-h-\[calc\(100vh-80px\)\] { max-height: calc(100vh - 80px); }
.bg-white\/85 { background-color: rgba(255, 255, 255, 0.85); }
.bg-black\/85 { background-color: rgba(0, 0, 0, 0.85); }
.bg-black\/5 { background-color: rgba(0, 0, 0, 0.05); }
.bg-white\/10 { background-color: rgba(255, 255, 255, 0.1); }
.bg-black\/10 { background-color: rgba(0, 0, 0, 0.1); }
.bg-white\/20 { background-color: rgba(255, 255, 255, 0.2); }
.hover\:bg-black\/5:hover { background-color: rgba(0, 0, 0, 0.05); }
.hover\:bg-white\/15:hover { background-color: rgba(255, 255, 255, 0.15); }
.hover\:bg-black\/10:hover { background-color: rgba(0, 0, 0, 0.1); }
.hover\:bg-white\/20:hover { background-color: rgba(255, 255, 255, 0.2); }
.border-b { border-bottom-width: 0px; }
.border-black\/10 { border-color: rgba(0, 0, 0, 0.1); }
.dark .border-white\/10 { border-color: rgba(255, 255, 255, 0.1); }
.rounded-full { border-radius: 9999px; }
.rounded-2xl { border-radius: 1rem; }
.rounded-3xl { border-radius: 1.5rem; }
.rounded-\[2rem\] { border-radius: 2rem; }
.shadow-2xl { box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25); }
.p-3 { padding: 0.75rem; }
.p-5 { padding: 1.25rem; }
.px-3 { padding-left: 0.75rem; padding-right: 0.75rem; }
.px-5 { padding-left: 1.25rem; padding-right: 1.25rem; }
.py-2 { padding-top: 0.5rem; padding-bottom: 0.5rem; }
.py-3 { padding-top: 0.75rem; padding-bottom: 0.75rem; }
.py-20 { padding-top: 5rem; padding-bottom: 5rem; }
.mt-20 { margin-top: 5rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-5 { margin-bottom: 1.25rem; }
.mx-3 { margin-left: 0.75rem; margin-right: 0.75rem; }
.mx-4 { margin-left: 1rem; margin-right: 1rem; }
.mx-5 { margin-left: 1.25rem; margin-right: 1.25rem; }
.gap-3 { gap: 0.75rem; }
.gap-5 { gap: 1.25rem; }
.text-center { text-align: center; }
.text-6xl { font-size: 3.75rem; line-height: 1; }
.text-sm { font-size: 0.875rem; line-height: 1.25rem; }
.text-xs { font-size: 0.75rem; line-height: 1rem; }
.font-semibold { font-weight: 600; }
.font-medium { font-weight: 500; }
.font-normal { font-weight: 400; }
.text-gray-600 { color: #4b5563; }
.dark .text-gray-600 { color: #9ca3af; }
.text-gray-400 { color: #9ca3af; }
.dark .text-gray-400 { color: #6b7280; }
.text-white { color: #ffffff; }
.text-black { color: #000000; }
.text-red-600 { color: #dc2626; }
.text-red-700 { color: #b91c1c; }
.bg-red-600 { background-color: #dc2626; }
.bg-red-700 { background-color: #b91c1c; }
.hover\:bg-red-700:hover { background-color: #b91c1c; }
.items-center { align-items: center; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.transition { transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter; transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); transition-duration: 150ms; }
.active\:scale-95:active { transform: scale(0.95); }
.backdrop-blur-lg { backdrop-filter: blur(16px); }
.backdrop-blur-xl { backdrop-filter: blur(24px); }
.backdrop-blur-sm { backdrop-filter: blur(4px); }
.bg-alizarin-crimson-400 { background-color: #f87171; }
.bg-alizarin-crimson-700 { background-color: #b91c1c; }
.text-alizarin-crimson-700 { color: #b91c1c; }
.animate-ping { animation: ping 1s cubic-bezier(0, 0, 0.2, 1) infinite; }

@keyframes ping {
  75%, 100% {
    transform: scale(2);
    opacity: 0;
  }
}

/* Mobile responsive */
@media (max-width: 1024px) {
  .max-lg\:dark\:bg-white\/15 { background-color: rgba(255, 255, 255, 0.15); }
  .max-lg\:bg-black\/5 { background-color: rgba(0, 0, 0, 0.05); }
  .max-lg\:hover\:bg-black\/10:hover { background-color: rgba(0, 0, 0, 0.1); }
  .max-lg\:hover\:dark\:bg-white\/20:hover { background-color: rgba(255, 255, 255, 0.2); }
  .max-lg\:min-w-12 { min-width: 3rem; }
  .max-lg\:min-h-12 { min-height: 3rem; }
  .max-lg\:rounded-full { border-radius: 9999px; }
  .max-lg\:bg-black\/5 { background-color: rgba(0, 0, 0, 0.05); }
  .max-lg\:dark\:bg-white\/15 { background-color: rgba(255, 255, 255, 0.15); }
  .max-lg\:hover\:bg-black\/10:hover { background-color: rgba(0, 0, 0, 0.1); }
  .max-lg\:hover\:dark\:bg-white\/20:hover { background-color: rgba(255, 255, 255, 0.2); }
}

@media (max-width: 768px) {
  .max-md\:flex-col { flex-direction: column; }
  .max-md\:max-h-\[calc\(100vh-92px\)\] { max-height: calc(100vh - 92px); }
  .max-md\:overflow-auto { overflow: auto; }
  
  /* Mobil sepet paneli boyut zorlaması - Sadece mobil için */
  .mobile-cart-panel {
    width: 374px !important;
    height: 748px !important;
    max-width: 374px !important;
    max-height: 748px !important;
    min-width: 374px !important;
    min-height: 748px !important;
    top: 50% !important;
    left: 50% !important;
    right: auto !important;
    transform: translate(-50%, -50%) !important;
    margin: 0 !important;
    position: fixed !important;
    z-index: 50 !important;
  }
  
  /* Sepet boş durumunda panel boyutu */
  .cart-panel-mobile {
    width: 406px !important;
    height: 384px !important;
    max-width: 406px !important;
    max-height: 384px !important;
    min-width: 406px !important;
    min-height: 384px !important;
  }
  
  /* Sepet boş durumunda ana panel boyutu */
  .cart-panel-mobile + .relative {
    width: 406px !important;
    height: 384px !important;
    max-width: 406px !important;
    max-height: 384px !important;
    min-width: 406px !important;
    min-height: 384px !important;
  }
  
  /* Sepet boş durumunda ana panel div'i */
  .cart-panel-mobile ~ div {
    width: 406px !important;
    height: 384px !important;
    max-width: 406px !important;
    max-height: 384px !important;
    min-width: 406px !important;
    min-height: 384px !important;
  }
  
  /* Sepet boş durumunda ana panel */
  div[class*="select-none"][class*="fixed"][class*="z-50"]:has(.cart-panel-mobile) {
    width: 406px !important;
    height: 384px !important;
    max-width: 406px !important;
    max-height: 384px !important;
    min-width: 406px !important;
    min-height: 384px !important;
  }
  
  /* Sepet boş durumunda ana panel - Daha güçlü kural */
  #cart-panel:has(.cart-panel-mobile) {
    width: 406px !important;
    height: 384px !important;
    max-width: 406px !important;
    max-height: 384px !important;
    min-width: 406px !important;
    min-height: 384px !important;
  }
  
  /* Sepet boş durumunda ana panel - En güçlü kural */
  .select-none.mx-3.lg\:mx-5.shadow-2xl.mt-20.rounded-\[2rem\].right-0.fixed.flex.z-50.bg-white\/95.dark\:bg-black\/95.dark\:border.dark\:border-white\/10.cart-button-bezel.backdrop-blur-lg.overflow-hidden:has(.cart-panel-mobile) {
    width: 406px !important;
    height: 384px !important;
    max-width: 406px !important;
    max-height: 384px !important;
    min-width: 406px !important;
    min-height: 384px !important;
  }
  
  /* Mobil sepet paneli - Yeniden Düzenlenmiş */
  .mobile-cart-panel {
    width: 374px !important;
    height: 748px !important;
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) !important;
    position: fixed !important;
    z-index: 50 !important;
    background: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(16px) !important;
    border-radius: 1.5rem !important;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25) !important;
    display: flex !important;
    flex-direction: column !important;
    overflow: hidden !important;
    max-width: 374px !important;
    max-height: 748px !important;
    min-width: 374px !important;
    min-height: 748px !important;
  }
  
  .dark .mobile-cart-panel {
    background: rgba(0, 0, 0, 0.95) !important;
  }
  
  /* Ekstra güçlü ortalama kuralı - Sadece mobil için */
  div[class*="select-none"][class*="fixed"][class*="z-50"] {
    top: 50% !important;
    left: 50% !important;
    right: auto !important;
    transform: translate(-50%, -50%) !important;
    margin: 0 !important;
    position: fixed !important;
    z-index: 50 !important;
  }
  
  /* Ana sepet paneli - Sadece mobil için */
  .select-none.mx-3.lg\:mx-5.shadow-2xl.mt-20.rounded-\[2rem\].right-0.fixed.flex.z-50.bg-white\/95.dark\:bg-black\/95.dark\:border.dark\:border-white\/10.cart-button-bezel.backdrop-blur-lg.overflow-hidden {
    width: 374px !important;
    height: 748px !important;
    max-width: 374px !important;
    max-height: 748px !important;
    min-width: 374px !important;
    min-height: 748px !important;
    top: 50% !important;
    left: 50% !important;
    right: auto !important;
    transform: translate(-50%, -50%) !important;
    margin: 0 !important;
    position: fixed !important;
    z-index: 50 !important;
  }
  

  

  
  /* Mobil ürün bölümü - Dinamik */
  .mobile-products-section {
    flex: 0 0 auto;
    padding: 1rem;
    overflow-y: auto;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    width: 100% !important;
    max-width: 374px !important;
    min-height: fit-content;
    max-height: 60vh;
  }
  
  .dark .mobile-products-section {
    border-bottom-color: rgba(255, 255, 255, 0.1);
  }
  
  /* Mobil header */
  .mobile-header {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
  }
  
  .mobile-header .flex {
    width: 100%;
  }
  
  /* Mobil header kapatma butonu */
  .mobile-close-button-header {
    padding: 0.5rem;
    border-radius: 50%;
    background: rgba(220, 38, 38, 0.9) !important;
    color: white !important;
    transition: all 0.2s ease;
    border: 2px solid white;
    box-shadow: 0 4px 12px rgba(220, 38, 38, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .mobile-close-button-header:hover {
    background: rgba(185, 28, 28, 1) !important;
    transform: scale(1.1);
  }
  
  /* Mobil ürün listesi - Dinamik */
  .mobile-products-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    min-height: fit-content;
  }
  
  /* Mobil sipariş bölümü - Dinamik */
  .mobile-order-section {
    flex: 1;
    padding: 1rem;
    overflow-y: auto;
    background: rgba(255, 255, 255, 0.05);
    width: 100% !important;
    max-width: 374px !important;
    min-height: 0;
  }
  
  .dark .mobile-order-section {
    background: rgba(0, 0, 0, 0.05);
  }
  

  

  
  /* Mobil sepet ürün kartı */
  .cart-item-mobile {
    background: rgba(255, 255, 255, 0.8);
    border-radius: 0.75rem;
    padding: 0.75rem;
    margin-bottom: 0.5rem;
    border: 1px solid rgba(0, 0, 0, 0.1);
    transition: all 0.2s ease;
  }
  
  .dark .cart-item-mobile {
    background: rgba(0, 0, 0, 0.8);
    border-color: rgba(255, 255, 255, 0.1);
  }
  
  .cart-item-mobile:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  }
  
  /* Mobil form elemanları */
  .mobile-form-input {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 0.5rem;
    padding: 0.75rem;
    font-size: 0.875rem;
    width: 100%;
    transition: all 0.2s ease;
  }
  
  .dark .mobile-form-input {
    background: rgba(0, 0, 0, 0.9);
    border-color: rgba(255, 255, 255, 0.1);
    color: white;
  }
  
  .mobile-form-input:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
  }
  
  /* Mobil ödeme butonu */
  .mobile-pay-button {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    border: none;
    border-radius: 0.75rem;
    padding: 1rem;
    font-weight: 600;
    font-size: 1rem;
    width: 100%;
    transition: all 0.2s ease;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
  }
  
  .mobile-pay-button:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(16, 185, 129, 0.4);
  }
  
  .mobile-pay-button:active {
    transform: translateY(0);
  }
  
  /* Mobil sepet boş durumu - Dinamik */
  .empty-cart-mobile {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem 1rem;
    text-align: center;
    min-height: 200px;
    max-height: 300px;
  }
  
  .empty-cart-mobile .icon {
    width: 4rem;
    height: 4rem;
    background: rgba(0, 0, 0, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
  }
  
  .dark .empty-cart-mobile .icon {
    background: rgba(255, 255, 255, 0.1);
  }
}

/* Masaüstü sepet paneli - Eski boyutlar */
@media (min-width: 1024px) {
  /* Masaüstü sepet paneli - Sağ tarafta */
  .select-none.mx-3.lg\:mx-5.shadow-2xl.mt-20.rounded-\[2rem\].right-0.fixed.flex.z-50.bg-white\/95.dark\:bg-black\/95.dark\:border.dark\:border-white\/10.cart-button-bezel.backdrop-blur-lg.overflow-hidden {
    width: auto !important;
    height: auto !important;
    max-width: none !important;
    max-height: none !important;
    min-width: auto !important;
    min-height: auto !important;
    top: 5rem !important;
    left: auto !important;
    right: 0 !important;
    transform: none !important;
    margin: 0 1.25rem !important;
    position: fixed !important;
    z-index: 50 !important;
  }
  
  /* Masaüstü sepet paneli - Eski boyutlar */
  .cart-container {
    width: auto !important;
    height: auto !important;
    max-width: none !important;
    max-height: none !important;
    min-width: auto !important;
    min-height: auto !important;
  }
}

/* Product card styles */
.product-card {
  transition: all 0.3s ease;
}

.product-card:hover {
  transform: translateY(-2px);
}

.product-image {
  transition: opacity 0.3s ease;
}

.product-card:hover .product-image-hover {
  opacity: 0;
}

/* Focus styles */
button:focus,
input:focus,
a:focus {
  outline: 2px solid #3b82f6;
  outline-offset: 2px;
}

/* Additional utility classes */
.line-clamp-2 {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.text-ellipsis {
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}

/* Notification styles */
.notification {
  position: fixed;
  top: 1rem;
  right: 1rem;
  z-index: 50;
  padding: 1rem;
  border-radius: 0.5rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  max-width: 24rem;
  animation: slideInRight 0.3s ease-out;
}

.notification.success {
  background-color: #10b981;
  color: white;
}

.notification.error {
  background-color: #ef4444;
  color: white;
}

.notification.warning {
  background-color: #f59e0b;
  color: white;
}

.notification.info {
  background-color: #3b82f6;
  color: white;
}

/* Product detail page styles */




.disabled {
  opacity: 0.4;
  cursor: default;
}

.button-bezel {
  box-shadow: 0 0 0 var(--button-outline, 0px) rgba(222, 92, 92, 0.3), inset 0 -1px 1px 0 rgba(0, 0, 0, 0.25), inset 0 1px 0 0 rgba(255, 255, 255, 0.3),
    0 1px 2px 0 rgba(0, 0, 0, 0.5);
  background-color: #de5c5c;
  outline: none;
  letter-spacing: -0.125px;
  transition: transform scale(var(--button-scale, 1)) 0.2s ease;
}

.button-bezel:hover {
  background-color: #d45454;
}

.button-bezel:active {
  --button-outline: 4px;
  --button-scale: 0.975;
}

.description ul li {
  background: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciPjxlbGxpcHNlIHJ5PSIzIiByeD0iMyIgY3k9IjMiIGN4PSIzIiBmaWxsPSIjYzljOWM5Ii8+PC9zdmc+)
    no-repeat 0 0.7rem;
  padding-left: 0.938rem;
}

.slide-up-enter-active,
.slide-up-leave-active {
  transition: transform 0.3s ease 0s, opacity 0.3s ease 0s;
}

.slide-up-enter-from {
  opacity: 0;
  transform: translateY(-30px) scale(0);
}

.slide-up-leave-to {
  opacity: 0;
  transform: translateY(30px) scale(0);
}

.pulse-heart {
  animation: pulse 1s ease-in-out;
}

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