/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600&display=swap');

/* Global Variables */
:root {
    --primary-color: #ff7f00;  /* Bright Orange */
    --secondary-color: green;  /* Fresh Green */
    --background-color: #eff0f0; /* Light Background */
    --highlight-color: #ff4500;  /* Warm Accent */
    --card-bg-color: #fff; /* White Background for Cards */
    --shadow-color: rgba(0, 0, 0, 0.1); /* Subtle shadow for depth */
}


* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
  }
  
  
  body {
      font-family: 'Montserrat', sans-serif;
      background-color: var(--background-color);
      margin: 0;
      padding: 0;
      color: #333;  /* Dark Text Color for readability */
  }
  
  /* Navbar */
  .navbar {
      background-color: #fff;
      box-shadow: 0 4px 10px var(--shadow-color); /* Soft shadow for navbar */
      padding: 1rem 2rem; /* Spacing */
      font-size: 16px;
      margin-bottom: -1rem;
  }
  
  .navbar .navbar-brand img {
      width: 80px;
      height: 80px;
      object-fit: cover;
  }
  
  .navbar .navbar-toggler {
      border: none;
  }
  
  .navbar-nav {
      font-weight: 500;
  }
  
  .nav-item .form-control {
      border-radius: 20px;
      margin-right: 1rem;
      padding: 0.5rem 1rem;
  }
  
  .navbar .nav-link {
      color: #333;
      transition: color 0.3s ease;
  }
  
  .navbar .nav-link:hover {
      color: var(--primary-color);
  }
  #results {
    border: 1px solid #ccc;
    border-radius: 5px;
    margin-top: 1rem;
    padding: 10px;
    max-height: 300px;
    overflow-y: auto;
    background-color: #f9f9f9;
  }
  
  .result-item {
    padding: 8px;
    border-bottom: 1px solid #ddd;
  }
  
  .result-item:last-child {
    border-bottom: none;
  }
  
  .result-item strong {
    color: #333;
  }
  
  .result-item span {
    color: var(--primary-color);
    font-size: 14px;
  }

  
  /* Product Container */
.product-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    max-width: 1000px;
    margin: 50px auto;
    padding: 20px;
    background: #fff;
    box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
}

/* Product Image */
.product-image {
    position: relative;
    width: 50%;
    text-align: center;
}
.product-image img {
    width: 100%;
    max-height: 400px;
    border-radius: 10px;
    transition: transform 0.3s ease-in-out;
    cursor: pointer;
}
.product-image img:hover {
    transform: scale(1.05);
}
#product-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: green;
    color: white;
    padding: 5px 10px;
    font-size: 14px;
    font-weight: bold;
    border-radius: 5px;
}

/* Product Details */
.product-details {
    width: 50%;
}
.product-details h2 {
    font-size: 24px;
    color: #333;
}
.product-rating {
    font-size: 16px;
    color: var(--primary-color);
    margin-bottom: 10px;
}
.product-details p {
    font-size: 18px;
    color: #555;
}

/* Quantity Selector */
.quantity-selector {
    margin: 15px 0;
}
.quantity-selector input {
    width: 60px;
    padding: 5px;
    font-size: 16px;
    text-align: center;
    border: 1px solid #ddd;
    border-radius: 5px;
}

/* Buy Now Button */
.buy-now-btn {
    background: var(--primary-color);
    color: white;
    padding: 12px 20px;
    font-size: 18px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s ease-in-out;
}
.buy-now-btn:hover {
    background: var(--secondary-color);
    transform: scale(1.05);
}

/* Social Share */
.social-share {
    margin-top: 15px;
}
.social-icon {
    font-size: 20px;
    margin-right: 10px;
    text-decoration: none;
}
.social-icon:hover {
    color: #ff4500;
}

/* Related Products */
.related-products {
    max-width: 1000px;
    margin: 50px auto;
    text-align: center;
}
.related-container {
    display: flex;
    justify-content: space-around;
    gap: 20px;
}
.related-item {
    background: #f9f9f9;
    padding: 10px;
    border-radius: 10px;
    transition: transform 0.3s ease-in-out;
}
.related-item img {
    width: 100px;
    border-radius: 5px;
}
.related-item p {
    margin: 5px 0;
    font-weight: bold;
}
.related-item span {
    color: #ff4500;
    font-weight: bold;
}
.related-item:hover {
    transform: scale(1.05);
}


