/* ===============================
   PUBLIC CONTENT
================================ */
.public .public-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.public .public-main {
  flex: 1;
}

.public .content {
  padding: 100px 20px;
  position: relative;
}

.public .content > p {
  max-width: 900px;
  margin: auto;
  text-align: center;
  font-size: 1.15rem;
  color: rgba(0, 0, 0, 0.8);
}

/* ===============================
   NAVBAR STATES
================================ */
.public .navbar.navbar--hidden {
  transform: translateY(-100%);
}

.public .navbar.scrolled {
  background: rgba(0, 0, 0, 0.85);
}

/* =======================================================================
   index.html (Home Page)
   ======================================================================= */

.header {
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Product Grid Layout */
.product_homeImages {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
  padding: 30px 30px;
  gap: 50px;
}

/* Product Card */
.product_card {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  max-width: 420px;
  cursor: pointer;

  /* Scroll reveal base state */
  opacity: 0;
  transform: translateY(80px) scale(0.96);
  transition:
    opacity 1s cubic-bezier(0.22, 1, 0.36, 1),
    transform 1s cubic-bezier(0.22, 1, 0.36, 1);
}

/* Reveal on scroll */
.product_card.reveal {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* Product Image */
.product_card img {
  width: 100%;
  display: block;

  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.35);

  will-change: transform;
  transition:
    transform 0.6s cubic-bezier(0.22, 1, 0.36, 1),
    filter 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

/* Glass Overlay (Details) */
.product_details {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;

  padding: 30px;
  color: white;

  background: rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);

  opacity: 0;
  transform: translateY(100%);
  transition:
    opacity 0.5s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.5s cubic-bezier(0.22, 1, 0.36, 1),
    backdrop-filter 0.5s ease;
}

/* Hover / Tap Interaction */
.product_card:hover .product_details,
.product_card:active .product_details {
  opacity: 1;
  transform: translateY(0);
}

.product_card:hover img,
.product_card:active img {
  transform: scale(1.08);
  filter: blur(2px);
}

.product_card.is-open .product_details {
  opacity: 1;
  transform: translateY(0);
}

.product_card.is-open img {
  transform: scale(1.06);
  filter: blur(1px);
}

/* Text Styling */
.product_details h3 {
  font-size: 1.4rem;
  margin-bottom: 12px;
  padding-bottom: 6px;
  color: white;
  border-bottom: 1px solid rgba(255, 255, 255, 0.6);
}

.product_details p {
  font-size: 0.95rem;
  line-height: 1.5;
}

/* Button */
.view_btn {
  display: inline-block;
  margin-top: 18px;
  padding: 10px 22px;

  background: transparent;
  border: 1px solid white;
  border-radius: 30px;

  color: white;
  font-size: 0.9rem;
  text-decoration: none;
  cursor: pointer;

  transition: all 0.3s ease;
}

.view_btn:hover {
  background: white;
  color: black;
}

/* Mobile Luxury Motion Tuning */
@media (max-width: 768px) {
  /* Scroll reveal smoother */
  .product_card {
    transition:
      opacity 1.3s cubic-bezier(0.22, 1, 0.36, 1),
      transform 1.3s cubic-bezier(0.22, 1, 0.36, 1);
  }

  /* Image motion softer */
  .product_card img {
    transition:
      transform 0.9s cubic-bezier(0.22, 1, 0.36, 1),
      filter 0.9s cubic-bezier(0.22, 1, 0.36, 1);
  }

  /* Reduced zoom + blur */
  .product_card:hover img,
  .product_card:active img {
    transform: scale(1.04);
    filter: blur(1px);
  }

  /* Overlay animation calmer */
  .product_details {
    transition:
      opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1),
      transform 0.8s cubic-bezier(0.22, 1, 0.36, 1),
      backdrop-filter 0.8s ease;
  }

  /* Button feels smoother */
  .view_btn {
    transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  }

  /* Pro Tip (Elite Mobile UX)
     Tap locks details open */
  .product_card:active .product_details {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===============================
   STAGE 01
================================ */

.stage_01_cover {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 100%;
  height: 100vh;
  min-height: 100svh;
  background-color: #000;
}

.stage_01_title {
  margin: 0;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  line-height: 1.05;
  font-size: clamp(2.55rem, 4.72vw, 4.25rem);
  font-family: "Arnaud-Regular";
  font-weight: 400;
  opacity: 0;
  transform: translateY(-28px);
  animation: stage-float-in 1.4s cubic-bezier(0.22, 1, 0.36, 1) 0.15s forwards;
  will-change: transform, opacity;
}

.stage_01_tagline {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  text-transform: uppercase;
  letter-spacing: 0.46em;
  line-height: 2.5;
  font-size: clamp(0.83rem, 1.53vw, 1.38rem);
  font-family: "Arial";
  font-weight: 500;
  opacity: 0;
  transform: translateY(-22px);
  animation: stage-float-in 1.55s cubic-bezier(0.22, 1, 0.36, 1) 0.35s forwards;
  will-change: transform, opacity;
}

@keyframes stage-float-in {
  0% {
    opacity: 0;
    transform: translateY(-28px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .stage_01_title,
  .stage_01_tagline {
    animation: none;
    opacity: 1;
    transform: none;
  }
}

/* =========================
   MATERIAL AUTHORITY
========================= */
.material_wrap_align {
  display: grid;
  justify-self: center;
  width: auto;

  padding: 35px 35px 25px 35px;

  background-color: rgba(255, 255, 255, 0.8);
  border-radius: 25px;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.material_description {
  width: 100%;
  display: grid;
  justify-content: center;
  align-items: center;

  padding: 0 25px;
}
.material_description p {
  color: rgba(0, 0, 0, 0.85);
  font-size: 1.07rem;
  text-align: justify;

  padding: 10px 0 10px 0;
  line-height: 1.7;
  letter-spacing: 0.2px;
  opacity: 0.92;
}

.material_wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
  gap: 25px;
  margin-top: 35px;
}

.material_keyPoint {
  flex: 1 1 360px;
  max-width: 560px;

  line-height: 1.75;
  letter-spacing: 0.2px;

  padding: 6px 0;
}

#material_heading {
  margin: 0 0 18px;
  font-size: 1.1rem;
  line-height: 1.8;
  letter-spacing: 0.25px;
  opacity: 0.92;
  border: none;
  text-align: left;
  color: rgba(0, 0, 0, 0.9);
}

.material_keyPoint ul {
  margin: 0;
  padding-left: 22px;
  list-style: none;
}

.material_keyPoint ul li {
  position: relative;
  padding: 10px 0 10px 18px;

  font-size: 0.98rem;
  line-height: 1.7;
  letter-spacing: 0.2px;
  opacity: 0.92;
}

.material_keyPoint ul li b {
  color: rgba(0, 0, 0, 0.8);
}

.material_keyPoint ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 18px;

  width: 6px;
  height: 6px;
  border-radius: 999px;

  opacity: 0.8;
  background: currentColor;
}

.material_images {
  flex: 1 1 360px;
  max-width: 660px;
  border-radius: 25px;
  overflow: hidden;
  background: transparent;
}

/* Slider */
.material_slider {
  width: 100%;
  position: relative;
  overflow: hidden;
  user-select: none;
  -webkit-user-select: none;
  cursor: grab;
}

.material_slider:active {
  cursor: grabbing;
}

.material_track {
  display: flex;
  transform: translateX(0);
  transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.material_slide {
  flex: 0 0 100%;
}

.material_slide img {
  width: 100%;
  height: auto;
  display: block;
}

/* Dots */
.material_dots {
  position: absolute;
  left: 50%;
  bottom: 12px;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.material_dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.35);
  cursor: pointer;
  padding: 0;
}

.material_dot.is-active {
  background: rgba(255, 255, 255, 0.75);
}

/* Mobile spacing */
@media (max-width: 1100px) {
  .material_keyPoint,
  .material_images {
    max-width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .material_track {
    transition: none;
  }
}

/* ===============================
   Delivery section
================================ */
#delivery_content {
  display: grid;
  justify-content: center;
}
.delivery_wrapper {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 25px;
}
.delivery_card {
  background-color: rgba(255, 255, 255, 0.8);
  display: grid;
  place-items: center;
  justify-content: center;
  text-align: center;
  flex: 1 1 calc(50% - 25px);
  max-width: 520px;
  border-radius: 25px;
  gap: 1rem;
  padding: 25px;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.delivery_icon {
  width: 7rem;
  height: auto;
  margin: auto;
}
.delivery_social {
  display: flex;
  gap: 5px;
  margin: 5px;
}
.delivery_social a {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;

  font-size: 0.9rem;
  letter-spacing: 0.02em;

  color: #8f8f8f;
  text-decoration: none;

  padding: 6px 8px;
  border-radius: 999px;

  background: rgba(255, 255, 255, 0.4);
  border: 1px solid rgba(0, 0, 0, 0.15);

  transition:
    color 0.35s cubic-bezier(0.22, 1, 0.36, 1),
    background-color 0.35s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.35s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.35s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

#del_whatsapp {
  color: #25d366;
  border-color: rgba(37, 211, 102, 0.6);
}
#del_facebook {
  color: #1877f2;
  border-color: rgba(24, 119, 242, 0.6);
}
#del_instagram {
  color: #c13584;
  border-color: rgba(193, 53, 132, 0.6);
}

/* slide layer */
.delivery_social a::after {
  content: "";
  position: absolute;
  inset: 0;

  width: 0%;
  height: 100%;
  top: 0;
  right: 0;

  border-radius: inherit;
  z-index: 0;
  pointer-events: none;
  transition: width 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

/* trigger slide */
.delivery_social a:hover::after {
  left: 0;
  width: 100%;
}

/* keep content above slide */
.delivery_social a > * {
  position: relative;
  z-index: 1;
}

#del_whatsapp::after {
  background: rgba(37, 211, 102, 0.09);
}
#del_facebook::after {
  background: rgba(24, 119, 242, 0.09);
}
#del_instagram::after {
  background: linear-gradient(
    135deg,
    rgba(245, 133, 41, 0.09),
    rgba(193, 53, 132, 0.09),
    rgba(81, 91, 212, 0.09)
  );
}

@media (max-width: 768px) {
  .delivery_card {
    flex: 1 1 100%;
    max-width: 390px;
  }
}
