@import url('https://fonts.googleapis.com/css2?family=Playfair:ital,opsz,wght@0,5..1200,300..900;1,5..1200,300..900&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Playfair:ital,opsz,wght@0,5..1200,300..900;1,5..1200,300..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

/* Global Styles */

:root {
  --primary-color: #E7A8A0;
  --secondary-color: #8E6CA9;
  --text-color: #333;
  --light-bg: #f9f9f9;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  height: 100%;
  display: flex;
  flex-direction: column;
}

main {
  flex: 1;
}


/* header Styling */
.logo {
  display: block;
  width: 100%;
  text-align: center;
}

nav {
  background-color: #E7A8A0;
  margin: 10px 20px;
  padding: 20px;
  border-radius: 15px 0;
  font-family: poppins, sans-serif;
  position: relative;
  z-index: 1001;
}


nav ul {
  list-style: none;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0;
}

nav ul li {
  margin: 0 25px;
}

nav ul li a {
  text-decoration: none;
  color: #fff;
  font-size: 18px;
  padding: 10px 15px;
  border-radius: 5px;
  transition: ease 0.3s;
}
nav ul li a:hover {
  color: #8E6CA9;
}

nav ul li a i,
.footer-section ul li i {
  margin-right: 8px;
  color: #f9f9f9;
}

/* Slightly increase size if needed */
nav ul li a i {
  font-size: 16px;
}

/*  Hero Styling */

.hero-carousel {
  position: relative;
  overflow: hidden;
  background-color: var(--primary-color);
  color: #fff;
  font-family: playfair, serif;
  min-height: 700px; /* Fixed height for consistency */
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 20px;
  padding: 50px;
  border-radius: 0 50px;
}

.carousel-slide {
  display: none;
  padding: 60px 20px;
  height: 100%; /* Fill the hero section */
}

.carousel-slide.active {
  display: block;
}

.hero-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: auto;
  flex-wrap: wrap;
  height: 100%;
}

.hero-text {
  flex: 1;
  min-width: 300px;
  padding: 20px;
}

.hero-text h1 {
  font-size: 70px;
  margin-bottom: 20px;
  color: #fff;
}

.hero-text p {
  font-size: 30px; /* Increased slightly */
  font-family: poppins;
  margin-bottom: 25px;
  color: #fff;
}

.btn-shop {
  display: inline-block;
  padding: 12px 30px;
  background-color: var(--secondary-color);
  color: #fff;
  font-family: poppins;
  border-radius: 25px 0;
  text-decoration: none;
  transition: 0.3s ease;
  font-size: 16px;
  font-weight: 600;
}

.btn-shop:hover {
  border: 5px solid var(--secondary-color);
  background: none;
  color: var(--secondary-color);

}

