:root {
  --color-primary: #FFD700;
  --color-secondary: #333333;
  --color-white: #ffffff;
  --color-light-bg: #FFF5E6;
  --color-accent: #FF8C00;
  --bg-soft-orange: #fff5eb;
}

body {
  background-color: var(--color-light-bg);
  color: var(--color-secondary);
  scroll-behavior: smooth;
}

/* New background transition animation */
@keyframes backgroundCycle {
  0%,
  100% {
    opacity: 0.7;
  }

  50% {
    opacity: 1;
  }
}

.bg-image-transition {
  animation: backgroundCycle 10s ease-in-out infinite;
  transition: background-image 1s ease-in-out;
}

/* Animaciones personalizadas */
@keyframes fade-in {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-fade-in {
  animation: fade-in 1s ease-out;
}

.animate-fade-in.delay-200 {
  animation-delay: 0.2s;
}

.bg-#ff6b00 {
  background-color: var(--color-primary);
}

.text-#ff6b00 {
  color: var(--color-primary);
}

.hover\:text-#fff200:hover {
  color: var(--color-accent);
}

a,
button {
  transition: all 0.3s ease;
  color: var(--color-secondary);
}

/* Additional color-specific adjustments */
.btn-primary {
  background-color: var(--color-primary);
  color: var(--color-secondary);
}

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

/* Make navigation bar thicker */
header nav {
  padding-top: 0.9rem;
  /* Adjusted padding */
  padding-bottom: 0.9rem;
  /* Adjusted padding */
}

/* Cart specific styles */
.cart-bg {
  background-color: var(--color-light-bg);
  /* Match body background */
  color: var(--color-secondary);
  /* Match body text color */
}

.cart-header {
  border-bottom: 1px solid var(--color-secondary);
}

.cart-item {
  border-bottom: 1px solid var(--color-secondary);
}

.cart-subtotal {
  color: var(--color-secondary);
}

.cart-checkout-button {
  background-color: var(--color-primary);
  color: var(--color-secondary);
}

.cart-checkout-button:hover {
  background-color: var(--color-accent);
}

.cart-continue-shopping {
  color: var(--color-secondary);
}

.cart-remove-button {
  color: var(--color-accent);
}

/* Product card adjustments */
.product-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  /* Ensure the card takes up full height */
}

.product-card .product-image {
  margin-bottom: 1rem;
}

.product-card .product-details {
  flex-grow: 1;
  /* Allow details to fill the space */
}

.product-card .product-button {
  margin-top: auto;
  /* Push the button to the bottom */
}

/* Testimonials Section */
.testimonial-card {
  background-color: var(--color-white);
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease-in-out;
  border: 1px solid rgba(0, 0, 0, 0.1);
}

.testimonial-card:hover {
  transform: translateY(-0.5rem);
}

.testimonial-card .testimonial-text {
  font-style: italic;
  margin-bottom: 1.5rem;
}

.testimonial-card .testimonial-author {
  font-weight: bold;
  color: var(--color-secondary);
}

/* Styling for testimonial navigation buttons */
.testimonial-nav-button {
  background-color: var(--color-primary);
  color: var(--color-secondary);
  border: none;
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.testimonial-nav-button:hover {
  background-color: var(--color-accent);
  color: var(--color-white);
}

/* Styles for the "About Us" page */
.about-us-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  padding: 2rem;
}

.about-us-image {
  border-radius: 1rem;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
}

.about-us-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about-us-team {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

.about-us-team-member {
  text-align: center;
}

.about-us-team-member img {
  border-radius: 50%;
  width: 100px;
  height: 100px;
  object-fit: cover;
  margin-bottom: 0.5rem;
}