/* -----------------------
     Theme variables & reset
     ----------------------- */
:root {
  --gold: #d4af37;
  --gold-2: #c99f2f;
  --bg: #0b0b0b; /* fallback page background for dark sections */
  --white: #ffffff;
  --black: #0a0a0a;
  --muted: #777777;
  --glass: rgba(255, 255, 255, 0.06);
  --radius: 14px;
  --max-w: 900px;
  --shadow-soft: 0 8px 30px rgba(10, 10, 10, 0.25);
  --accent-gradient: linear-gradient(
    135deg,
    rgba(212, 175, 55, 0.95),
    rgba(201, 159, 47, 0.95)
  );
}
a {
  text-decoration: none !important;
}

* {
  box-sizing: border-box;
}
html,
body {
  height: 100%;
}
body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, "Segoe UI", Roboto,
    "Helvetica Neue", Arial;
  color: var(--black);
  background: #f9f3e7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.4;
}

a {
  color: inherit;
  text-decoration: none;
}
img {
  max-width: 100%;
  display: block;
}

/* -----------------------
     Layout
     ----------------------- */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 48px 20px;
}
header {
  position: sticky;
  top: 0;
  z-index: 99;
  backdrop-filter: blur(6px);
  background: rgba(255, 255, 255, 0.55);
  border-bottom: 1px solid rgba(10, 10, 10, 0.04);
}
.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 20px;
}
.brand {
  display: flex;
  gap: 14px;
  align-items: center;
}
.brand .logo {
  display: flex;
  flex-direction: column;
  font-weight: 800;
  color: var(--gold);
  font-family: "Playfair Display", serif;
  letter-spacing: 0.6px;
}
nav ul {
  display: flex;
  gap: 18px;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
}
nav a {
  position: relative;
  padding-bottom: 6px;
  color: #111;
  font-weight: 600;
}
nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.28s cubic-bezier(0.2, 0.9, 0.3, 1);
}
nav a:hover::after {
  transform: scaleX(1);
}
.actions {
  display: flex;
  gap: 10px;
  align-items: center;
}

/* .hero{
    margin-top:28px;
    display:grid; grid-template-columns:1fr 520px; gap:36px; align-items:center;
  }
  .hero-left{padding:18px 6px}
  .eyebrow{display:inline-flex; gap:8px; align-items:center; color:var(--muted); font-size:13px}
  .hero-title{font-family:"Playfair Display", serif; font-size:44px; line-height:1.04; margin:18px 0 12px; font-weight:700; color:#0b0b0b}
.slogan{font-family:"Playfair Display", serif;}

  .hero-lead{color:var(--muted); max-width:620px}
  .hero-cta{display:flex; gap:12px; margin-top:22px} */
/* Hero Container */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  color: #fff;
  border-radius: 15px;
}

/* Background Video */
.hero-bg-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

/* Overlay tint */
.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.55);
  z-index: 2;
}

/* Hero Content */
.hero-content {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  padding: 4rem 2rem;
  gap: 2rem;
  flex-wrap: wrap;
}

/* Left Text */
.hero-left {
  flex: 1;
  max-width: 550px;
}

.hero-title {
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.2;
  margin-bottom: 1rem;
}

.hero-lead {
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  margin-bottom: 1.5rem;
}

/* Right Slideshow */
.hero-right {
  flex: 1;
  min-width: 300px;
}
.hero-slider {
  width: 100%;
  height: 380px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.hero-slider img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Swiper Pagination */
.swiper-pagination-bullet {
  background: #ffd700 !important;
  opacity: 0.8;
}
.swiper-pagination-bullet-active {
  background: #fff !important;
}

/* Responsive */
@media (max-width: 992px) {
  .hero {
    display: none;
  }
  .hero-content {
    text-align: center;
    justify-content: center;
  }
  .hero-left {
    max-width: 100%;
  }
  .hero-slider {
    height: 260px;
  }
}

.btn {
  padding: 12px 20px;
  border-radius: 999px;
  font-weight: 700;
  cursor: pointer;
  border: transparent;
  box-shadow: var(--shadow-soft);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.btn-primary {
  background: var(--gold);
  color: #081010;
}
.btn-ghost {
  background: transparent;
  border: 2px solid rgba(10, 10, 10, 0.06);
  color: #111;
}

.hero-right {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(10, 10, 10, 0.18);
}
.hero-image {
  height: 540px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  padding: 28px;
}
.hero-badge {
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.35));
  color: #fff;
  padding: 10px 14px;
  border-radius: 12px;
  font-weight: 700;
  margin-left: 18px;
}
.offer-strip {
  position: absolute;
  left: 18px;
  top: 18px;
  background: rgba(0, 0, 0, 0.6);
  color: white;
  padding: 10px 14px;
  border-radius: 10px;
  font-weight: 600;
}

/* decorative particles */
.particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}

/* -----------------------
     Offers carousel
     ----------------------- */