.hero-image {
  flex: 1;
  min-width: 500px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-image img {
  height: 500px;
  object-fit: cover;
  border-radius: 20px;
}

/* Carousel nav */
.carousel-nav {
  position: absolute;
  top: 50%;
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 0 30px;
  transform: translateY(-50%);
  pointer-events: none;
}

.carousel-nav i {
  background-color: transparent;
  color: var(--secondary-color);
  font-size: 28px;
  padding: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
  pointer-events: all;
}

.carousel-nav i:hover {
  color: #fff;
  transform: scale(1.1);
}

/* About Section Styling */

.about-us {
  padding: 100px 20px;
  background-color: #8E6CA9;
  color: #fff;
  font-family: 'Poppins', sans-serif;
  margin: 20px;
  border-radius: 0 50px;
}

.about-flex {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  width: 100%;
  justify-content: space-between;
  padding: 20px;
}

.about-text {
  flex: 1 1 45%;
  width: 100%;
  text-align: left;
}

.about-text h2 {
  font-family: 'Playfair Display', serif;
  font-size: 70px;
  margin-bottom: 5px;
}

.about-text h2 span {
  color: #E7A8A0;
}

.about-text p {
  font-size: 1.1rem;
  line-height: 1.9;
  margin-bottom: 18px;
  text-align: justify;
}

.about-text .btn {
  display: inline-block;
  margin-top: 20px;
  padding: 14px 30px;
  background-color: #E7A8A0;
  color: #fff;
  font-weight: 600;
  border-radius: 0 15px;
  text-decoration: none;
  transition: background 0.3s ease;
}

.about-text .btn:hover {
  background-color: #fff;
  color: #8E6CA9;
}

/* Why Us Styles */

.why-us {
  flex: 1;
  background-color: #E7A8A0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  border-radius: 30px 0;
  padding: 30px;
  text-align: left;
}

.why-us h3 {
  font-family: 'Playfair Display', serif;
  font-size: 40px;
  margin-bottom: 20px;
}

.why-us ul {
  list-style: none;
  padding: 0;
}

.why-us li {
  font-size: 18px;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  text-align: left;
}

.why-us li i {
  color: #8E6CA9;
  margin-right: 12px;
  font-size: 30px;
}

/* CEO Message Section */
.ceo-message-section {
  padding: 100px 20px;
  background-color: #fdf9f8;
  border-radius: 0 50px;
  margin: 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, .15);
  font-family: 'Poppins', sans-serif;
}

.ceo-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 50px;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: auto;
}

.ceo-image {
  flex: 1;
  text-align: center;
}

.ceo-image img {
  width: 100%;
  max-width: 400px;
  border-radius: 50px 0;
  object-fit: cover;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.ceo-text {
  flex: 1;
  max-width: 600px;
  color: #333;
}

.ceo-text h2 {
  font-family: 'Playfair Display', serif;
  font-size: 48px;
  color: #8E6CA9;
  margin-bottom: 20px;
}

.ceo-text p {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 15px;
  color: #444;
  text-align: justify;
}

.ceo-signature {
  font-style: italic;
  font-weight: 600;
  color: #E7A8A0;
  margin-top: 20px;
}


/* Shop Section Styling */

.shop-controls {
  display: flex;
  flex-direction: column;
  gap: 16px; 
  margin: 20px;
  background-color: #8E6CA9;
  padding: 16px;
  align-items: center;
  border-radius: 0 50px;
}

.search-container {
  width: 100%;
  max-width: 500px;
  margin: 20px auto;
  position: relative;
}

.search-bar {
  width: 100%;
  padding: 20px;
  border: 5px solid #e7A8A0;
  border-radius: 0 30px;
  background-color: #8E6CA9;
  color: white;
  font-size: 16px;
  outline: none;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  padding-right: 50px; /* Space for the icon */
}

.search-bar::placeholder {
  color: rgba(255, 255, 255, 0.7);
}

.search-icon {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  color: white;
  background-color: #8E6CA9;
  border: none;
  cursor: pointer;
  font-size: 20px;
  margin-right: 10px;
}

.search-bar:focus {
  box-shadow: 0 0 10px rgba(138, 92, 184, 0.5);
}

.search-bar:hover {
  box-shadow: 0 6px 8px rgba(0, 0, 0, 0.15);
}

.categories {
  text-align: center;
}

.categories h3 {
  font-family: 'Playfair Display', serif;
  margin-bottom: 8px;
  color: #E7A8A0;
  font-size: 25px;
}

.categories ul {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
  padding: 0;
}

.categories ul li {
  background-color: #f9f9f9;
  color: #8E6CA9;
  padding: 8px 16px;
  border-radius: 0 20px;
  cursor: pointer;
  font-family: 'Poppins', sans-serif;
  transition: background-color 0.3s;
}

.categories ul li:hover {
  background-color: #E7A8A0;
}

.shop-section {
  padding: 20px;
  background-color: #f9f9f9;
  border-radius: 50px 0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, .2);
  text-align: center;
  margin: 20px;
  font-family: poppins;
}

