:root {
  --color-bg: #FAF6F0; /* Cassava Cream */
  --color-primary: #E74C3C; /* Spicy Balado */
  --color-secondary: #F1C40F; /* Banana Gold */
  --color-text: #2C3E50; /* Deep Charcoal */
  --color-surface: #ffffff;
  
  --font-display: 'Outfit', sans-serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;
}

body {
  background-color: var(--color-bg);
  color: var(--color-text);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6, .navbar-brand {
  font-family: var(--font-display);
  font-weight: 800;
  color: var(--color-text);
}

/* Custom Navbar */
.navbar-custom {
  background-color: var(--color-bg) !important;
  border-bottom: 1px solid rgba(44, 62, 80, 0.05);
  padding: 1rem 0;
  transition: all 0.3s ease;
}
.navbar-custom .navbar-brand {
  color: var(--color-primary) !important;
  font-size: 1.75rem;
  letter-spacing: -0.5px;
}
.navbar-custom .nav-link {
  color: var(--color-text) !important;
  font-weight: 600;
  margin: 0 0.5rem;
  position: relative;
}
.navbar-custom .nav-link::after {
  content: '';
  position: absolute;
  width: 0;
  height: 3px;
  bottom: 0;
  left: 50%;
  background-color: var(--color-primary);
  transition: all 0.3s ease;
  transform: translateX(-50%);
  border-radius: 3px;
}
.navbar-custom .nav-link:hover::after,
.navbar-custom .nav-link.menu-active::after {
  width: 80%;
}

/* Typography Overrides */
.text-primary-brand {
  color: var(--color-primary) !important;
}

/* Signature Hero Animation */
@keyframes float {
  0% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(5deg); }
  100% { transform: translateY(0px) rotate(0deg); }
}
.floating-element {
  animation: float 6s ease-in-out infinite;
  display: inline-block;
  filter: drop-shadow(0 20px 30px rgba(231, 76, 60, 0.3));
}

/* Custom Cards for Products */
.product-card {
  background: var(--color-surface);
  border-radius: 32px;
  border: none;
  box-shadow: 0 10px 40px rgba(44, 62, 80, 0.04);
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease;
  overflow: visible !important;
  margin-top: 80px; /* Space for the image to break out */
  padding-top: 100px; /* Space inside for the image */
}
.product-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(44, 62, 80, 0.08);
}
.product-image-wrapper {
  position: absolute;
  top: -125px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 100px;
  display: flex;
  justify-content: center;
}
.product-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  box-shadow: 0 15px 35px rgba(0,0,0,0.15);
  transition: transform 0.4s ease;
}
.product-card:hover .product-image-wrapper img {
  transform: scale(1.08) rotate(8deg);
}

.product-price {
  color: var(--color-primary);
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
}

/* Buttons */
.btn-brand {
  background-color: var(--color-primary);
  color: white;
  border: none;
  border-radius: 50px;
  padding: 0.75rem 2rem;
  font-weight: 600;
  font-family: var(--font-body);
  transition: all 0.3s ease;
}
.btn-brand:hover {
  background-color: #C0392B;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(231, 76, 60, 0.3);
}

/* Contact Form Overrides */
.form-control-custom {
  background: transparent;
  border: none;
  border-bottom: 2px solid rgba(44, 62, 80, 0.1);
  border-radius: 0;
  padding: 1rem 0;
  font-family: var(--font-body);
  transition: all 0.3s ease;
}
.form-control-custom:focus {
  background: transparent;
  box-shadow: none;
  border-bottom-color: var(--color-primary);
}

/* ===== Review Cards ===== */
.review-card {
  background: var(--color-surface);
  border-radius: 24px;
  padding: 1.5rem;
  box-shadow: 0 10px 30px rgba(44, 62, 80, 0.04);
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.review-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(44, 62, 80, 0.08);
}
.review-card-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 0.75rem;
}
.review-avatar {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 800;
  font-size: 1.2rem;
  font-family: var(--font-display);
  flex-shrink: 0;
}
.review-meta strong {
  display: block;
  font-family: var(--font-display);
  font-size: 0.95rem;
  margin-bottom: 0.2rem;
}
.review-stars {
  display: flex;
  gap: 2px;
}
.review-stars i {
  font-size: 0.8rem;
}
.star-active {
  color: var(--color-secondary) !important;
  text-shadow: 0 0 6px rgba(241, 196, 15, 0.4);
}
.star-inactive {
  color: #ddd !important;
}
.review-card-body {
  flex: 1;
}
.review-text {
  color: var(--color-text);
  font-size: 0.9rem;
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 0;
}
.review-card-footer {
  margin-top: 1rem;
  padding-top: 0.75rem;
  border-top: 1px solid rgba(44, 62, 80, 0.05);
}

/* ===== Star Rating Interactive ===== */
.star-rating {
  display: flex;
  flex-direction: row-reverse;
  justify-content: flex-end;
  gap: 4px;
}
.star-rating input {
  display: none;
}
.star-label {
  cursor: pointer;
  font-size: 2rem;
  transition: transform 0.2s ease;
  line-height: 1;
}
.star-label i {
  color: #ddd;
  transition: all 0.3s ease;
}
.star-label:hover,
.star-label:hover ~ .star-label {
  transform: scale(1.2);
}
.star-label:hover i,
.star-label:hover ~ .star-label i {
  color: var(--color-secondary) !important;
  text-shadow: 0 0 15px rgba(241, 196, 15, 0.5);
}
.star-rating input:checked ~ .star-label i {
  color: var(--color-secondary) !important;
  text-shadow: 0 0 10px rgba(241, 196, 15, 0.4);
}

/* ===== Review Form Card ===== */
.review-form-card {
  background: var(--color-surface);
  border-radius: 24px;
  box-shadow: 0 10px 30px rgba(44, 62, 80, 0.04);
  overflow: hidden;
  position: sticky;
  top: 2rem;
}
.review-form-header {
  padding: 1.5rem 1.5rem 0.75rem;
  border-bottom: 1px solid rgba(44, 62, 80, 0.05);
}
.review-form-body {
  padding: 1.5rem;
}

/* ===== Empty State ===== */
.empty-reviews-icon {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: rgba(241, 196, 15, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
}