<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* Global Styles */
body {
  font-family: 'Quicksand', sans-serif;
  margin: 0;
  padding: 0;
  background-color: #f6f3ef;
  color: #3e2f2f;
}
h1, h2, h3 {
  font-family: 'Playfair Display', serif;
}

#bg-video {
  position: fixed;
  top: 0;
  left: 0;
  min-width: 100%;
  min-height: 100%;
  object-fit: cover;
  z-index: -1; /* Puts video behind content */
}

.shop-page {
  background-image: url('images/BGBB1.PNG');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  background-attachment: fixed;
}

.image-hover-wrapper {
  position: relative;
  display: inline-block;
}

.base-image {
  display: block;
  width: 100%; /* or a fixed width like 250px */
  height: auto;
}

.hover-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 70%; /* Match base image size */
  height: 70%;
  opacity: 0;
  transition: opacity 0.4s ease, transform 0.4s ease;
  transform: scale(1.05);
  pointer-events: none;
}

.image-hover-wrapper:hover .hover-image {
  opacity: 1;
  transform: scale(1);
}

/* ----------- Header ----------- */
header {
  background: linear-gradient(to bottom, #ffffff 0%, rgba(219, 172, 252, 0.2) 60%, rgba(187, 101, 247, 0) 100%);
  color: #fff;
  padding: 20px 0;
  text-align: center; /* centers nav and title */
  position: relative;
  z-index: 1;
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  position: relative;
}

.logo {
  width: 200px;
  height: auto;
  border-radius: 100px;
  background-color: #ffffff
  
} 

.site-title {
  font-size: 4rem;
  font-weight: 500;
  margin: 0;
  color: #688249;
  border-radius: 100px;
  padding: 8px 30px;
  background-color: rgba(255, 255, 255, 0.7);
}

/* -------- Responsive adjustments for mobile ----------  */
@media (max-width: 600px) {
  .header-container {
    flex-direction: column;
    gap: 5px;
  }
  .logo {
    position: static;
    transform: none;
    margin-bottom: 5px;
  }
  .site-title {
    font-size: 2rem;
  }
}

nav {
  margin-top: 10px;
}

nav a {
  color: #ffffff; /*e4d0e9*/
  margin: 0 20px;
  font-weight: 800;
  display: inline-block; /* text becomes inline block so it can be styled */
  padding: 4px 15px; /* Adds space around the text */
  background-color: #bd75b3; 
  text-decoration: none; /* Removes underline */
  border-radius: 25px; /* Makes it oval-shaped */
  transition: background-color 0.3s ease; /* Smooth hover effect */
}

nav a:hover {
  animation: glowPulse 0.5s infinite;
  background-color: #943fb5; /* Darker shade for hover effect */
}
@keyframes glowPulse {
  0% {
    text-shadow: 0 0 8px #b700ff;
  }
  50% {
    text-shadow: 0 0 16px #b700ff, 0 0 30px #ffffff;
  }
  100% {
    text-shadow: 0 0 8px #b700ff;
  }
}

.cart-message {
  position: fixed;
  top: 1rem;
  right: 1rem;
  background-color: #3b7a57;
  color: white;
  padding: 10px 16px;
  border-radius: 5px;
  box-shadow: 0 0 8px rgba(0,0,0,0.2);
  z-index: 1000;
  opacity: 0;
  transform: translateY(-20px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  font-family: 'Quicksand', sans-serif;
}

.cart-message.show {
  opacity: 1;
  transform: translateY(0);
}

#cart-count {
  transition: transform 0.3s ease;
}

#cart-count.updated {
  transform: scale(1.2);
}


@keyframes pop {
  0%   { transform: scale(1); }
  50%  { transform: scale(1.4); }
  100% { transform: scale(1); }
}

.cart-count-pop {
  animation: pop 0.3s ease;
}


/* ---------- Main Sections ----------------- */
main {
  padding: 20px;
}

h1 {
  color: #774e9c;
  border-radius: 100px;
  padding: 8px 10px;
  background-color: rgba(255, 255, 255, 0.7);
}

h2, h3 {
  color: #774e9c; /* Headlines + Middle Headline Shop Now+ Natural Ingredients*/
}

.hero {
  background-color: #ebddeb;
  padding: 30px;
  text-align: center;
  border-radius: 8px;
}

.natural-indredients {
  text-align: center;
}

.products, .gallery {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}

.product-card, .gallery-item {
  background: #fdddff;
  border: 1px solid #ccc;
  border-radius: 8px;
  padding: 15px;
  text-align: center;
  width: 200px;
}

.product-card img, .gallery-item img {
  max-width: 100%;
  border-radius: 6px;
}