/* Footer */
.footer-section {
    background-color: var(--secondary-color);
    color: #fff;
    padding: 50px 0;
  }
  
  .footer-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
  }
  
  .footer-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  
  .footer-column {
    width: 22%;
    margin-bottom: 30px;
  }
  
  .footer-title {
    font-weight: bold;
    margin-bottom: 15px;
  }
  
  .footer-links {
    list-style: none;
    padding: 0;
  }
  
  .footer-links li {
    margin-bottom: 8px;
  }
  
  .footer-links a {
    text-decoration: none;
    color: #ddd;
    transition: color 0.3s;
  }
  
  .footer-links a:hover {
    color: var(--primary-color);
  }
  
  /* Email Subscription */
  .subscribe-form {
    display: flex;
    gap: 10px;
    margin-top: 15px;
  }
  
  .subscribe-form input {
    flex: 1;
    padding: 10px;
    border: none;
    border-radius: 5px;
    outline: none;
  }
  
  .subscribe-form button {
    background-color: var(--primary-color);
    color: white;
    border: none;
    padding: 10px 15px;
    border-radius: 5px;
    cursor: pointer;
    transition: 0.3s;
  }
  
  .subscribe-form button:hover {
    background-color: #fff;
    color: var(--primary-color);
  }
  
  /* App Download Section */
  .app-download {
    text-align: center;
    position: relative;
  }
  
  .phone-mockup img {
    width: 100px;
    height: auto;
  }
  
  .download-buttons {
    margin-top: 15px;
  }
  
  .download-buttons img {
    width: 120px;
    margin: 5px;
    transition: 0.3s;
  }
  
  .download-buttons img:hover {
    transform: scale(1.05);
  }
  
  /* Services Section */
  .services-section {
    background-color: #111;
    padding: 50px 0;
  }
  
  .services-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
  }
  
  .services-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .service-box {
    text-align: center;
    color: #fff;
    margin: 20px;
    width: 200px;
  }
  
  .icon-circle {
    width: 60px;
    height: 60px;
    background-color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 10px;
  }
  
  .icon-circle i {
    font-size: 24px;
    color: #fff;
  }
  
  .service-box p {
    font-size: 14px;
    font-weight: bold;
  }
  
  /* Media Queries for Responsiveness */
  @media (max-width: 768px) {
    .footer-column {
      width: 48%;  /* Make columns 2 per row on tablets */
      margin-bottom: 20px;
    }
  
    .footer-row {
      justify-content: space-evenly;  /* Space evenly for better alignment */
    }
  
    .service-box {
      width: 150px;  /* Smaller service box size on smaller screens */
    }
  
    .services-row {
      justify-content: space-evenly; /* Center the service boxes */
    }
  
    .subscribe-form {
      flex-direction: column;
    }
  
    .subscribe-form input,
    .subscribe-form button {
      width: 100%;
      margin-bottom: 10px;
    }
  }
  
  @media (max-width: 480px) {
    .footer-column {
      width: 100%;  /* Full width columns on mobile */
      margin-bottom: 20px;
    }
  
    .service-box {
      width: 100%;  /* Full width service box on mobile */
      margin-bottom: 15px;
    }
  
    .icon-circle {
      width: 50px;
      height: 50px;
    }
  
    .icon-circle i {
      font-size: 20px;
    }
  }
  
  /* Media Queries */
  @media (max-width: 768px) {
      .container {
          padding-left: 15px;
          padding-right: 15px;
      }
  
      .navbar .navbar-collapse {
          padding-top: 10px;
      }
  
  
      .product-card {
          margin-bottom: 15px;
      }
  
      .navbar-nav {
          font-size: 14px; /* Smaller text for mobile */
      }
  
      .navbar .navbar-toggler {
          font-size: 20px;
      }
  }
  