.section-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 48px 0 18px;
}
.section-title h2 {
  font-size: 22px;
  font-weight: 800;
}
.offers-card {
  background: linear-gradient(
    135deg,
    rgba(212, 175, 55, 0.06),
    rgba(255, 255, 255, 0.02)
  );
  padding: 20px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  gap: 14px;
  border: 1px solid rgba(10, 10, 10, 0.04);
}

/* -----------------------
     Product grid
     ----------------------- */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 22px;
  margin-top: 18px;
}
.product {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  background: var(--white);
  border: 1px solid rgba(10, 10, 10, 0.04);
  box-shadow: 0 15px 30px rgba(10, 10, 10, 0.06);
  transform-style: preserve-3d;
}
.product-media {
  height: 260px;
  background-size: cover;
  background-position: center;
  transition: transform 0.45s cubic-bezier(0.2, 0.9, 0.3, 1);
}
.product-body {
  padding: 14px;
}
.badge {
  position: absolute;
  left: 12px;
  top: 12px;
  background: rgba(0, 0, 0, 0.65);
  color: #fff;
  padding: 8px 10px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 12px;
  z-index: 2;
  box-shadow: 0 6px 14px rgba(10, 10, 10, 0.12);
}
.price {
  font-weight: 800;
  margin-top: 8px;
}
.product-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}
.btn-small {
  padding: 8px 12px;
  border-radius: 10px;
  font-weight: 700;
  cursor: pointer;
  border: transparent;
  transition: transform 0.12s;
}
.btn-add {
  background: var(--gold);
  color: #0a0a0a;
}
.btn-view {
  background: #fff;
  border: 1px solid rgba(10, 10, 10, 0.06);
}

/* flying cart animation helper */
.cart-icon {
  position: relative;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: transparent;
  border: 1px solid rgba(10, 10, 10, 0.06);
}
.cart-count {
  position: absolute;
  right: -8px;
  top: -8px;
  min-width: 20px;
  height: 20px;
  display: inline-grid;
  place-items: center;
  padding: 0 6px;
  background: var(--gold);
  color: #000;
  border-radius: 999px;
  font-weight: 800;
  font-size: 12px;
  box-shadow: 0 6px 14px rgba(212, 175, 55, 0.12);
}

.services {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 24px;
}

.service {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.service:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.service img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  object-position: top;
  border-bottom: 1px solid #f0f0f0;
}

.service-content {
  padding: 20px;
}

.service-content strong {
  display: block;
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: #333;
}

.service-content p {
  color: #666;
  font-size: 0.95rem;
  line-height: 1.5;
}
.contact {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 18px;
  margin-top: 28px;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px;
  border-radius: 10px;
  border: 1px solid rgba(10, 10, 10, 0.06);
  margin-bottom: 10px;
}

/* -----------------------
     Footer
     ----------------------- */
footer {
  margin-top: 48px;
  background: #0b0b0b;
  color: #eee;
  padding: 38px 20px;
  border-top: 6px solid var(--gold-2);
}

.socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: transparent;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  margin-right: 8px;
}

/* small screens */
@media (max-width: 980px) {
  .hero {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .container {
    padding: 28px 18px;
  }
  .services {
    grid-template-columns: 1fr;
  }
  .contact {
    grid-template-columns: 1fr;
  }
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
}
.menu-close {
  display: none;
}

/* Mobile full-screen menu (replace prior @media block) */
@media (max-width: 980px) {
  .menu-toggle {
    display: block;
  }
  .menu-close {
    display: block;
  }

  nav.nav-menu {
    position: fixed;
    inset: 0; /* top:0; right:0; bottom:0; left:0; */
    width: 50vw;
    height: 100vh; /* full viewport height (fixes the overflow) */
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(6px);
    box-shadow: 0 12px 40px rgba(10, 10, 10, 0.12);
    padding: calc(18px + env(safe-area-inset-top)) 24px 24px;
    box-sizing: border-box;
    overflow-y: auto; /* allow the menu to scroll if content is long */
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch; /* smooth scrolling on iOS */
    transform: translateX(-100%); /* start off-screen to the left */
    transition: transform 0.45s cubic-bezier(0.2, 0.9, 0.3, 1);
    z-index: 1200;
  }

  nav.nav-menu ul {
    display: flex;
    flex-direction: column;
    gap: 22px;
    margin: 0;
    padding: 0;
    list-style: none;
  }

  nav.nav-menu a {
    display: block;
    padding: 10px 6px;
    font-size: 18px;
    font-weight: 700;
  }

  nav.nav-menu.open {
    transform: translateX(0); /* visible */
  }

  /* prevent the page behind from scrolling while the menu is open */
  body.menu-open {
    position: fixed;
    inset: 0;
    overflow: hidden;
    width: 100%;
    height: 100vh;
  }
}

.menu-close {
  position: absolute;
  top: 16px;
  right: 16px;
  font-size: 28px;
  font-weight: 600;
  background: none;
  border: none;
  cursor: pointer;
  color: #111;
  line-height: 1;
  z-index: 10000;
}

.menu-close:focus {
  outline: 3px solid rgba(212, 175, 55, 0.4); /* same focus style */
}

.contact-section {
  margin-top: 48px;
  font-family: sans-serif;
}
.contact-section h2 {
  text-align: center;
  font-weight: bold;
}
.contact-section p.text-muted {
  text-align: center;
  margin-bottom: 32px;
  color: #6c757d;
}
.contact-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}
.contact-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  padding: 20px;
  flex: 1 1 300px;
  max-width: 350px;
}
.contact-card h4 {
  margin-bottom: 16px;
  font-weight: bold;
}
.social-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: center;
  padding: 12px;
  border-radius: 8px;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  margin-bottom: 10px;
}
.social-btn i {
  font-size: 18px;
}
.social-tiktok {
  background: #000;
}
.social-whatsapp {
  background: #25d366;
}
.social-facebook {
  background: #1877f2;
}
.social-instagram {
  background: #e1306c;
}
.social-youtube {
  background: #ff0000;
}
.map-container {
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
  margin-top: 12px;
}
.map-container iframe {
  width: 100%;
  height: 250px;
  border: 0;
}

