@tailwind base;
@tailwind components;
@tailwind utilities;

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}
::-webkit-scrollbar-track {
  @apply bg-primary-50 dark:bg-primary-950;
}
::-webkit-scrollbar-thumb {
  @apply bg-primary-300 dark:bg-primary-700 rounded-full;
}
::-webkit-scrollbar-thumb:hover {
  @apply bg-accent-600 dark:bg-accent-600;
}

/* Animations & Transitions */
.fade-enter-active, .fade-leave-active {
  transition: opacity 0.3s ease;
}
.fade-enter-from, .fade-leave-to {
  opacity: 0;
}

.slide-enter-active, .slide-leave-active {
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.slide-enter-from, .slide-leave-to {
  transform: translateY(20px);
  opacity: 0;
}

/* Base resets */
html {
  scroll-behavior: smooth;
}

body {
  @apply text-gray-800 dark:text-gray-200 bg-gray-200 dark:bg-gray-900 transition-colors duration-300;
}

[x-cloak] { display: none !important; }

::selection {
  @apply bg-accent-600 text-white;
}

.kifrio-hero-slider {
  margin-top: -1px;
}

.kifrio-hero-slider__stage {
  display: grid;
  width: 100%;
}

.kifrio-hero-slider__slide {
  grid-area: 1 / 1;
  width: 100%;
  min-width: 100%;
  overflow: hidden;
  min-height: 21rem;
  will-change: transform;
}

@media (min-width: 640px) {
  .kifrio-hero-slider__slide {
    min-height: 24rem;
  }
}

@media (min-width: 768px) {
  .kifrio-hero-slider__slide {
    min-height: 0;
  }
}

.kifrio-hero-slider::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: transparent;
}

.kifrio-banner-image {
  display: block;
  max-width: 100%;
}

.kifrio-search-shell {
  margin-top: 1rem;
}

@media (min-width: 768px) {
  .kifrio-search-shell {
    margin-top: 1.5rem;
  }
}

.kifrio-spinner {
  width: 1.15rem;
  height: 1.15rem;
  border-radius: 9999px;
  border: 2px solid rgba(148, 163, 184, 0.35);
  border-top-color: #f97316;
  animation: kifrio-spin 0.8s linear infinite;
}

.kifrio-spinner--sm {
  width: 0.95rem;
  height: 0.95rem;
}

@keyframes kifrio-spin {
  to {
    transform: rotate(360deg);
  }
}

.kifrio-product-ribbon {
  position: absolute;
  top: 0.9rem;
  left: -2.7rem;
  width: 10.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0.4rem 0.5rem;
  color: #fff;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1;
  white-space: nowrap;
  transform: rotate(-45deg);
  transform-origin: center;
  box-shadow: 0 10px 22px rgba(15, 23, 42, 0.24);
  pointer-events: none;
}

.kifrio-product-ribbon--promo {
  background: linear-gradient(90deg, #15803d 0%, #22c55e 100%);
}

.kifrio-product-ribbon--unavailable {
  top: 2.65rem;
  background: linear-gradient(90deg, #b91c1c 0%, #ef4444 100%);
}

.kifrio-seller-ribbon {
  position: absolute;
  top: 1rem;
  left: -2.35rem;
  width: 8.5rem;
  text-align: center;
  padding: 0.36rem 0.5rem;
  color: #fff;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  transform: rotate(-45deg);
  box-shadow: 0 10px 22px rgba(15, 23, 42, 0.24);
  pointer-events: none;
}

.kifrio-seller-ribbon--vacation {
  background: linear-gradient(90deg, #1d4ed8 0%, #3b82f6 100%);
}
