.clientBody {
  font-family: 'Inter', sans-serif;
  background-color: #fdfaf6;
  /* Light cream background */
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

/* Navbar styles */
.navbar-brand-custom {
  color: #a0522d;
  /* Saddle Brown for brand name */
  font-weight: 700;
  font-size: 1.5rem;
  /* text-2xl */
}

.nav-link-custom {
  color: #5e4a3a;
  /* Darker brown for nav links */
  font-weight: 500;
  /* font-medium */
  font-size: 1.125rem;
  /* text-lg */
  transition: color 0.2s ease-in-out;
}

.nav-link-custom:hover {
  color: #a0522d;
  /* Saddle Brown on hover */
  text-decoration: underline;
}

/* Hero section */
.hero-section {
  background-size: cover;
  background-position: center;
  height: 500px;
  display: flex;
  align-items: center;  
  justify-content: center;
  text-align: center;
  color: white;
  position: relative;
}


/* Product card styles */
.product-card {
  background-color: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 0.75rem;
  /* Equivalent to rounded-xl */
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  /* Equivalent to shadow-lg */
  overflow: hidden;
  padding: 1.5rem;
  /* Equivalent to p-6 */
  transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

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

/* Product image styles (for cards and details) */
.product-image,
.product-main-image {
  width: 100%;
  object-fit: cover;
  border-radius: 0.75rem;
  transition: transform 0.3s ease;
}

.product-main-image:hover {
  transform: scale(1.03);
}

.product-image-container {
  border-radius: 0.75rem;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Product name and price */
.product-name {
  font-size: 2.5rem;
  /* text-4xl */
  font-weight: bold;
  color: #212529;
  /* text-gray-800 */
  margin-bottom: 0.5rem;
}

.product-price {
  font-size: 2.25rem;
  /* text-3xl */
  font-weight: bold;
  color: #a0522d;
  /* text-a0522d */
  margin-bottom: 1.5rem;
}

/* Product description */
.product-description,
.product-description-text {
  color: #495057;
  /* text-gray-700 */
  font-size: 1.125rem;
  /* text-lg */
  margin-bottom: 0.75rem;
  line-height: 1.6;
  flex-grow: 1;
  /* Ensures text takes available space */
}

/* Product details title */
.product-description-title {
  font-size: 1.5rem;
  font-weight: bold;
  color: #212529;
  margin-top: 2rem;
  margin-bottom: 1rem;
}

/* Quantity input group */
.quantity-input-group {
  width: 120px;
}

.quantity-input {
  text-align: center;
}

/* Buttons */
.btn-primary-custom {
  background-color: #a0522d;
  /* Saddle Brown */
  border-color: #a0522d;
  color: white;
  font-weight: bold;
  padding: 0.75rem 1.5rem;
  /* py-3 px-6 */
  border-radius: 9999px;
  /* rounded-full */
  transition: background-color 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
}

.btn-primary-custom:hover {
  background-color: #8b4513;
  /* Darker Saddle Brown */
  border-color: #8b4513;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  /* hover:shadow-md */
}

/* Main title */
.main-title {
  font-size: 2.5rem;
  /* text-4xl */
  font-weight: bold;
  text-align: center;
  margin-bottom: 2.5rem;
  /* mb-10 */
  color: #212529;
  /* text-gray-800 */
}

.size-select {
  width: auto;
  background-color: #a0522d;
  /* Saddle Brown */
  border-color: #a0522d;
  color: white;
  font-weight: bold;

}

.size-select:hover {
  background-color: #8b4513;
  /* Darker Saddle Brown */
  border-color: #8b4513;
}


/* --- Cart Page Specific Styles --- */
.cart-title {
  font-size: 2.5rem;
  font-weight: bold;
  color: #212529;
  margin-bottom: 2.5rem;
  text-align: center;
}

.cart-item-card {
  border-radius: 0.75rem;
  background-color: #ffffff;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
  padding: 1.5rem;
}

.cart-item-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.08);
}

.cart-item-img {
  width: 100px;
  height: 100px;
  object-fit: cover;
  border-radius: 0.5rem;
}

.summary-card {
  background-color: #ffffff;
  border-radius: 0.75rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  padding: 2rem;
}

.summary-title {
  font-size: 1.5rem;
  font-weight: bold;
  color: #212529;
  margin-bottom: 1.5rem;
}

.total-price {
  font-size: 2rem;
  font-weight: bold;
  color: #a0522d;
}

/* Footer styles for cart page */
footer {
  background-color: #212529;
  color: white;
  padding-top: 2rem;
  padding-bottom: 2rem;
  margin-top: 3rem;
  border-top-left-radius: 0.75rem;
  border-top-right-radius: 0.75rem;
}

footer a {
  color: #adb5bd;
  transition: color 0.3s ease;
}

footer a:hover {
  color: white;
}

/* Responsive adjustments for hero section text */
@media (max-width: 767.98px) {
  .hero-title {
    font-size: 3rem;
    /* text-5xl for smaller screens */
  }

  .hero-subtitle {
    font-size: 1.25rem;
    /* text-lg for smaller screens */
  }

  .product-name {
    font-size: 2rem;
  }

  .product-price {
    font-size: 1.5rem;
  }
}