/* Main CSS file for Sweet Lickins */

/* Color Variables */
:root {
  --primary-pink: #ff80ab;
  --secondary-pink: #ff4081;
  --light-pink: #ffb2c1;
  --pastel-pink: #ffd6e0;
  --pastel-blue: #d6f5ff;
  --soft-yellow: #fff8dc;
  --mint-green: #dcfff8;
  --dark-brown: #5d4037;
  --light-brown: #8d6e63;
  --cream: #fff8e1;
  --white: #ffffff;
}

/* Global Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Arial', sans-serif;
}

body {
  background-color: var(--cream);
  color: var(--dark-brown);
  line-height: 1.6;
}

a {
  text-decoration: none;
  color: var(--dark-brown);
  transition: color 0.3s;
}

a:hover {
  color: var(--secondary-pink);
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--dark-brown);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.btn {
  display: inline-block;
  padding: 10px 20px;
  background-color: var(--primary-pink);
  color: var(--white);
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.btn:hover {
  background-color: var(--secondary-pink);
}

/* Header Styles */
header {
  background-color: var(--white);
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  position: sticky;
  top: 0;
  z-index: 100;
}

.top-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 5%;
  background-color: var(--primary-pink);
}

.social-links a {
  color: var(--white);
  margin-right: 15px;
  font-size: 1.2em;
  transition: transform 0.3s;
}

.social-links a:hover {
  transform: scale(1.2);
}

.user-actions {
  color: var(--white);
}

.user-actions a {
  color: var(--white);
  margin-left: 15px;
  font-weight: bold;
}

.user-actions a:hover {
  color: var(--dark-brown);
}

.logo-container {
  display: flex;
  justify-content: center;
  padding: 20px 0;
  /* Sweet treat-themed gradient background */
  background: linear-gradient(to right, var(--pastel-pink), var(--soft-yellow), var(--mint-green), var(--pastel-blue));
  /* Alternative: Striped pattern like a candy shop */
  /* background: repeating-linear-gradient(45deg, var(--pastel-pink), var(--pastel-pink) 10px, var(--soft-yellow) 10px, var(--soft-yellow) 20px); */
}

.logo {
  max-height: 100px;
  width: auto;
  /* Add a subtle drop shadow to the logo to make it pop against the colorful background */
  filter: drop-shadow(2px 2px 3px rgba(0,0,0,0.2));
}

.main-nav ul {
  display: flex;
  justify-content: center;
  list-style: none;
  padding: 0;
  background-color: var(--light-pink);
}

.main-nav li {
  padding: 0;
}

.main-nav a {
  display: block;
  padding: 15px 20px;
  color: var(--dark-brown);
  font-weight: bold;
  transition: background-color 0.3s;
}

.main-nav a:hover, .main-nav a.active {
  background-color: var(--secondary-pink);
  color: var(--white);
}

/* Main Content */
main {
  min-height: 500px;
  padding: 40px 0;
}

.page-title {
  text-align: center;
  margin-bottom: 30px;
  color: var(--dark-brown);
  position: relative;
}

.page-title::after {
  content: "";
  display: block;
  width: 80px;
  height: 3px;
  background-color: var(--primary-pink);
  margin: 10px auto;
}

/* Hero Section with Two Columns */
.hero {
  background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('../images/hero-bg.jpg');
  background-size: cover;
  background-position: center;
  color: var(--white);
  padding: 80px 20px;
  margin-bottom: 40px;
}

.hero-two-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}

.hero-logo-column {
  display: flex;
  justify-content: center;
}

.hero-logo {
  max-width: 400px;
  width: 100%;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.4);
  transition: transform 0.3s;
}

.hero-logo:hover {
  transform: scale(1.02);
}

.hero-content-column {
  text-align: left;
}