.section-title {
  font-size: 40px;
  font-family: 'Playfair Display', serif;
  color: #8E6CA9;
  margin-bottom: 40px;
}

.product-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  margin-bottom: 10px;
}

.product-card {
  background-color: #fefefe;
  border-radius: 15px;
  padding: 20px;
  width: 350px;
  height: 450px;
  text-align: left;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s;
}

.product-card:hover {
  transform: translateY(-5px);
}

.product-image {
  width: 300px;
  height: 200px;
}
.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}

.product-card h3 {
  margin: 15px 0 10px;
  font-size: 25px;
  color: #333;
  font-family: playfair, serif;
}

.price {
  font-weight: bold;
  color: #8E6CA9;
  font-size: 20px;
  margin-bottom: 15px;
}

.cbtns {
  width: 100%;
  padding: 10px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}

.cbtns button {
  background-color: #E7A8A0;
  color: #fff;
  border: none;
  border-radius: 0 18px;
  padding: 10px;
  font-size: 15px;
  font-family: poppins;
  text-align: center;
  cursor: pointer;
}

.cbtns button:hover {
  background-color: #8E6CA9;
  color: #fff;
}

.wbtn {
  background-color: #25D366;
  color: #fff;
  text-decoration: none;
  border-radius: 18px 0;
  padding: 10px;
  display: flex;
  justify-content: center;
}

.wbtn a {
  color: #fff;
  text-decoration: none;
  font-size: 18px;
  font-family: poppins;
  text-align: center;
  cursor: pointer;
}

.wbtn a:hover {
  color: #8E6CA9;
  text-decoration: none;
}

/* Modal Styles */
.product-modal {
  display: none;
  position: fixed;
  z-index: 100;
  left: 0; top: 0;
  width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.6);
  justify-content: center;
  align-items: center;
  overflow-y: auto;
  padding: 20px;
}

.modal-content {
  background: #fff;
  padding: 30px;
  max-width: 800px;
  height: 450px;
  border-radius: 0 15px;
  text-align: left;
  position: relative;
  display: flex;
  flex-direction: row;
}

.modal-image {
  width: 300px;
  height: 300px;
  margin-right: 20px;
}

.modal-image img {
  width: 100%;
  object-fit: contain;
  border-radius: 10px;
  margin-right: 15px;
  border-radius: 15px 0;
}

.modal-details {
  flex: 1;
}
.modal-details h3 {
  font-size: 30px;
  font-family: playfair, serif;
  color: #333;
  margin-bottom: 10px;
}

.modal-details .category {
  font-size: 18px;
  color: #E7A8A0;
  margin-bottom: 10px;
  font-family: poppins;
}

.modal-details input[type="number"] {
  width: 50px;
  text-align: center;
  padding: 10px;
  border: 3px solid #E7A8A0;
  border-radius: 0 10px;
  margin-bottom: 10px;
  font-size: 20px;
  font-weight: 500;
}

.quantity-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  margin-bottom: 10px;
}


.qty-btn {
  background-color: #8E6CA9;
  color: white;
  border: none;
  padding: 5px 10px;
  font-size: 18px;
  cursor: pointer;
  border-radius: 4px;
}

.qty-btn:hover {
  background-color: #6f5592;
}

.quantity-wrapper input[type="number"] {
  width: 60px;
  text-align: center;
  padding: 5px;
}

.modal-content .close {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 50px;
  font-weight: 1900;
  cursor: pointer;
  color: #8E6CA9;
}
.modal-content .close:hover {
  color: #E7A8A0;
}


.modal-details p.description {
  font-size: 15px;
  color: #555;
  margin: 10px 0;
  line-height: 1.4;
}

.modal-buttons {
  margin-top: 10px;
  width: 100%;
}

