/* General Styles */
body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  background-color: #fdfaf6;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}
customer-care-header {
  text-align: center;
  padding: 40px;
  background-color: #f9f9f9;
  border-radius: 10px;
  margin-top: 60px;
  color: #333;
}

.customer-care-header h1 {
  font-size: 36px;
  color: #2c3e50;
  margin-bottom: 20px;
}

.customer-care-header p {
  font-size: 18px;
  line-height: 1.6;
  color: #555;
}

/* Contact Info Boxes */
.contact-info {
  display: flex;
  justify-content: space-around;
  margin-top: 40px;
}

.contact-box {
  background-color: #fff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.1);
  width: 45%;
  text-align: center;
}

.contact-box h3 {
  font-size: 24px;
  color: #2c3e50;
  margin-bottom: 15px;
}

.contact-box p {
  font-size: 18px;
  color: #555;
}

/* Customer Support Text */
.customer-support {
  background-color: #fff;
  padding: 40px;
  margin-top: 40px;
  border-radius: 8px;
  box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.customer-support h3 {
  font-size: 28px;
  color: #2c3e50;
  margin-bottom: 20px;
}

.customer-support p {
  font-size: 18px;
  line-height: 1.8;
  color: #555;
  max-width: 800px;
  margin: 0 auto;
}

/* Top Bar */
.top-bar {
  width: 100%;
  height: 50px;
  background-color: #333;
  color: white;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  font-size: 16px;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
}

.top-left {
  flex: 1;
  text-align: left;
}

.top-center {
  flex: 1;
  text-align: center;
  font-size: 20px;
  font-weight: bold;
}

.top-right {
  flex: 1;
  text-align: right;
}

.cart-link {
  color: white;
  text-decoration: none;
  font-size: 20px;
}

/* Sidebar */
.sidebar {
  width: 220px;
  background-color: #f8f1e9;
  position: fixed;
  top: 70px; /* Below Top Bar */
  left: 0;
  bottom: 0;
  padding-top: 20px;
  box-shadow: 2px 0 5px rgba(0,0,0,0.1);
}

.sidebar h2 {
  text-align: center;
  margin-bottom: 30px;
  color: #333;
}

.sidebar ul {
  list-style-type: none;
  padding: 0;
}

.sidebar ul li {
  margin: 20px 0;
}

.sidebar ul li a {
  color: #333;
  text-decoration: none;
  padding: 10px 20px;
  display: block;
  font-weight: bold;
  transition: background-color 0.3s;
}

.sidebar ul li a:hover {
  background-color: #ddd;
  border-radius: 5px;
}

/* Main Content */
.main-content {
  margin-left: 240px; /* Space for sidebar */
  padding: 90px 40px 40px; /* Adjusted for Top Bar */
  flex-grow: 1;
}

/* Hero Section (Homepage Background Image) */
.home-hero {
  position: relative;
  text-align: center;
  background-image: url('images/homebackground.jpg.webp');
  background-size: cover;
  background-position: center center;
  height: 100vh;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.shop-now-btn {
  background-color: #333;
  color: white;
  padding: 15px 30px;
  font-size: 20px;
  text-decoration: none;
  border-radius: 8px;
  transition: background-color 0.3s ease;
}

.shop-now-btn:hover {
  background-color: #555;
}

/* Cart Icon Styling in Top Bar */
.cart-link {
  color: white;
  text-decoration: none;
  font-size: 20px;
  padding: 10px;
  cursor: pointer;
}

.cart-link:hover {
  color: #ccc;
}

/* Cart Sidebar Styling */
.cart-sidebar {
  width: 300px ;
  background-color: #f8f1e9;
  position: fixed;
  top: 70px; /* Below Top Bar */
  right: 0;
  height: 100%;
  padding-top: 20px;
  box-shadow: -2px 0 5px rgba(0,0,0,0.1);
  display: none; /* Hidden by default */
}

.cart-sidebar.open {
  display: block; /*Shows the cart when it's open */
}

.cart-sidebar h2 {
  text-align: center;
  color: #333;
}

.cart-sidebar u1 {
  list-style-type: none;
  padding: 0;
}

.cart-sidebar u1 li span {
  margin: 20px 0;
  color: #333;
}

.cart-sidebar u1 li span {
  font-weight: bold;
}

.cart-sidebar  .total {
  font-size:20px;
  color: #333;
  padding-top: 20px;
  text-align: center;
}

/* Modal Cart */
.cart-modal {
  display: none; /*Hidden by default */
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 1000;
  justify-content: center;
  align-items: center;
}

.cart-modal.open {
  display: flex;
}

.cart-modal-content {
  background-color: white;
  width: 80%;
  max-width: 500px;
  padding: 20px;
  box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.2);
  border-radius: 10px;
}

.cart-modal-content h2 {
  text-align: center;
  color: #333;
}

.cart-modal-content .cart-items{
  margin-top:20px;
  font-size: 18px;
}

.cart-modal-content .close-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 24px;
  cursor: pointer;
}

