/* Reset default styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Body layout and background */
body {
  font-family: 'Segoe UI', sans-serif;
  height: 100vh;
  display: flex;
  flex-direction: column;
  background-color: #f5f5f5;
}

/* Navigation Bar */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 30px;
  background-color: #2e7d32;
  color: white;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.navbar-logo {
    max-height: 40px; /* Adjust this value to make your logo bigger or smaller */
    margin-right: 10px; /* Space between logo image and text */
    vertical-align: middle; /* Align with text */
}

/* You might want to adjust the existing .logo styling if needed */
.logo a {
    display: flex; /* Helps align the image and text */
    align-items: center; /* Vertically center them */
    text-decoration: none; /* Remove underline from the logo link */
    color: white; /* Ensure text color is visible */
    font-size: 1.8rem; /* Adjust font size if needed */
    font-weight: bold;
}

/* --- New Hero Section Styles --- */
/* In main.css - Replace your existing .hero-section with this */

.hero-section {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 100px 20px;
    min-height: 400px;
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('images/coffee-beans-bg.png');
    background-size: cover;
    background-position: center;
    
    color: white;
    flex: 1;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 15px;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.7);
    color: white;
}

.hero-content p {
    font-size: 1.5rem;
    margin-bottom: 30px;
    max-width: 600px;
}

.hero-content button {
    background-color: #388e3c;
    color: white;
    font-size: 1.3rem;
    font-weight: bold;
    padding: 15px 35px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.hero-content button:hover {
    background-color: #2e7d32;
    transform: translateY(-3px);
}

.logo {
  font-size: 1.8rem;
  font-weight: bold;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 25px;
}

.nav-links li a {
  text-decoration: none;
  color: white;
  font-size: 1.1rem;
  transition: color 0.3s ease;
}

.nav-links li a:hover {
  color: #c8e6c9;
}

/* Green text span */
.green-text {
  color: #2e7d32;
}

/* Footer at bottom */
.footer {
  text-align: center;
  background-color: #2e7d32;
  padding: 10px;
  font-size: 1rem;
  color: #ffffff;
}

/* Combo Packages Section */
.combo-section {
  padding: 50px 20px;
  background: #f0fdf4;
  text-align: center;
}

.combo-section h2 {
  font-size: 2.2rem;
  color: #2e7d32;
  margin-bottom: 30px;
}

.combo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
  max-width: 1000px;
  margin: 0 auto;
}

.combo-card {
  background-color: white;
  padding: 20px;
  border-radius: 16px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s ease;
}

.combo-card:hover {
  transform: translateY(-5px);
}

.combo-card img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 15px;
}

.combo-card h3 {
  color: #2e7d32;
  margin-bottom: 8px;
}

.combo-card p {
  font-size: 1rem;
  color: #555;
  margin-bottom: 10px;
}

.combo-card .price {
  font-weight: bold;
  font-size: 1.1rem;
  color: #333;
  margin-bottom: 12px;
  display: block;
}

.combo-card del {
  color: #999;
  margin-left: 8px;
  font-size: 0.95rem;
}