.modal-buttons a {
  margin: 10px;
  padding: 15px;
  border: none;
  border-radius: 0 18px;
  font-weight: 500;
  font-size: 15px;
}
.modal-buttons button {
  margin: 10px;
  padding: 15px;
  background-color: #E7A8A0;
  color: #f9f9f9;
  border: none;
  border-radius: 0 18px;
  font-weight: 500;
  font-size: 20px;
  cursor: pointer;
}

.modal-buttons .whatsapp-link {
  background-color: #25D366 !important;
  color: #fff;
  text-decoration: none;
}

.shop-view-more {
  margin-top: 50px;
  margin-bottom: 30px;
  display: block;
}

.shop-view-more .btn {
  background-color: #E7A8A0;
  color: #fff;
  padding: 12px 24px;
  border-radius: 30px 0;
  font-size: 18px;
  font-family: poppins;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  transition: background 0.3s;
  margin-top: 20px;
}

.shop-view-more .btn:hover {
  background-color: #8E6CA9;
  color: #fff;
}

.shop-view-more .btn i {
  margin-left: 8px;
  transition: transform 0.3s;
}

.shop-view-more .btn:hover i {
  transform: translateX(4px);
}

/* Cart Page Styles */
.cart-section {
  padding: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.cart-container {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  padding: 20px;
}


.cart-item {
  display: flex;
  gap: 1rem;
  padding: 1rem;
  border-bottom: 1px solid #eee;
}

.cart-item-image {
  width: 120px;
  height: 120px;
  object-fit: cover;
}

.quantity-control {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin: 1rem 0;
}

.quantity-btn {
  padding: 0.25rem 0.75rem;
  border: 1px solid #ddd;
  background: #f8f8f8;
  cursor: pointer;
}

.remove-item {
  background: #ff4444;
  color: white;
  border: none;
  padding: 0.5rem 1rem;
  cursor: pointer;
}

.btn-checkout {
  background: #4CAF50;
  color: white;
  padding: 1rem 2rem;
  width: 100%;
  margin-top: 1rem;
}/* Cart Page Styles */
.cart-section {
  padding: 40px 20px;
  background: #f9f9f9;
  min-height: 70vh;
}

.cart-container {
  background: #fff;
  border-radius: 0 50px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  padding: 40px;
  max-width: 1200px;
  margin: 0 auto;
  font-family: 'Poppins', sans-serif;
}

.cart-container h2 {
  font-family: 'Playfair Display', serif;
  font-size: 48px;
  color: #8E6CA9;
  margin-bottom: 30px;
  text-align: center;
}

.cart-item {
  display: flex;
  gap: 30px;
  padding: 30px;
  margin-bottom: 20px;
  background: #fff;
  border-radius: 0 30px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.cart-item:hover {
  transform: translateY(-3px);
}

.cart-item-image {
  width: 200px;
  height: 200px;
  object-fit: cover;
  border-radius: 15px 0;
  border: 3px solid #E7A8A0;
}

.cart-item-details {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.cart-item-title {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  color: #333;
  margin-bottom: 10px;
}

.cart-item-price {
  font-size: 20px;
  color: #8E6CA9;
  font-weight: 600;
  margin-bottom: 15px;
}

.quantity-control {
  display: flex;
  align-items: center;
  gap: 15px;
  margin: 15px 0;
}

.quantity-btn {
  padding: 8px 20px;
  border: none;
  background: #8E6CA9;
  color: white;
  font-size: 18px;
  border-radius: 0 10px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.quantity-btn:hover {
  background: #6f5592;
  transform: scale(1.05);
}

.quantity {
  font-size: 20px;
  min-width: 30px;
  text-align: center;
}

.remove-item {
  background: #E7A8A0;
  color: white;
  padding: 10px 25px;
  border: none;
  border-radius: 0 15px;
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  align-self: flex-start;
}

.remove-item:hover {
  background: #d1938a;
  transform: scale(1.02);
}

.cart-summary {
  margin-top: 40px;
  padding: 30px;
  background: #f5f5f5;
  border-radius: 0 30px;
}

.cart-summary h3 {
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  color: #8E6CA9;
  margin-bottom: 20px;
}

.cart-summary p {
  font-size: 18px;
  margin: 15px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cart-summary span {
  font-weight: 600;
  color: #333;
}

.btn-checkout {
  background: #8E6CA9;
  color: white;
  padding: 15px 40px;
  font-size: 20px;
  border: none;
  border-radius: 0 25px;
  cursor: pointer;
  transition: all 0.3s ease;
  width: auto;
  margin-top: 20px;
  display: block;
  width: 100%;
  text-align: center;
  font-family: 'Playfair Display', serif;
}

.btn-checkout:hover {
  background: #6f5592;
  transform: scale(1.02);
}

.empty-cart {
  text-align: center;
  font-size: 20px;
  color: #666;
  padding: 40px 0;
}

.empty-cart a {
  color: #8E6CA9;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.empty-cart a:hover {
  color: #6f5592;
}

/* Responsive Design */
@media (max-width: 768px) {
  .cart-item {
    flex-direction: column;
    padding: 20px;
  }
  
  .cart-item-image {
    width: 100%;
    height: auto;
    max-height: 300px;
  }
  
  .quantity-control {
    justify-content: center;
  }
  
  .cart-summary {
    padding: 20px;
  }
  
  .cart-container h2 {
    font-size: 36px;
  }
}


/* Testimonial Section Styling */

.testimonial-section {
  background-color: #E7A8A0;
  padding: 60px 20px;
  text-align: center;
  border-radius: 50px 0;
  margin: 20px;
}

.testimonial-carousel {
  position: relative;
  max-width: 700px;
  margin: auto;
  overflow: hidden;
}

.testimonial {
  display: none;
  padding: 20px;
  transition: opacity 0.5s ease;
}

.testimonial.active {
  display: block;
}

.quote-icon {
  font-size: 30px;
  color: #8E6CA9;
  margin-bottom: 15px;
}

.testimonial-text {
  font-size: 18px;
  font-style: italic;
  color: #555;
  margin-bottom: 20px;
}

.client-info h4 {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  margin-bottom: 5px;
  color: #333;
}

.client-info small {
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  color: #888;
}

.testimonial-nav {
  margin-top: 20px;
}

.testimonial-nav button {
  background-color: #E7A8A0;
  color: #fff;
  border: none;
  padding: 10px 15px;
  margin: 0 5px;
  font-size: 18px;
  border-radius: 50%;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.testimonial-nav button:hover {
  background-color: #8E6CA9;
}

/* Contact Section Styling */

.contact-section {
  padding: 60px 30px;
  background: #8E6CA9;
  border-radius: 0 50px;
  margin: 20px;
}

.contact-section h2 {
  font-family: 'Playfair Display', serif;
  font-size: 50px;
  color: #fff;
  margin-bottom: 20px;
  text-align: center;
}
.contact-container {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: space-around;
  margin-top: 40px;
}

.contact-form,
.contact-info {
  flex: 1 1 300px;
  max-width: 500px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 15px;
  margin: 10px 0;
  border: 1px solid #ccc;
  border-radius: 10px 0;
  font-family: 'Poppins', sans-serif;
}

.contact-form button {
  background-color: #E7A8A0;
  color: #fff;
  border: none;
  padding: 14px 20px;
  font-size: 16px;
  border-radius: 0 10px;
  cursor: pointer;
  transition: background 0.3s;
}

.contact-form button:hover {
  background-color: #8E6CA9;
}

.contact-info {
  text-align: left;
}

.contact-info h3 {
  margin-bottom: 15px;
  font-size: 25px;
  color: #E7A8A0;
  font-family: 'Playfair Display', serif;
}

.contact-info p {
  margin: 10px 0;
  font-family: poppins;
  font-size: 20px;
  color: #f9f9f9;
}

.contact-info i {
  margin-right: 10px;
  color: #E7A8A0;
}

.social-links a {
  display: inline-block;
  margin-right: 15px;
  font-size: 20px;
  color: #8E6CA9;
  transition: color 0.3s;
}

.social-links a:hover {
  color: #E7A8A0;
}

/* FAQ section styling */

.faq-section {
  padding: 60px 20px;
  background: #fadedb;
  margin: 20px;
  border-radius: 0 50px;
  font-family: 'Poppins', sans-serif;
}

.faq-title {
  font-size: 48px;
  text-align: center;
  font-family: 'Playfair Display', serif;
  color: #8E6CA9;
  margin-bottom: 40px;
}

.faq-list {
  max-width: 900px;
  margin: auto;
}

.faq-item {
  border-bottom: 1px solid #ddd;
  padding: 20px 0;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-size: 20px;
  font-weight: 500;
  color: #333;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  font-size: 18px;
  color: #555;
  margin-top: 10px;
}

.faq-item.open .faq-answer {
  max-height: 200px;
}

.faq-icon {
  transition: transform 0.3s ease;
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
  stroke: #E7A8A0;
}

/* Privacy Policy Section Styling */

/* Privacy Policy Section */
.privacy-policy-section {
  background-color: #e8cefd;
  padding: 100px 20px;
  font-family: 'Poppins', sans-serif;
  color: #333;
  border-radius: 0 50px;
  margin: 20px;
}

.privacy-container {
  max-width: 1000px;
  margin: auto;
}

.privacy-container h2 {
  font-family: 'Playfair Display', serif;
  font-size: 48px;
  color: #8E6CA9;
  margin-bottom: 30px;
  text-align: center;
}

.privacy-container h3 {
  font-size: 24px;
  color: #E7A8A0;
  margin-top: 30px;
}

.privacy-container p {
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 15px;
  text-align: justify;
}

.policy-footer {
  margin-top: 40px;
  font-style: italic;
  font-weight: 500;
  color: #555;
}






/* Footer Styling */
.footer {
  width: 100%;
  background: #222;
  color: #fff;
  padding: 30px 20px;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
  font-family: poppins, sans-serif;
}

.footer-section {
  flex: 1;
  min-width: 250px;
  margin: 10px;
}

.footer-section h3 {
  font-size: 20px;
  font-family: playfair, serif;
  font-weight: 700;
  margin-bottom: 15px;
  color: #E7A8A0;
}

.footer-section p {
  font-size: 14px;
  font-family: poppins;
  line-height: 1.5;
}

.footer-section ul {
  list-style: none;
  padding: 0;
}

.footer-section ul li {
  margin: 8px 0;
}

.footer-section ul li a {
  text-decoration: none;
  color: #fff;
  font-size: 14px;
  font-family: poppins;
}

.footer-section ul li a:hover {
  color: #8E6CA9;
}

.social-icons a {
  color: #fff;
  margin-right: 15px;
  font-size: 20px;
  text-decoration: none;
}

.social-icons a:hover {
  color: #8E6CA9;
}

.footer-bottom {
  text-align: center;
  margin-top: 20px;
  border-top: 1px solid #444;
  padding-top: 10px;
  font-size: 14px;
  font-family: poppins;
}

.footer-bottom p a {
  text-decoration: none;
  color: #E7A8A0;
}

.footer-bottom p a:hover {
  color: #8E6CA9;
}

/* Back to Top Button */

#backToTop {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: none;
  background-color: #8E6CA9;
  color: #e7A8A0;
  border: none;
  border-radius: 0 20px;
  padding: 32px 36px;
  font-size: 28px;
  cursor: pointer;
  z-index: 1000;
  transition: opacity 0.3s ease;
}
#backToTop:hover {
  opacity: 0.8;
}