/* General Styles */
body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  background-color: #fdfaf6;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

/* Top Bar */
.top-bar {
  width: 100%;
  height: 50px;
  background-color: #333;
  color: white;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  font-size: 16px;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
}

.top-left {
  flex: 1;
  text-align: left;
}

.top-center {
  flex: 1;
  text-align: center;
  font-size: 20px;
  font-weight: bold;
}

.top-right {
  flex: 1;
  text-align: right;
}

.cart-link {
  color: white;
  text-decoration: none;
  font-size: 20px;
}

/* Sidebar */
.sidebar {
  width: 220px;
  background-color: #f8f1e9;
  position: fixed;
  top: 70px; /* Below Top Bar */
  left: 0;
  bottom: 0;
  padding-top: 20px;
  box-shadow: 2px 0 5px rgba(0,0,0,0.1);
}

.sidebar h2 {
  text-align: center;
  margin-bottom: 30px;
  color: #333;
}

.sidebar ul {
  list-style-type: none;
  padding: 0;
}

.sidebar ul li {
  margin: 20px 0;
}

.sidebar ul li a {
  color: #333;
  text-decoration: none;
  padding: 10px 20px;
  display: block;
  font-weight: bold;
  transition: background-color 0.3s;
}

.sidebar ul li a:hover {
  background-color: #ddd;
  border-radius: 5px;
}

/* Main Content */
.main-content {
  margin-left: 240px;
  padding: 90px 40px 40px;
  flex-grow: 1;
}

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

.product-item {
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  text-align: center;
  transition: transform 0.3s ease-in-out;
}

.product-item:hover {
  transform: scale(1.05);
}

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

.product-thumbnails {
  display: flex;
  justify-content: center;
  gap: 10px;
}

.product-img-thumbnail {
  width: 60px;
  height: 60px;
  object-fit: cover;
  cursor: pointer;
}

/* Button */
.shop-now-btn {
  background-color: #333;
  color: white;
  padding: 15px 30px;
  font-size: 20px;
  text-decoration: none;
  border-radius: 8px;
  transition: background-color 0.3s ease;
}

.shop-now-btn:hover {
  background-color: #555;
}

/* Footer */
.footer {
  background-color: #333;
  color: white;
  padding: 40px 20px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-top: 60px;
  width: 100%;
  position: relative;
}

.footer-left, .footer-center, .footer-right {
  flex: 1;
  margin: 0 20px;
}

.footer-left p, .footer-center p, .footer-right p {
  font-size: 16px;
  color: #fff;
}

.footer-left p strong, .footer-center h3, .footer-right h3 {
  font-weight: bold;
  font-size: 18px;
}

.social-links {
  display: flex;
  justify-content: space-between;
}

.social-links a {
  color: #fff;
  text-decoration: none;
  margin: 0 10px;
}

.social-links a:hover {
  text-decoration: underline;
}

.footer-right input[type="email"] {
  padding: 10px;
  width: 80%;
  border-radius: 5px;
}

.footer-right button {
  padding: 10px 20px;
  background-color: #555;
  color: white;
  border-radius: 5px;
}

.footer-right button:hover {
  background-color: #333;
}

.footer-bottom {
  background-color: #222;
  color: white;
  padding: 20px 0;
  text-align: center;
  width: 100%;
}
/*What Our Customers Say Section */
.reviews-section {
  margin-top: 60px;
  text-align: center;
  background-color: #f1f1f1;
  padding: 40px 20px;
}

.reviews-section h2 {
  font-size: 32px;
  color: #333;
  margin-bottom: 30px;
}

.review { 
  background-color: #fff;
  padding: 20px;
  margin: 10px auto;
  border-radius: 10px;
  max-width: 700px;
  font-size: 18px;
  color: #555;
  box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.1);
}

.review span { 
  font-weight:bold;
  display: block;
  margin-top: 10px;
  color: #333;
}
/* Additional Style for Rich Design */
.review {
  border: 2px solid #2c3e50; /* Rich dark border */
  padding: 30px; /* Extra padding */
}

