body {
  font-family: "Prompt", sans-serif;
  background-color: #f9f5e9;
  margin: 0;
}

.hero {
  height: 85vh;
  background-color: #f3eee4;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #2c2c2c;
  position: relative;
  overflow: hidden;
  padding: 40px;
}

.hero-content {
  z-index: 2;
  max-width: 600px;
}

.hero-logo {
  max-height: 120px;
  margin-bottom: 30px;
  filter: contrast(160%) brightness(1.3)
    drop-shadow(0 2px 5px rgba(0, 0, 0, 0.3));
}

.hero h1 {
  font-size: 3rem;
  font-weight: bold;
}

.hero p {
  font-size: 1.1rem;
  color: #444;
}

.rotating-product {
  position: absolute;
  right: 0%;
  top: 50%;
  transform: translateY(-50%) rotate(5deg);
  width: 60vw;
  max-width: 700px;
  height: auto;
  animation: swingY 4s ease-in-out infinite alternate;
  z-index: 1;
  opacity: 0.98;
  filter: drop-shadow(0 10px 25px rgba(0, 0, 0, 0.1));
  transform-origin: center;
}

.dropdown-menu {
  margin-left: -40px;
  min-width: 220px;  
  border-radius: 8px; 
}

.about-section {
  padding-top: 3rem;
  padding-bottom: 2rem;
}

@keyframes swingY {
  0% {
    transform: translateY(-50%) rotate(0deg);
  }
  100% {
    transform: translateY(-50%) rotate(10deg);
  }
}

.clover {
  position: absolute;
  width: 80px;
  height: 80px;
  background-image: url("../images/bg/clover.png");
  background-size: cover;
  opacity: 0.08;
  animation: float infinite linear;
  pointer-events: none;
  z-index: 0;
}

@keyframes float {
  0% {
    transform: translateY(0px) rotate(0deg);
    opacity: 0.15;
  }
  50% {
    transform: translateY(-50vh) rotate(180deg);
    opacity: 0.3;
  }
  100% {
    transform: translateY(-100vh) rotate(300deg);
    opacity: 0;
  }
}

.showcase-img-tile {
  object-fit: contain;
  height: 320px;
  width: 100%;
  transition: transform 2.5s ease-in-out;
  animation: tiltRotate 8s ease-in-out infinite alternate;
  z-index: 2;
  position: relative;
}

@keyframes tiltRotate {
  0% {
    transform: rotate(-2deg);
  }
  100% {
    transform: rotate(2deg);
  }
}

.category-tile {
  position: relative;
  background: #fff;
  height: 360px;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.category-label {
  position: absolute;
  bottom: 12px;
  left: 12px;
  background: white;
  padding: 10px 14px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  max-width: 85%;
  border-radius: 0.25rem;
  z-index: 3;
}

.category-label .title {
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 4px;
  position: relative;
  display: inline-block;
}

.category-label .title::after {
  content: "";
  display: block;
  width: 24px;
  height: 2px;
  background-color: #000;
  margin-top: 4px;
}

.category-label .desc {
  font-size: 0.8rem;
  color: #5a4a42;
  line-height: 1.4;
  font-style: italic;
}

.floating-flower {
  position: absolute;
  width: 50px;
  height: 50px;
  background-image: url("../images/bg/flower-float.png");
  background-size: contain;
  background-repeat: no-repeat;
  opacity: 0.06;
  pointer-events: none;
  animation: flower-float linear infinite;
  z-index: 0;
}

@keyframes flower-float {
  0% {
    transform: translateY(0) rotate(0deg);
    opacity: 0.2;
  }
  100% {
    transform: translateY(-120vh) rotate(360deg);
    opacity: 0;
  }
}

.product-image {
  position: relative;
  overflow: hidden;
}

.product-image img {
  transition: transform 0.5s ease;
  width: 100%;
  height: auto;
}

.product-image:hover img {
  transform: scale(1.2);
}

.product-title {
  margin-top: 15px;
  font-weight: 500;
}

.product-price {
  color: #a17952;
  font-weight: bold;
}

.modal-img {
  width: 100%;
}

.product-img {
  width: 100%;
  max-height: 300px;
  object-fit: contain;
  aspect-ratio: 1 / 1;
  padding: 10px;
}

@media (max-width: 768px) {
  .hero {
    flex-direction: column;
    height: auto;
    padding: 40px 20px;
  }

  .hero h1 {
    font-size: 2rem;
  }

  @media (max-width: 768px) {
    .rotating-product {
      width: 90vw;
      margin-top: 20px;
      margin-bottom: 40px;
      position: relative;
      top: auto !important;
      transform: none !important;
      animation: swingY 4s ease-in-out infinite alternate;
    }
  }

  .clover {
    width: 50px;
    height: 50px;
  }
}
.workingwoman-banner {
  width: 100%;
  overflow: hidden;
  background-color: #ffffff;
}

.container-banner {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.responsive-banner {
  width: 100%;
  height: auto;
  max-height: 500px;
  object-fit: cover;
  object-position: center;
}

html,
body {
  margin: 0;
  padding: 0;
  width: 100%;
  overflow-x: hidden;
  font-family: "Prompt", sans-serif;
  background-color: #f9f5e9;
  position: relative;
}
footer {
  margin-top: 0 !important;
}

.navbar {
  background-color: #fff;
  border-bottom: 1px solid #eee;
  font-family: "Prompt", sans-serif;
}

.nav-link {
  color: #333;
  font-weight: 500;
}

.nav-link:hover,
.nav-link.active {
  color: #c59d5f;
}

@media (max-width: 768px) {
  .dropdown-menu {
    right: 0;
    left: auto;
    transform: translateX(-20%);
  }
}
