/* Custom styles for Glow Skincare */

/* General styles */
body {
  font-family: "Vazirmatn", "Tahoma", sans-serif;
  color: #333;
  line-height: 1.6;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 600;
}

/* Header styles */
.navbar-brand h1 {
  color: #ff6b6b;
  font-weight: 700;
}

/* Hero section */
.hero-section {
  padding: 5rem 0;
  background-color: #f8f9fa;
  border-radius: 10px;
}

/* Product cards */
.card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: none;
  border-radius: 10px;
  overflow: hidden;
}

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

.card-img-top {
  height: 200px;
  object-fit: cover;
}

.price {
  font-weight: 600;
  color: #ff6b6b;
  font-size: 1.1rem;
}

/* Category cards */
.category-card {
  background-color: #f8f9fa;
  height: 100%;
}

/* Footer */
footer {
  background-color: #343a40;
}

/* Product details page */
.product-meta {
  font-size: 0.9rem;
}

/* Cart page */
.img-thumbnail {
  border-radius: 8px;
}

/* Checkout page */
.order-summary {
  background-color: #f8f9fa;
  border-radius: 10px;
  padding: 1.5rem;
}

/* RTL specific adjustments */
.dropdown-menu-end {
  right: auto;
  left: 0;
}

.me-2 {
  margin-left: 0.5rem !important;
  margin-right: 0 !important;
}

.me-3 {
  margin-left: 1rem !important;
  margin-right: 0 !important;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .hero-section {
    padding: 3rem 0;
  }

  .card-img-top {
    height: 180px;
  }
}