.review p {
  font-size: 20px; /* Larger text for better readability */
  color: #333;
}

.review span {
  font-size: 18px; /* Bigger name font */
  font-style: italic;
  color: #2c3e50; /* Rich color for name */
}
/* About Us Section */
.about-us-section {
  background-color: #f9f9f9;
  padding: 50px 20px;
  text-align: center;
  color: #333;
  font-family: 'Poppins', sans-serif;
}

.about-container h2, .about-container h3 {
  font-size: 36px; /* Larger font for the header */
  color: #2c3e50; /* Rich dark color */
  font-weight: bold;
  text-transform: uppercase; /* Adds a more stylish, modern feel */
  margin-bottom: 20px;
}

.about-container p {
  font-size: 20px; /* Larger font for body text */
  line-height: 1.8;
  margin: 20px auto;
  max-width: 800px;
  color: #555; /* Rich dark grey color */
}

/* Team Section */
.team-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  margin-top: 30px;
}

.team-member {
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.1);
  padding: 30px;
  max-width: 300px;
  width: 100%;
  text-align: center;
  transition: transform 0.3s ease-in-out;
}

.team-member:hover {
  transform: translateY(-10px); /* Adds hover effect for richness */
}

.team-info h4 {
  font-size: 24px; /* Larger size for team member name */
  font-weight: bold;
  color: #2c3e50; /* Matching color for consistency */
  margin-bottom: 10px;
}

.team-info p {
  font-size: 18px;
  color: #555;
}

.values-container {
  background-color: #fff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.1);
  max-width: 800px;
  margin: 30px auto;
}

.values-container h3 {
  font-size: 30px; /* Larger heading */
  color: #2c3e50; /* Rich color */
  font-weight: bold;
  margin-bottom: 20px;
}

.values-container p {
  font-size: 18px;
  line-height: 1.8;
  color: #555;
  text-align: center;
}

@media (max-width: 768px) {
  .team-container {
    flex-direction: column;
    align-items: center;
  }

  .team-member {
    max-width: 90%;
  }

  .values-container {
    padding: 15px;
  }
}

/* Footer */
.footer {
  background-color: #333;
  color: white;
  padding: 40px 20px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-top: 60px;
  width: 100%;
  position: relative;
}

.footer-left, .footer-center, .footer-right {
  flex: 1;
  margin: 0 20px;
}

.footer-left p, .footer-center p, .footer-right p {
  font-size: 16px;
  color: #fff;
}

.footer-left p strong, .footer-center h3, .footer-right h3 {
  font-weight: bold;
  font-size: 18px;
}

.social-links {
  display: flex;
  justify-content: space-between;
}

.social-links a {
  color: #fff;
  text-decoration: none;
  margin: 0 10px;
}

.social-links a:hover {
  text-decoration: underline;
}

.footer-right input[type="email"] {
  padding: 10px;
  width: 80%;
  border-radius: 5px;
}

.footer-right button {
  padding: 10px 20px;
  background-color: #555;
  color: white;
  border-radius: 5px;
}

.footer-right button:hover {
  background-color: #333;
}

.footer-bottom {
  background-color: #222;
  color: white;
  padding: 20px 0;
  text-align: center;
  width: 100%;
}

/* Ensuring Footer does not overlap */
body {
  display: flex;
  flex-direction: column;
  height: 100vh;
}

.main-content {
  flex-grow: 1;
  padding-bottom: 150px;
}

/* Ensuring Cart and Sidebar Visibility */
.cart-link {
  margin-right: 15px; /* Move cart slightly to the left */
}

/* Customer Care Page */
.customer-care-section {
  background-color: #f9f9f9;
  padding: 50px 20px;
  text-align: center;
  color: #333;
}

.care-container h2, .care-container h3 {
  font-size: 36px;
  color: #2c3e50; /* Rich dark color */
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.care-container p {
  font-size: 20px;
  line-height: 1.8;
  margin-bottom: 30px;
  max-width: 800px;
  margin: 0 auto;
  color: #555;
}

/* Info Box for Each Section */
.info-box {
  background-color: #f0e6d2; /* Tan background for each section */
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.1);
  margin-top: 20px;
  max-width: 800px;
  margin: 0 auto;
}

/* FAQ List */
.info-box ul {
  list-style-type: none;
  padding: 0;
}

.info-box ul li {
  font-size: 18px;
  margin-bottom: 15px;
}

.info-box ul li strong {
  color: #2c3e50;
}