.shop-button {
  display: inline-block;
  padding: 12px 24px;
  margin-top: 15px;
  background-color: #bea2c8; /* soft lavender */
  color: white;
  text-decoration: none;
  font-weight: bold;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.shop-button:hover {
  background-color: #7a5f81; /* deeper lavender on hover */
  transform: scale(1.05);
}

/* ---------- Reviews Section ------------- */
.reviews-section {
  background-color: #e9ebdd; /* same soft lavender as hero */
  border-radius: 8px;
  padding: 20px;
  max-width: 700px;
  margin: 40px auto 60px auto; /* center with margin top &amp; bottom */
  box-shadow: 0 4px 12px rgba(76, 113, 100, 0.3);
}

.reviews-section h3 {
  font-family: 'Playfair Display', serif;
  color: #6b714c; /* dark muted purple */
  text-align: center;
  margin-bottom: 20px;
}

.reviews-section .auth-bar,
.reviews-section .user-panel {
  position: static; /* Reset from absolute */
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 20px;
}

.reviews-section .user-panel button {
  background-color: #7a9e55;
  color: white;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  font-size: 16px;
  font-family: 'Poppins', sans-serif;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.reviews-section .user-panel button:hover {
  background-color: #4b6b34;
}


/* Auth Bar Buttons */
.auth-bar button {
    background-color: #7a9e55;  /* Soft Green */
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;  /* Rounded corners */
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Poppins', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-right: 10px;  /* Space between buttons */
}

/* Icon styling */
.auth-bar button i {
    margin-right: 8px;
    font-size: 1.2em;  /* Adjust icon size */
}

/* Hover Effect for Button */
.auth-bar button:hover {
    background-color: #4b6b34;  /* Darker green on hover */
    transform: scale(1.05);  /* Slight grow effect */
}

/* Focus Effect for Accessibility */
.auth-bar button:focus {
    outline: 2px solid #7a9e55; /* Outline on focus */
    outline-offset: 4px;
}

/* --------------------------------------------------------------------------------------- */
/*.auth-bar, .user-panel {
  position: absolute;
  top: 20px;
  right: 30px;
  display: flex;
  gap: 10px;
  align-items: center;
}*/

.auth-form {
  position: absolute;
  top: 60px;
  right: 30px;
  width: 200px;
  height: auto;
  background: #47ffd7;
  padding: 15px;
  border: 1px solid #a8c234;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);

  /* ------ Animation */
  opacity: 0;
  transform: translateY(-20px);
  animation: fadeSlideIn 0.4s ease forwards;
}

/* Keyframes for animation */
@keyframes fadeSlideIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.auth-form input,
.auth-form button {
  font-family: 'Quicksand', sans-serif;
  font-size: 0.7rem;
  padding: 4px;
}

.auth-message {
  margin-top: 10px;
  padding: 10px;
  border-radius: 5px;
  display: none;
  font-weight: bold;
  max-width: 500px;
}

.auth-message.error {
  background-color: #ffe5e5;
  color: #a10000;
  border: 1px solid #a10000;
}

.auth-message.success {
  background-color: #e5ffe5;
  color: #006600;
  border: 1px solid #006600;
}

/* ------------- Review Form -------------- */
#review-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 30px;
}

#review-form textarea {
  resize: vertical;
  min-height: 80px;
  padding: 10px;
  font-family: 'Quicksand', sans-serif;
  font-size: 1rem;
  border: 1px solid #c5c8a2;
  border-radius: 6px;
}

#review-form input[type="number"],
#review-form input[type="file"] {
  padding: 6px;
  border-radius: 6px;
  border: 1px solid #c8c6a2;
  font-size: 1rem;
}

#review-form button {
  align-self: flex-start;
  background-color: #c8c8a2;
  border: none;
  color: #3e2f2f;
  padding: 10px 20px;
  font-weight: 600;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

#review-form button:hover {
  background-color: #b6b788;
}

/* --------------- Reviews list ------------------- */
#reviews &gt; div {
  background: #fff;
  border: 1px solid #bec8a2;
  border-radius: 8px;
  padding: 15px;
  margin-bottom: 15px;
  box-shadow: 0 2px 6px rgba(178, 198, 160, 0.4);
}

#reviews p {
  margin: 5px 0;
  font-family: 'Quicksand', sans-serif;
  color: #3e2f2f;
}

#reviews img {
  max-width: 100%;
  max-height: 200px;
  border-radius: 6px;
  margin-top: 10px;
  display: block;
}

/* ------------- Responsive ---------------- */
@media (max-width: 600px) {
  .reviews-section {
    margin: 20px 15px 40px 15px;
    padding: 15px;
  }

  #auth input, #auth button {
    width: 100%;
    margin: 5px 0;
  }

  #review-form button {
    width: 100%;
  }
}

/* ----------- Contact Form ------------ */
.contact-form form {
  max-width: 500px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
}

.contact-form label {
  margin-top: 15px;
}

.contact-form input, .contact-form textarea {
  padding: 10px;
  margin-top: 5px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

.contact-form button {
  margin-top: 20px;
  padding: 10px;
  background-color: #4c715a;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.contact-form button:hover {
  background-color: #465a3c;
}

/* ---------- Footer ------------ */
footer {
  text-align: center;
  padding: 20px;
  background-color: #4c7158;
  color: white;
  margin-top: 40px;
}

/* ----------- Auth Overlay Fullscreen Modal ----------- */
.auth-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

.auth-overlay .auth-form {
  background: #47ffd1;
  padding: 20px;
  border: 1px solid #000201;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 260px;
  animation: fadeSlideIn 0.4s ease forwards;
}

.auth-overlay .auth-form input,
.auth-overlay .auth-form button {
  font-family: 'Quicksand', sans-serif;
  font-size: 0.9rem;
  padding: 6px 10px;
  border-radius: 6px;
  border: 1px solid #c8a2c8;
}

.auth-overlay .auth-form button {
  background-color: #a2c4c8;
  color: #3e2f2f;
  font-weight: bold;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.auth-overlay .auth-form button:hover {
  background-color: #88aeb7;
}

.close-button {
  align-self: flex-end;
  background: none;
  border: none;
  color: white;
  font-size: 1.4rem;
  cursor: pointer;
}

/* ------- Social Media Logos ------ */
a img {
  margin: 0 10px;
  transition: transform 0.2s ease;
}

a img:hover {
  transform: scale(1.2);
}

/* --------- Animation for opening and closing -------------- */
@keyframes fadeSlideIn {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeSlideOut {
  from {
    opacity: 1;
    transform: translateY(0);
  }
  to {
    opacity: 0;
    transform: translateY(-20px);
  }
}

.auth-form.fade-out {
  animation: fadeSlideOut 0.3s ease forwards;
}
</pre></body></html>