/* Custom CSS for Kamban Mobiles */
#testimonials-container {
  max-width: 100%;
  overflow: hidden;
}
.testimonial-slide {
  width: 100%;
  box-sizing: border-box;
}

/* Custom animations */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-fadeIn {
  animation: fadeIn 0.5s ease-out forwards;
}

.animation-delay-300 {
  animation-delay: 0.3s;
}

.animation-delay-600 {
  animation-delay: 0.6s;
}

/* Hero slider transitions */
.hero-slide {
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.hero-slide.active {
  opacity: 1;
}

/* Header scroll effects */
.header-scrolled {
  background-color: #000 !important;
  color: #fff !important;
  padding-top: 0.5rem !important;
  padding-bottom: 0.5rem !important;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}


/* Change phone button text color on scroll */
.scrolled-text {
  color: #fff !important;
  border-color: #fff !important;
}


.header-scrolled .nav-link {
  color: #fff !important;
}

.header-scrolled .nav-link:hover {
  color: #FFD700 !important;
  
}

/* Mobile navigation */
.mobile-nav-open {
  transform: translateX(0) !important;
}

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

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.product-card img {
  transition: transform 0.5s ease;
}

.product-card:hover img {
  transform: scale(1.1);
}

/* Category card effects */
.category-card {
  transition: transform 0.3s ease;
}

.category-card:hover {
  transform: translateY(-8px);
}

/* Button hover effects */
.btn-primary {
  background-color: #FFD700;
  color: #000;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background-color: #E6C200;
  transform: translateY(-1px);
}

/* Form styles */
.form-input {
  transition: all 0.3s ease;
}

.form-input:focus {
  border-color: #FFD700;
  box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.1);
}

/* Loading spinner */
.loading-spinner {
  border: 4px solid #f3f3f3;
  border-top: 4px solid #FFD700;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}


.navbar {
  width: 100%;
}

body.overflow-hidden {
  overflow: hidden;
}

/* Testimonial styles */
.testimonial-slide {
  opacity: 0;
  transform: translateX(100px);
  transition: all 0.5s ease;
  position: absolute;
  width: 100%;
}

.testimonial-slide.active {
  opacity: 1;
  transform: translateX(0);
  position: relative;
}

/* Filter styles */
.filter-checkbox {
  appearance: none;
  width: 20px;
  height: 20px;
  border: 2px solid #d1d5db;
  border-radius: 4px;
  position: relative;
  cursor: pointer;
  transition: all 0.3s ease;
}

.filter-checkbox:checked {
  background-color: #FFD700;
  border-color: #FFD700;
}

.filter-checkbox:checked::after {
  content: '✓';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #000;
  font-weight: bold;
  font-size: 12px;
}

/* Price range slider */
.price-slider {
  -webkit-appearance: none;
  appearance: none;
  height: 6px;
  border-radius: 3px;
  background: #d1d5db;
  outline: none;
}

.price-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #FFD700;
  cursor: pointer;
  border: 2px solid #fff;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.price-slider::-moz-range-thumb {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #FFD700;
  cursor: pointer;
  border: 2px solid #fff;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

/* Responsive utilities */
@media (max-width: 768px) {
  .hero-slide h1 {
    font-size: 2.5rem;
  }
  
  .hero-slide p {
    font-size: 1rem;
  }
}

/* Smooth scrolling */
html {
  scroll-behavior: smooth;
}

/* Focus styles for accessibility */
a:focus,
button:focus,
input:focus,
textarea:focus,
select:focus {
  outline: 2px solid #FFD700;
  outline-offset: 2px;
}

/* Print styles */
@media print {
  .no-print {
    display: none !important;
  }
}