.hero h1 {
  font-size: 2.8em;
  color: var(--white);
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero p {
  font-size: 1.2em;
  margin-bottom: 30px;
}

.featured-products {
  padding: 40px 0;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 30px;
}

.product-card {
  background-color: var(--white);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 3px 10px rgba(0,0,0,0.1);
  transition: transform 0.3s;
}

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

.product-img {
  height: 200px;
  width: 100%;
  object-fit: cover;
}

.product-info {
  padding: 15px;
}

.product-title {
  font-size: 1.2em;
  margin-bottom: 5px;
}

.product-price {
  color: var(--secondary-pink);
  font-weight: bold;
  margin-bottom: 10px;
}

/* Text center utility class */
.text-center {
  text-align: center;
}

/* Forms */
.form-container {
  max-width: 500px;
  margin: 0 auto;
  background-color: var(--white);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 3px 15px rgba(0,0,0,0.1);
}

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

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

.form-input {
  width: 100%;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 5px;
}

.form-input:focus {
  outline: none;
  border-color: var(--primary-pink);
}

.error-message {
  color: #f44336;
  font-size: 0.9em;
  margin-top: 5px;
}

.success-message {
  background-color: #dff0d8;
  color: #3c763d;
  padding: 10px;
  border-radius: 5px;
  margin-bottom: 20px;
}

/* Footer Styles */
footer {
  background-color: var(--dark-brown);
  color: var(--white);
  padding-top: 40px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.footer-section h3 {
  color: var(--white);
  position: relative;
  margin-bottom: 20px;
}

.footer-section h3::after {
  content: "";
  display: block;
  width: 50px;
  height: 2px;
  background-color: var(--primary-pink);
  margin-top: 10px;
}

.footer-section p {
  margin-bottom: 10px;
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 10px;
}

.footer-section a {
  color: var(--cream);
}

.footer-section a:hover {
  color: var(--primary-pink);
}

.footer-section .social-links {
  margin-top: 20px;
}

.footer-section .social-links a {
  margin-right: 15px;
  color: var(--white);
}

.newsletter {
  margin-top: 20px;
}

.newsletter h4 {
  margin-bottom: 12px;
  color: var(--white);
}

.newsletter input {
  width: 100%;
  padding: 10px;
  margin-bottom: 10px;
  border: none;
  border-radius: 5px;
  font-size: 14px;
}

.newsletter button {
  background-color: var(--primary-pink);
  color: var(--white);
  border: none;
  padding: 10px 15px;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s;
  font-weight: 600;
}

.newsletter button:hover {
  background-color: var(--secondary-pink);
}

.newsletter button:disabled {
  background-color: #ccc;
  cursor: not-allowed;
  animation: pulse 1.5s infinite;
}

/* AJAX Newsletter Message Container */
#newsletter-message {
  margin-bottom: 10px;
  min-height: 20px;
  transition: all 0.3s ease;
  width: 100%;
}

#newsletter-message .success-message,
#newsletter-message .error-message {
  padding: 8px;
  border-radius: 4px;
  margin-bottom: 10px;
  transition: opacity 0.5s ease;
  font-size: 14px;
}

#newsletter-message .success-message {
  background-color: rgba(76, 175, 80, 0.2);
  color: #2e7d32;
  border: 1px solid #2e7d32;
}

#newsletter-message .error-message {
  background-color: rgba(244, 67, 54, 0.2);
  color: #c62828;
  border: 1px solid #c62828;
}

.footer-bottom {
  background-color: rgba(0,0,0,0.2);
  padding: 15px 0;
  text-align: center;
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.footer-bottom p {
  margin-bottom: 5px;
}

.design-credit {
  font-size: 0.9em;
  margin-top: 5px;
}

.design-credit a {
  color: var(--light-pink);
  transition: color 0.3s;
}

.design-credit a:hover {
  color: var(--white);
  text-decoration: underline;
}

/* About Page */
.about-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-bottom: 50px;
}

.about-image img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* About Page Paragraph Spacing */
.about-text p {
  margin-bottom: 15px;
}

.paragraph-spacing {
  margin-top: 25px;
}

.about-text h2 {
  margin-bottom: 25px;
}

