.footer-bottom li {height:4rem !important; width:5rem !important}

.footer-bottom .container {flex-direction:column-reverse !important}

footer-bottom li {height:4rem !important; width:5rem !important}

.footer-bottom .container {flex-direction:column-reverse !important}

 
}


/* Product Card Styles - Salla Celia Theme */

.product-card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
  position: relative;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

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

.product-image-container {
  background: #f9fafb;
  padding: 16px;
  position: relative;
  overflow: hidden;
  height: 224px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-image {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.product-card:hover .product-image {
  transform: scale(1.05);
}

.discount-badge {
  position: absolute;
  top: 8px;
  right: 8px;
  background: #ef4444;
  color: white;
  font-size: 12px;
  font-weight: 500;
  padding: 4px 8px;
  border-radius: 6px;
  z-index: 10;
}

.interaction-buttons {
  position: absolute;
  top: 8px;
  left: 8px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 10;
}

.product-card:hover .interaction-buttons {
  opacity: 1;
}

.interaction-button {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: white;
  border: 1px solid #d1d5db;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  transition: background-color 0.2s ease;
  cursor: pointer;
}

.interaction-button:hover {
  background: #f9fafb;
}

.interaction-button svg {
  width: 16px;
  height: 16px;
  color: #6b7280;
}

.product-content {
  padding: 16px;
}

.product-title {
  color: #374151;
  font-weight: 500;
  font-size: 14px;
  margin-bottom: 12px;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  cursor: pointer;
  transition: color 0.2s ease;
}

.product-title:hover {
  color: #2563eb;
}

.product-rating {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
}

.rating-stars {
  display: flex;
  align-items: center;
}

.star {
  width: 12px;
  height: 12px;
}

.star.filled {
  color: #fbbf24;
  fill: currentColor;
}

.star.empty {
  color: #d1d5db;
}

.rating-count {
  font-size: 12px;
  color: #6b7280;
}

.product-prices {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
}

.current-price {
  font-size: 18px;
  font-weight: 700;
  color: #ef4444;
}

.original-price {
  font-size: 14px;
  color: #9ca3af;
  text-decoration: line-through;
}

.add-to-cart-button {
  width: 100%;
  background: #2563eb;
  color: white;
  font-size: 14px;
  font-weight: 500;
  padding: 10px 0;
  border: none;
  border-radius: 6px;
  transition: background-color 0.2s ease;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.add-to-cart-button:hover {
  background: #1d4ed8;
}

.add-to-cart-button svg {
  width: 16px;
  height: 16px;
}

.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid #f3f4f6;
}

.availability-indicator {
  display: flex;
  align-items: center;
  gap: 4px;
}

.availability-dot {
  width: 8px;
  height: 8px;
  background: #10b981;
  border-radius: 50%;
}

.availability-text {
  font-size: 12px;
  color: #6b7280;
}

.shipping-info {
  font-size: 12px;
  color: #6b7280;
}

.card-border-effect {
  position: absolute;
  inset: 0;
  border-radius: 12px;
  border: 2px solid transparent;
  transition: border-color 0.2s ease;
  pointer-events: none;
}

.product-card:hover .card-border-effect {
  border-color: #dbeafe;
}

/* Responsive Design */
@media (max-width: 768px) {
  .product-card {
    margin-bottom: 16px;
  }
  
  .product-image-container {
    height: 200px;
  }
  
  .product-content {
    padding: 12px;
  }
}

/* RTL Support */
[dir="rtl"] .discount-badge {
  right: auto;
  left: 8px;
}

[dir="rtl"] .interaction-buttons {
  left: auto;
  right: 8px;
}

/* Animation Classes */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.product-card {
  animation: fadeInUp 0.6s ease forwards;
}

/* Loading State */
.product-card.loading {
  opacity: 0.7;
  pointer-events: none;
}

.product-card.loading .product-image {
  filter: blur(2px);
}

/* Focus States for Accessibility */
.interaction-button:focus {
  outline: 2px solid #2563eb;
  outline-offset: 2px;
}

.add-to-cart-button:focus {
  outline: 2px solid #2563eb;
  outline-offset: 2px;
}

.product-title:focus {
  outline: 2px solid #2563eb;
  outline-offset: 2px;
  border-radius: 4px;
}