.combo-card button {
  background-color: #388e3c;
  color: white;
  padding: 10px 22px;
  border: none;
  border-radius: 20px;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.combo-card button:hover {
  background-color: #2e7d32;
}

/*menu.css*/
/* General Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Segoe UI", sans-serif;
  background-color: #f7f5f2;
  color: #333;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

/* Navbar */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 30px;
  background-color: #2e7d32;
  color: white;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.logo {
  font-size: 1.8rem;
  font-weight: bold;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 25px;
}

.nav-links li a {
  text-decoration: none;
  color: white;
  font-size: 1.1rem;
  transition: color 0.3s ease;
}

.nav-links li a:hover {
  color: #c8e6c9;
}

/* Menu Section */
.menu-section {
  flex: 1;
  text-align: center;
  padding: 40px 20px;
}

.menu-section h1 {
  font-size: 2.5rem;
  color: #2e7d32;
  margin-bottom: 30px;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
  max-width: 1000px;
  margin: 0 auto;
}

.menu-item {
  background-color: white;
  padding: 20px;
  border-radius: 16px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.menu-item:hover {
  transform: translateY(-5px);
}

.menu-item img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 15px;
}

.menu-item h3 {
  color: #2e7d32;
  margin-bottom: 10px;
  font-size: 1.3rem;
}

.menu-item p {
  font-size: 1rem;
  margin-bottom: 10px;
}

.menu-item span {
  font-weight: bold;
  font-size: 1.1rem;
  color: #333;
  margin-bottom: 12px;
}

/* Add to Cart Button */
.cart-btn {
  background-color: #2e7d32;
  color: white;
  padding: 10px 20px;
  border: none;
  border-radius: 20px;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.cart-btn:hover {
  background-color: #1b5e20;
}

/* Footer */
.footer {
  text-align: center;
  padding: 15px 0;
  background-color: #2e7d32;
  color: white;
  font-size: 0.9rem;
}

/*cart.css*/
/* --- Cart Page Specific Styles (replacing previous cart.css content) --- */

.cart-page-content {
    flex: 1; /* Ensures content pushes footer down */
    padding: 40px 20px;
    background-color: #f8f8f8; /* Lighter background for the page content */
    display: flex;
    flex-direction: column;
    align-items: center;
}

.cart-page-content h1 {
    color: #2e7d32;
    margin-bottom: 30px;
    font-size: 2.8rem;
    text-align: center;
}

.cart-sections-wrapper {
    display: flex;
    flex-wrap: wrap; /* Allows sections to wrap on smaller screens */
    justify-content: center; /* Center align sections */
    gap: 30px; /* Space between cart summary and order form */
    max-width: 1200px; /* Max width for the entire cart layout */
    width: 100%;
    margin-bottom: 50px; /* Space above the footer */
}

/* Cart Summary Section */
.cart-summary-section {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    width: 100%;
    max-width: 500px; /* Max width for cart items list */
    display: flex;
    flex-direction: column;
}

.cart-items-list {
    margin-bottom: 25px;
    border-bottom: 1px solid #eee;
    padding-bottom: 15px;
}

.cart-summary-section .cart-item-card { /* Specific styling for items in cart */
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-top: 1px solid #eee; /* Line above each item */
}

.cart-summary-section .cart-item-card:first-child {
    border-top: none; /* No top border for the first item */
}

.cart-summary-section .item-left {
    display: flex;
    align-items: center;
    gap: 15px;
}

.cart-summary-section .item-image {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.cart-summary-section .item-details {
    text-align: left;
}

.cart-summary-section .item-details strong {
    font-size: 1.15rem;
    color: #333;
}

.cart-summary-section .item-price-quantity {
    font-size: 1rem;
    color: #666;
}

.cart-summary-section .remove-item-btn {
    background: #e57373; /* Lighter red for remove button */
    color: white;
    border: none;
    padding: 8px 15px;
    border-radius: 20px; /* Pill shape */
    cursor: pointer;
    font-size: 0.9rem;
    transition: background-color 0.3s ease;
}

.cart-summary-section .remove-item-btn:hover {
    background: #ef5350; /* Darker red on hover */
}

.total-price-display {
    font-size: 1.8rem;
    margin: 20px 0;
    font-weight: bold;
    color: #2e7d32; /* Green for total price */
    text-align: right;
    border-top: 2px solid #a5d6a7; /* Stronger line above total */
    padding-top: 15px;
}

.cart-actions {
    display: flex;
    justify-content: space-between; /* Space out the action buttons */
    gap: 15px;
    margin-top: 20px;
}

.cart-actions button {
    flex: 1; /* Makes buttons take equal width */
    padding: 12px 20px;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.clear-cart-btn {
    background: #ffb74d; /* Orange for clear cart */
    color: white;
}

.clear-cart-btn:hover {
    background: #ffa726;
    transform: translateY(-2px);
}

.continue-shopping-btn {
    background: #66bb6a; /* Green for continue shopping */
    color: white;
}

.continue-shopping-btn:hover {
    background: #4caf50;
    transform: translateY(-2px);
}

/* Order Form Section */
.order-form-section { /* Renamed from order-form */
    background-color: #fff;
    border: 1px solid #eee;
    padding: 30px;
    border-radius: 15px;
    width: 100%;
    max-width: 400px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.order-form-section h2 {
    margin-bottom: 25px;
    text-align: center;
    color: #2e7d32;
    font-size: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}
.order-form-section h2 i {
    font-size: 1.8rem;
}

.order-form-section label {
    display: flex; /* Make label and icon align */
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
    font-weight: bold;
    color: #444;
}
.order-form-section label i {
    color: #2e7d32;
    font-size: 1.1rem;
}


.order-form-section input[type="text"] {
    width: calc(100% - 20px); /* Adjust for padding */
    padding: 12px 10px;
    margin-bottom: 20px;
    border-radius: 8px;
    border: 1px solid #ddd;
    font-size: 1rem;
    box-shadow: inset 0 1px 3px rgba(0,0,0,0.05);
}
.order-form-section input[type="text"]:focus {
    border-color: #a5d6a7;
    outline: none;
    box-shadow: 0 0 0 3px rgba(165, 214, 167, 0.5);
}

.payment-options p {
    font-weight: bold;
    margin-bottom: 15px;
    color: #444;
    display: flex;
    align-items: center;
    gap: 8px;
}
.payment-options p i {
    color: #2e7d32;
    font-size: 1.1rem;
}

.payment-option {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    cursor: pointer;
    padding: 10px;
    border: 1px solid #eee;
    border-radius: 8px;
    transition: background-color 0.2s ease, border-color 0.2s ease;
}

.payment-option:hover {
    background-color: #f0fdf4;
    border-color: #a5d6a7;
}

.payment-option input[type="radio"] {
    appearance: none; /* Hide default radio button */
    -webkit-appearance: none;
    width: 20px;
    height: 20px;
    border: 2px solid #ccc;
    border-radius: 50%;
    margin-right: 15px;
    position: relative;
    cursor: pointer;
    flex-shrink: 0;
}

.payment-option input[type="radio"]:checked {
    border-color: #2e7d32;
}

.payment-option input[type="radio"]:checked::before {
    content: '';
    width: 10px;
    height: 10px;
    background-color: #2e7d32;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}


.pay-label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.05rem;
    color: #333;
}

.pay-label i {
    font-size: 1.4rem;
    color: #2e7d32;
}

.place-order-btn { /* Specific styling for place order button */
    background-color: #2e7d32;
    color: white;
    padding: 15px;
    border: none;
    width: 100%;
    border-radius: 8px;
    font-weight: bold;
    font-size: 1.2rem;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    margin-top: 20px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.place-order-btn:hover {
    background-color: #225c26;
    transform: translateY(-3px);
}


/* Media Queries for Responsiveness */
@media (max-width: 768px) {
    .cart-sections-wrapper {
        flex-direction: column; /* Stack sections vertically */
        align-items: center;
    }

    .cart-summary-section,
    .order-form-section {
        max-width: 90%; /* Adjust width for smaller screens */
    }

    .cart-page-content h1 {
        font-size: 2.2rem;
    }

    .total-price-display {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .cart-summary-section,
    .order-form-section {
        max-width: 95%; /* Even narrower for very small screens */
        padding: 20px;
    }
    .cart-summary-section .item-image {
        width: 60px;
        height: 60px;
    }
    .cart-summary-section .item-details strong {
        font-size: 1rem;
    }
    .cart-actions button,
    .place-order-btn {
        font-size: 1rem;
        padding: 10px 15px;
    }
    .order-form-section h2 {
        font-size: 1.5rem;
    }
}

/*inline styles*/
body {
      font-family: Arial, sans-serif;
      background: linear-gradient(to right, #e8f5e9, #a8c7a9);
      margin: 0;
      padding: 20px;
      text-align: center;
    }

    h1 {
      color: #2e7d32;
    }

    .mood-buttons {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 15px;
      margin-top: 30px;
    }

    .mood-buttons button {
      padding: 15px 25px;
      font-size: 16px;
      border: none;
      border-radius: 8px;
      background-color: #81c784;
      color: white;
      cursor: pointer;
      transition: 0.3s;
    }

    .mood-buttons button:hover {
      background-color: #66bb6a;
    }

    .recommendation {
      margin-top: 40px;
      font-size: 20px;
      font-weight: bold;
      color: #333;
    }

    .coffee-image {
      margin-top: 15px;
      max-width: 200px;
      border-radius: 10px;
    }

    body {
      font-family: Arial, sans-serif;
      background: #f3f3f3;
      margin: 0;
      padding: 0;
    }
    .container {
      max-width: 800px;
      margin: 40px auto;
      background: white;
      padding: 30px;
      border-radius: 12px;
      box-shadow: 0 0 15px rgba(0,0,0,0.1);
    }
    h1 {
      text-align: center;
      color: #2e7d32;
    }
    p {
      font-size: 18px;
      line-height: 1.6;
    }

    body {
      font-family: Arial, sans-serif;
      background: #f3f3f3;
      margin: 0;
      padding: 0;
    }
    .container {
      max-width: 700px;
      margin: 40px auto;
      background: white;
      padding: 30px;
      border-radius: 12px;
      box-shadow: 0 0 15px rgba(0,0,0,0.1);
    }
    h1 {
      text-align: center;
      color: #2e7d32;
    }
    .contact-info {
      font-size: 18px;
      line-height: 1.8;
    }
    .contact-info a {
      color: #2e7d32;
      text-decoration: none;
    }

/* main.css */

/* --- Notification Toast --- */
.notification {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #2e7d32;
  color: white;
  padding: 15px 25px;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  transform: translateY(150%);
  opacity: 0;
  transition: transform 0.5s ease, opacity 0.5s ease;
  z-index: 1000;
}

.notification.show {
  transform: translateY(0);
  opacity: 1;
}

/* main.css */

/* --- Cart Count Badge --- */
.cart-count-badge {
    background-color: #ef5350; /* A contrasting red */
    color: white;
    padding: 2px 7px;
    border-radius: 10px;
    font-size: 0.8rem;
    font-weight: bold;
    vertical-align: top;
    margin-left: 5px;
}

/* Add this to main.css */

/* --- Layout Fix for Sticky Footer --- */
/* This targets the main content area of each page and tells it to grow. */
.welcome-section,
.combo-section,
.menu-section,
.cart-container,
.mood-container,
.container { /* This is used by about.html and contact.html */
  flex: 1;
}

/* --- About Page Styles --- */

.about-section {
    flex: 1; /* Makes section fill space */
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 50px 20px;
    background-color: #f8f8f8;
}

.about-container {
    display: flex;
    flex-wrap: wrap; /* Allows wrapping on smaller screens */
    align-items: center;
    max-width: 1100px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    overflow: hidden; /* Keeps image corners rounded */
}

.about-image {
    flex: 1; /* Takes up half the space */
    min-width: 300px;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block; /* Removes bottom space under image */
}

.about-content {
    flex: 1; /* Takes up the other half */
    min-width: 300px;
    padding: 40px;
}

.about-content h1 {
    font-size: 2.8rem;
    color: #2e7d32;
    margin-bottom: 20px;
}

.about-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 15px;
}

/* In main.css */
.mission-statement {
    font-size: 1.2rem;
    font-weight: bold;
    color: #2e7d32;
    border-left: 4px solid #a5d6a7;
    padding-left: 15px;
    margin-top: 25px;
    display: flex; /* Add this */
    align-items: center; /* Add this */
}
.mission-statement i {
    margin-right: 8px;
}

/* --- Contact Page Styles --- */

.contact-section {
    flex: 1;
    padding: 50px 20px;
    background: linear-gradient(to bottom, #f0fdf4, #ffffff);
    text-align: center;
}

.contact-section h1 {
    font-size: 2.8rem;
    color: #2e7d32;
    margin-bottom: 10px;
}

.contact-subtitle {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 40px;
}

.contact-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    text-align: left;
}

.contact-info {
    flex: 1;
    min-width: 320px;
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 25px;
}

.info-item i {
    font-size: 1.8rem;
    color: #2e7d32;
    margin-top: 5px;
    width: 30px; /* Aligns icons neatly */
    text-align: center;
}

.info-item strong {
    font-size: 1.2rem;
    color: #333;
    display: block;
    margin-bottom: 5px;
}

.info-item p {
    font-size: 1rem;
    color: #666;
    margin: 0;
}

.info-item a {
    color: #388e3c;
    text-decoration: none;
    transition: color 0.3s;
}

.info-item a:hover {
    color: #1b5e20;
    text-decoration: underline;
}

.social-links .fab {
    font-family: 'Font Awesome 6 Brands'; /* Helps some browsers find the icons */
}

.social-links {
    margin-top: 30px;
    text-align: center;
    border-top: 1px solid #eee;
    padding-top: 20px;
}

.social-links a {
    color: #2e7d32;
    font-size: 1.5rem;
    margin: 0 15px;
    transition: color 0.3s, transform 0.3s;
    display: inline-block;
}

.social-links a:hover {
    color: #1b5e20;
    transform: scale(1.2);
}

.contact-map {
    flex: 1.5;
    min-width: 320px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.contact-map img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Responsive adjustments for about and contact pages */
@media (max-width: 768px) {
    .about-container {
        flex-direction: column;
    }
    .about-content, .contact-info, .contact-map {
        padding: 30px;
    }
    .about-content h1, .contact-section h1 {
        font-size: 2.2rem;
    }
}

/* --- Login & Register Form Styles --- */

.form-container {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px 20px;
    background-color: #f8f8f8;
}

.form-container form {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    width: 100%;
    max-width: 400px;
}

.form-container h2 {
    text-align: center;
    color: #2e7d32;
    font-size: 2.2rem;
    margin-bottom: 25px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
    color: #555;
}

.form-group input {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    box-sizing: border-box; /* Important for padding */
}

.form-btn {
    width: 100%;
    padding: 15px;
    background-color: #388e3c;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.form-btn:hover {
    background-color: #2e7d32;
}

.form-footer {
    text-align: center;
    margin-top: 20px;
    color: #666;
}

.form-footer a {
    color: #2e7d32;
    text-decoration: none;
    font-weight: bold;
}

/* Logout Button Style */
.logout-btn {
    background-color: #ef5350;
    color: white;
    border: none;
    padding: 2px 15px;
    border-radius: 20px;
    cursor: pointer;
    font-size: 1rem;
    font-family: 'Segoe UI', sans-serif;
    transition: background-color 0.3s ease;
}
.logout-btn:hover {
    background-color: #d32f2f;
}

/* --- Profile Page & Order History Styles --- */
.profile-container {
    flex: 1;
    padding: 40px 20px;
    max-width: 900px;
    margin: 0 auto;
    width: 100%;
}
.profile-container h1 {
    text-align: center;
    color: #2e7d32;
    font-size: 2.5rem;
    margin-bottom: 30px;
}
.order-card {
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    margin-bottom: 20px;
    padding: 20px;
    border: 1px solid #eee;
}
.order-header {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    border-bottom: 1px solid #f0f0f0;
    padding-bottom: 10px;
    margin-bottom: 15px;
}
.order-header strong {
    color: #333;
}
.order-header span {
    color: #666;
}
.order-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 10px 0;
}
.order-item img {
    width: 50px;
    height: 50px;
    border-radius: 5px;
    object-fit: cover;
}

/* --- Mood Selector Page Styles --- */
.mood-page-content {
    flex: 1;
    text-align: center;
    padding: 40px 20px;
}
.mood-page-content h1 {
    font-size: 2.5rem;
    color: #2e7d32;
    margin-bottom: 20px;
}
.mood-buttons {
    margin-bottom: 40px;
}
.mood-btn { /* Style for mood buttons */
    padding: 12px 25px;
    font-size: 1.1rem;
    border: 2px solid #a5d6a7;
    border-radius: 30px;
    background-color: white;
    color: #333;
    cursor: pointer;
    transition: all 0.3s ease;
    margin: 5px;
}
.mood-btn:hover {
    background-color: #f0fdf4;
    transform: translateY(-2px);
}
.mood-btn.active { /* Style for the SELECTED button */
    background-color: #2e7d32;
    color: white;
    border-color: #2e7d32;
    transform: scale(1.05);
}
#mood-results-title {
    font-size: 2rem;
    color: #333;
    margin-bottom: 20px;
    min-height: 32px; /* Prevents layout shift */
}
.initial-prompt {
    font-size: 1.2rem;
    color: #777;
}

/* --- Stripe Payment Form Styles --- */
.payment-title {
    font-weight: bold;
    margin: 20px 0 10px 0;
    color: #444;
    display: flex;
    align-items: center;
    gap: 8px;
}
.payment-title i {
    color: #2e7d32;
    font-size: 1.1rem;
}
#card-element {
    border: 1px solid #ddd;
    padding: 12px;
    border-radius: 8px;
    background: white;
}
#card-errors {
    color: #fa755a;
    font-size: 0.9rem;
    margin-top: 8px;
    min-height: 1em;
}