/* Styled About Page Feature Image */
.about-feature-image {
  max-width: 90%;
  height: auto;
  border-radius: 15px;
  border: 5px solid var(--light-pink);
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s;
  display: block;
  margin: 0 auto;
}

.about-feature-image:hover {
  transform: scale(1.02);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin: 30px 0 50px;
}

.value-item {
  background-color: var(--white);
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 3px 10px rgba(0,0,0,0.1);
  transition: transform 0.3s;
}

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

.value-icon {
  font-size: 2.5em;
  color: var(--primary-pink);
  margin-bottom: 15px;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  margin: 30px 0 50px;
}

.team-member {
  background-color: var(--white);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 3px 10px rgba(0,0,0,0.1);
  text-align: center;
}

.member-image img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.team-member h3 {
  margin: 15px 0 5px;
}

.member-title {
  color: var(--primary-pink);
  font-weight: bold;
  margin-bottom: 10px;
}

.member-bio {
  padding: 0 15px 15px;
}

.testimonial-carousel {
  margin: 30px 0 50px;
}

.testimonial {
  background-color: var(--white);
  border-radius: 10px;
  padding: 30px;
  margin-bottom: 30px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.quote {
  font-style: italic;
  position: relative;
  padding: 0 20px;
}

.quote i {
  color: var(--primary-pink);
  opacity: 0.5;
}

.quote i.fa-quote-left {
  position: absolute;
  left: 0;
  top: 0;
}

.quote i.fa-quote-right {
  position: absolute;
  right: 0;
  bottom: 0;
}

.author {
  text-align: right;
  font-weight: bold;
  margin-top: 15px;
}

.about-cta {
  background-color: var(--primary-pink);
  color: var(--white);
  padding: 50px 30px;
  text-align: center;
  border-radius: 10px;
  margin-bottom: 50px;
}

.about-cta h2 {
  color: var(--white);
}

.cta-buttons {
  margin-top: 20px;
}

.btn-outline {
  background-color: transparent;
  border: 2px solid var(--white);
  margin-left: 15px;
}

.btn-outline:hover {
  background-color: var(--white);
  color: var(--primary-pink);
}

/* Contact Page */
.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-bottom: 50px;
}

.contact-info, .contact-form {
  background-color: var(--white);
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 3px 15px rgba(0,0,0,0.1);
}

.contact-details {
  margin: 30px 0;
}

.contact-item {
  display: flex;
  margin-bottom: 20px;
}

.contact-item i {
  font-size: 1.5em;
  color: var(--primary-pink);
  margin-right: 15px;
  width: 30px;
  text-align: center;
}

.social-follow {
  margin-top: 30px;
}

/* Contact Page Social Icons */
.contact-social {
  display: flex;
  margin-top: 15px;
}

.contact-social a {
  display: inline-block;
  margin-right: 20px;
  color: var(--primary-pink);
  transition: transform 0.3s, color 0.3s;
}

.contact-social a:hover {
  transform: scale(1.1);
  color: var(--secondary-pink);
}

/* Make sure TikTok icon is visible */
.contact-social .fa-tiktok {
  color: var(--primary-pink);
}

.contact-social .fa-tiktok:hover {
  color: var(--secondary-pink);
}

/* Ensure spacing between icons */
.contact-social i {
  margin-right: 5px;
}

.map-container {
  margin-bottom: 50px;
}

.map img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 3px 15px rgba(0,0,0,0.1);
}