.option-list {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 6px;
}

.option-btn {
  padding: 4px 10px;
  border: 1px solid #ddd;
  background: #fff;
  border-radius: 4px;
  cursor: pointer;
  font-size: 13px;
  transition: all 0.2s;
}

.option-btn:hover {
  background: #f5f5f5;
}

.option-btn.active {
  border-color: #000;
  background: #000;
  color: #fff;
}



#uni_modal2 .btn-close {
  filter: brightness(0.7);
  transition: 0.2s;
}
#uni_modal2 .btn-close:hover {
  filter: brightness(0.3);
  transform: rotate(90deg);
}

.btn-order {
  background-color: #d4af37;
  color: #000; /* white text */
  font-weight: 600; /* semi-bold */
  padding: 10px 24px; /* vertical & horizontal padding */
  border: none; /* no default border */
  border-radius: 8px; /* rounded corners */
  font-size: 1rem; /* readable font size */
  cursor: pointer; /* pointer on hover */
  transition: all 0.3s ease; /* smooth hover transition */
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1); /* subtle shadow */
}

.btn-order:hover {
  background-color: #c8a63a; /* slightly darker on hover */
  transform: translateY(-2px); /* slight lift effect */
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

.btn-order:active {
  transform: translateY(0); /* press effect */
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.1);
}

/* Pagination Wrapper */
.pagination-wrapper {
  text-align: center;
  margin: 30px 0;
}

/* Pagination Container */
.pagination {
  display: inline-flex;
  list-style: none;
  padding: 0;
  margin: 0;
  gap: 6px;
}

/* Pagination Links */
.pagination .page-link {
  display: inline-block;
  padding: 8px 14px;
  border: 1px solid #ddd;
  border-radius: 6px;
  text-decoration: none;
  color: #333;
  font-size: 14px;
  transition: all 0.3s ease;
  background: #fff;
}

/* Hover Effect */
.pagination .page-link:hover {
  background: #f4f4f4;
  border-color: #bbb;
  color: #111;
}

/* Active Page */
.pagination .active .page-link,
.pagination .active span.page-link {
  background: #d4af37; /* gold */
  color: #fff !important;
  border-color: #d4af37;
  font-weight: bold;
  cursor: default;
}

/* Disabled State */
.pagination .disabled .page-link,
.pagination .disabled span.page-link {
  color: #aaa;
  background: #f9f9f9;
  border-color: #eee;
  cursor: not-allowed;
}

.payment-box {
  max-width: 100%;
  padding: 20px;
  border-radius: 12px;
  text-align: center;
}

.thumbnail-scroll-wrapper {
  position: relative;
  max-width: 100%;
  overflow: hidden;
}

/* Container with horizontal scroll (scrollbars hidden) */
#thumbContainer {
  overflow-x: auto;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
}

/* Hide scrollbars (all browsers) */
#thumbContainer::-webkit-scrollbar {
  display: none;
}
#thumbContainer {
  -ms-overflow-style: none;  /* IE, Edge */
  scrollbar-width: none;     /* Firefox */
}

/* Scroll buttons (arrows) */
.scroll-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.9);
  border: none;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 3;
  box-shadow: 0 0 6px rgba(0,0,0,0.2);
  transition: all 0.2s ease-in-out;
}
.scroll-btn:hover {
  background: #d4af37;
  color: #fff;
}
.scroll-btn.left { left: 0; }
.scroll-btn.right { right: 0; }

/* Thumbnail styling */
.thumb-img {
  transition: transform 0.3s ease, border-color 0.3s ease;
}
.thumb-img:hover {
  transform: scale(1.08);
}


#uni_modal2 .modal-content {
  background: transparent;
  border: none;
  box-shadow: none;
}
#uni_modal2 .modal-header, 
#uni_modal2 .modal-body, 
#uni_modal2 .modal-footer {
  background: transparent;
  border: none;
}


@media (min-width: 450px) {
  .buttonactions {
    transform: scale(0.8);
    transform-origin: top left;
    width: calc(100% / 0.8);
  }
}
