/* General Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: 'Trebuchet MS', sans-serif;
    background-color: #f9f9f9;
  }
  
  a {
    text-decoration: none;
    color: inherit;
  }
  
  /* Navigation Bar */
  nav {
    background-color: #ffffff;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  nav .logo img {
    width: 120px;
  }
  
  nav .nav-links {
    list-style: none;
    display: flex;
  }
  
  nav .nav-links li {
    margin-left: 2rem;
  }
  
  nav .nav-links li a {
    color: #000000;
    font-size: 1.1rem;
  }
  
  nav .nav-links li:hover {
    border-bottom: 2px solid #ff7f50;
  }
  
  nav .nav-links .dropdown:hover .dropdown-menu {
    display: block;
  }
  
  nav .dropdown-menu {
    display: none;
    position: absolute;
    background-color: #333;
    list-style: none;
    padding: 1rem;
    top: 50px;
  }
  
  nav .dropdown-menu li a {
    color: #fff;
    font-size: 1rem;
    padding: 0.5rem 1rem;
  }
  
  nav .dropdown-menu li:hover {
    background-color: #ff7f50;
  }
  
  /* Mango Cakes Section */
  .mango-cakes {
    text-align: center;
    padding: 3rem 0;
  }
  
  .mango-cakes h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
  }
  
  .mango-slider {
    max-width: 80%;
    margin: 0 auto;
  }
  
  .mango-slider img {
    width: 100%;
    height: auto;
    border-radius: 8px;
  }
  
  .product-details {
    margin-top: 2rem;
    text-align: center;
  }
  
  .product-details h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    font-family: 'Trebuchet MS', sans-serif;
  }
  
  .product-details p {
    font-size: 1.2rem;
    color: #555;
  }
  
  /* Footer Styles */
  footer {
    background-color: #333;
    color: #fff;
    padding: 2rem 0;
    text-align: center;
  }
  
  footer .contact-info p,
  footer .social-links a {
    margin-bottom: 1rem;
  }
  
  footer .social-links a {
    margin-right: 1rem;
    color: #fff;
  }
  
  footer .social-links a:hover {
    color: #ff7f50;
  }
  /* Mango Cakes Section */
.mango-cakes {
    text-align: center;
    padding: 3rem 0;
  }
  
  .mango-cakes h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
  }
  
  /* Mango Cakes Slider */
  .mango-slider {
    max-width: 80%;
    margin: 0 auto;
  }
  
  .mango-slider .slider-item {
    position: relative;
  }
  
  .mango-slider img {
    width: 100%;
    height: auto;
    border-radius: 8px;
  }
  
  .product-info {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background-color: rgba(0, 0, 0, 0.5); /* Dark background with transparency */
    color: white;
    padding: 10px;
    border-radius: 5px;
  }
  
  .product-info h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
  }
  
  .product-info .price {
    font-size: 1.2rem;
    font-weight: bold;
    color: #ff7f50; /* Bright color for the price */
  }
  
  .product-info h3,
  .product-info .price {
    margin: 0;
    text-align: center;
  }
  
  /* Footer Styles */
  footer {
    background-color: #333;
    color: #fff;
    padding: 2rem 0;
    text-align: center;
  }
  
  footer .contact-info p,
  footer .social-links a {
    margin-bottom: 1rem;
  }
  
  footer .social-links a {
    margin-right: 1rem;
    color: #fff;
  }
  
  footer .social-links a:hover {
    color: #ff7f50;
  }
  .product-info .price {
    font-size: 1.2rem;
    font-weight: bold;
    color: #ff7f50; /* Bright color for the price */
    display: inline-flex;
    align-items: center;
  }
  
  .product-info .price:before {
    content: "₱"; /* Adding peso sign before the price */
    margin-right: 5px;
    font-size: 1.4rem; /* Adjust size for the peso sign */
  }
  /* Style for the Back Button */
.back-button {
    background-color: #ff7f50; /* Orange color */
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    font-family: 'Trebuchet MS', sans-serif;
    font-size: 1rem;
    cursor: pointer;
    margin-top: 20px;
  }
  
  .back-button:hover {
    background-color: #ff5722; /* Darker shade on hover */
    transition: background-color 0.3s ease;
  }
  .sold-out {
    display: inline-block;
    margin-left: 15px;
    font-size: 14px;
    color: rgb(255, 0, 0);
    font-weight: bold;
}