/* Shop Page */
.shop-filters {
  display: flex;
  justify-content: space-between;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.category-filter, .sort-filter {
  margin-bottom: 20px;
}

.shop-filters select {
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 5px;
  margin-left: 10px;
}

/* Menu Page */
.menu-tabs {
  margin-bottom: 30px;
}

.menu-nav {
  display: flex;
  justify-content: center;
  list-style: none;
  flex-wrap: wrap;
}

.menu-nav li {
  padding: 10px 20px;
  margin: 0 5px 10px;
  background-color: var(--white);
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.menu-nav li.active, .menu-nav li:hover {
  background-color: var(--primary-pink);
  color: var(--white);
}

.menu-section {
  margin-bottom: 50px;
}

.section-title {
  border-bottom: 2px solid var(--primary-pink);
  padding-bottom: 10px;
  margin-bottom: 20px;
}

.menu-items {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
}

.menu-item {
  display: flex;
  background-color: var(--white);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.menu-item-image {
  width: 120px;
  flex-shrink: 0;
}

.menu-item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.menu-item-info {
  padding: 15px;
}

.item-description {
  font-size: 0.9em;
  margin-bottom: 10px;
}

.item-price {
  font-weight: bold;
  color: var(--secondary-pink);
}

/* Gallery Page */
.gallery-filters {
  margin-bottom: 30px;
  text-align: center;
}

.filter-btn {
  padding: 8px 15px;
  margin: 0 5px 10px;
  background-color: var(--white);
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.filter-btn.active, .filter-btn:hover {
  background-color: var(--primary-pink);
  color: var(--white);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 20px;
  margin-bottom: 30px;
}

.gallery-item {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.gallery-image img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.3s;
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.7);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity 0.3s;
}

.gallery-item:hover .gallery-image img {
  transform: scale(1.1);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-title {
  color: var(--white);
  margin-bottom: 15px;
  text-align: center;
  padding: 0 10px;
}

.gallery-zoom {
  color: var(--white);
  font-size: 1.5em;
  background-color: var(--primary-pink);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: background-color 0.3s;
}

.gallery-zoom:hover {
  background-color: var(--secondary-pink);
}

.gallery-pagination {
  text-align: center;
  margin-bottom: 30px;
}

.share-your-treats {
  background-color: var(--light-pink);
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  margin-bottom: 50px;
}

.share-your-treats .social-icons {
  margin-top: 20px;
}

.share-your-treats .social-icons a {
  margin: 0 10px;
  color: var(--dark-brown);
}

/* Specials Page */
.specials-banner {
  background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('../images/specials-banner.jpg');
  background-size: cover;
  background-position: center;
  color: var(--white);
  padding: 50px 20px;
  text-align: center;
  border-radius: 10px;
  margin-bottom: 40px;
}

.special-card {
  display: grid;
  grid-template-columns: 1fr 2fr;
  background-color: var(--white);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 3px 15px rgba(0,0,0,0.1);
  margin-bottom: 30px;
}

.special-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.special-content {
  padding: 20px;
}

.special-dates, .special-code {
  margin-top: 15px;
}

.code {
  background-color: var(--primary-pink);
  color: var(--white);
  padding: 5px 10px;
  border-radius: 5px;
  font-weight: bold;
}

.no-specials {
  background-color: var(--white);
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 3px 15px rgba(0,0,0,0.1);
  margin-bottom: 30px;
}

.season-tabs {
  display: flex;
  justify-content: center;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.season-tab {
  padding: 10px 20px;
  margin: 0 5px 10px;
  background-color: var(--white);
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.season-tab.active, .season-tab:hover {
  background-color: var(--primary-pink);
  color: var(--white);
}

.loyalty-program {
  background-color: var(--light-pink);
  padding: 50px 30px;
  border-radius: 10px;
  margin: 50px 0;
  text-align: center;
}

.loyalty-benefits {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin: 30px 0;
}

.benefit {
  background-color: var(--white);
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.benefit i {
  font-size: 2em;
  color: var(--primary-pink);
  margin-bottom: 15px;
}

.newsletter-signup {
  background-color: var(--white);
  padding: 50px 30px;
  border-radius: 10px;
  box-shadow: 0 3px 15px rgba(0,0,0,0.1);
  text-align: center;
  margin-bottom: 50px;
}

/* Newsletter Form Styles */
.newsletter-form {
  max-width: 500px;
  margin: 30px auto 0;
  display: flex;
  flex-wrap: wrap;
  position: relative;
}

.newsletter-form input {
  flex: 1;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 5px 0 0 5px;
  min-width: 200px;
}

.newsletter-form button {
  padding: 10px 20px;
  border-radius: 0 5px 5px 0;
  background-color: var(--primary-pink);
  color: var(--white);
  border: none;
  cursor: pointer;
  transition: background-color 0.3s;
}

.newsletter-form button:hover {
  background-color: var(--secondary-pink);
}

.newsletter-form button:disabled {
  background-color: #ccc;
  cursor: not-allowed;
}

/* Custom Orders Page */
.custom-order-intro {
  background-color: var(--white);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 3px 15px rgba(0,0,0,0.1);
  margin-bottom: 30px;
}

.custom-order-form {
  background-color: var(--white);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 3px 15px rgba(0,0,0,0.1);
  margin-bottom: 50px;
}

.form-section {
  margin-bottom: 30px;
}

.form-section h3 {
  border-bottom: 2px solid var(--primary-pink);
  padding-bottom: 10px;
  margin-bottom: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.checkbox-group {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 10px;
}

.checkbox-label {
  display: flex;
  align-items: center;
}

.checkbox-label input {
  margin-right: 10px;
}

.terms-box {
  background-color: var(--cream);
  padding: 20px;
  border-radius: 5px;
  margin-bottom: 20px;
}

.terms-box ul {
  margin-left: 20px;
}

.custom-order-examples {
  margin-bottom: 50px;
}

.gallery-caption {
  background-color: rgba(0,0,0,0.7);
  color: var(--white);
  padding: 10px;
  position: absolute;
  bottom: 0;
  width: 100%;
  text-align: center;
}

/* TikTok icon style */
.fab.fa-tiktok {
  position: relative;
  display: inline-block;
  text-align: center;
}

/* Message Styles */
.message {
  position: fixed;
  top: 20px;
  right: 20px;
  padding: 15px 20px;
  border-radius: 5px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.2);
  transform: translateX(120%);
  transition: transform 0.3s;
  z-index: 1000;
}

.message.show {
  transform: translateX(0);
}

.success-message {
  background-color: #4caf50;
  color: white;
}

.error-message {
  background-color: #f44336;
  color: white;
}

.info-message {
  background-color: #2196f3;
  color: white;
}

/* Loading Animation for Subscribe Button */
@keyframes pulse {
  0% { opacity: 1; }
  50% { opacity: 0.6; }
  100% { opacity: 1; }
}

/* Responsive Design */
@media (max-width: 992px) {
  .hero-logo {
      max-width: 350px;
  }
  
  .hero h1 {
      font-size: 2.4em;
  }
}

@media (max-width: 768px) {
  .about-intro, .contact-wrapper, .special-card {
      grid-template-columns: 1fr;
  }
  
  .main-nav ul {
      flex-direction: column;
  }
  
  .hero-two-columns {
      grid-template-columns: 1fr;
  }
  
  .hero-content-column {
      text-align: center;
      order: 2;
  }
  
  .hero-logo-column {
      order: 1;
  }
  
  .hero-logo {
      max-width: 300px;
  }
  
  .hero h1 {
      font-size: 2.2em;
  }
  
  .footer-content {
      grid-template-columns: 1fr;
  }
  
  .menu-item {
      flex-direction: column;
  }
  
  .menu-item-image {
      width: 100%;
      height: 150px;
  }
  
  /* Adjust About image size on smaller screens */
  .about-feature-image {
    max-width: 80%;
    margin-bottom: 20px;
  }
  
  /* Responsive Newsletter */
  .newsletter-form {
    flex-direction: column;
  }
  
  .newsletter-form input {
    border-radius: 5px;
    margin-bottom: 10px;
  }
  
  .newsletter-form button {
    border-radius: 5px;
    width: 100%;
  }
  
  #newsletter-message {
    font-size: 13px;
  }
}

/* Animation Keyframes */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.fade-in {
  animation: fadeIn 1s;
}

/* Make team member images unique with pink border and radius */
.team-member .member-image img {
  width: 100%;
  height: auto;
  object-fit: contain;
  max-height: 300px;
  border: 5px solid var(--primary-pink); /* Pink border using your brand color */
  border-radius: 15px; /* Rounded corners */
  box-shadow: 0 5px 15px rgba(0,0,0,0.1); /* Subtle shadow for depth */
  transition: transform 0.3s ease, box-shadow 0.3s ease; /* Smooth transition for hover effect */
}

/* Add a nice hover effect */
.team-member .member-image img:hover {
  transform: translateY(-5px); /* Slight lift on hover */
  box-shadow: 0 8px 20px rgba(0,0,0,0.15); /* Enhanced shadow on hover */
  border-color: var(--secondary-pink); /* Change to secondary pink on hover */
}

/* Add some padding and background to the image container */
.team-member .member-image {
  padding: 10px;
  background-color: var(--cream);
  border-radius: 15px;
  margin-bottom: 15px;
}

/* Add this to your style.css file */

/* Add vertical spacing between View Details and Add to Cart buttons */
.product-info .view-product {
  margin-bottom: 10px; /* Adds space below the View Details button */
  display: inline-block; /* Ensures the margin is applied properly */
}

/* Alternative approach with more space */
/* 
.product-info .view-product {
  margin-bottom: 15px; 
}
*/

/* Another option: add padding to the product info container for more overall spacing */
/*
.product-info {
  padding: 20px; /* Increase from the current 15px */

/* Modal Styling */
.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0,0,0,0.5);
}

.modal-content {
  background-color: var(--white);
  margin: 15% auto;
  padding: 25px;
  border: 1px solid var(--light-pink);
  border-radius: 10px;
  width: 80%;
  max-width: 600px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
  animation: modalFadeIn 0.3s;
  position: relative;
}

@keyframes modalFadeIn {
  from {opacity: 0; transform: translateY(-50px);}
  to {opacity: 1; transform: translateY(0);}
}

.close {
  color: var(--dark-brown);
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
  transition: color 0.3s;
}

.close:hover {
  color: var(--secondary-pink);
}

#modal-product-title {
  color: var(--secondary-pink);
  margin-bottom: 15px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--light-pink);
}

#modal-product-description {
  line-height: 1.6;
  color: var(--dark-brown);
}

/* Responsive Modal */
@media (max-width: 768px) {
  .modal-content {
    width: 90%;
    margin: 30% auto;
    padding: 20px;
  }
}

/* Product Description Styles */
.product-description {
  background-color: var(--cream);
  padding: 15px;
  margin: 10px 0;
  border-radius: 8px;
  border-left: 3px solid var(--primary-pink);
  line-height: 1.5;
  font-size: 0.95em;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  max-height: 150px;
  overflow-y: auto;
  transition: all 0.3s ease;
  animation: slideDown 0.3s ease;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
    max-height: 0;
  }
  to {
    opacity: 1;
    transform: translateY(0);
    max-height: 150px;
  }
}

.product-description p {
  margin: 0;
  color: var(--dark-brown);
}

/* Ensure buttons have consistent spacing */
.product-info .view-product {
  margin-bottom: 10px;
  width: 100%;
}

.product-info .add-to-cart {
  width: 100%;
  margin-top: 5px;
}

/* Style toggle for view description button */
.view-product[onclick="toggleDescription(this)"] {
  transition: background-color 0.3s;
}

.view-product[onclick="toggleDescription(this)"]:hover {
  background-color: var(--secondary-pink);
}

/* Scrollbar styling for description */
.product-description::-webkit-scrollbar {
  width: 8px;
}

.product-description::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 10px;
}

.product-description::-webkit-scrollbar-thumb {
  background: var(--primary-pink);
  border-radius: 10px;
}

.product-description::-webkit-scrollbar-thumb:hover {
  background: var(--secondary-pink);
}