:root {
    --primary: #c19a6b; /* Gold accent */
    --secondary: #2c2c2c; /* Dark background */
    --light: #f8f9fa;
    --dark: #212529;
}
body {
    font-family: 'Poppins', sans-serif;
    overflow-x: hidden;
}
.ratio>* {
    width: 65% !important;
}
/* Mobile-only navbar backdrop */
#navbarBackdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.6); /* Semi-transparent black */
    z-index: 1020; /* Below navbar (1030), above content */
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s ease, visibility 0.25s;
}

/* Show backdrop when navbar is open */
#navbarBackdrop.show {
    opacity: 1;
    visibility: visible;
}

p.section-subheading {
    display: flex;
    align-content: center;
    flex-direction: column;
    flex-wrap: wrap;
}

/* Ensure navbar stays above backdrop */
.navbar {
    z-index: 1030 !important;
}
.navbar {
    background-color: var(--secondary);
    padding: 1rem 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}
.navbar-brand {
    font-weight: 700;
    font-size: 1.8rem;
    color: var(--primary) !important;
}
.nav-link {
    color: #fff !important;
    font-weight: 500;
    margin: 0 0.8rem;
    position: relative;
    transition: color 0.3s;
}
.nav-link:hover, .nav-link.active {
    color: var(--primary) !important;
}
.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    width: 0;
    height: 2px;
    background-color: var(--primary);
    transition: all 0.3s;
    transform: translateX(-50%);
}
.nav-link:hover::after, .nav-link.active::after {
    width: 70%;
}
.hero {
  background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('../slides/slides1.avif');
    background-size: cover;
    background-position: center;
    height: 137vh;
    display: flex;
    align-items: center;
    color: white;
    text-align: center;
}
.hero h1 {
    font-weight: 700;
    font-size: 4rem;
    margin-bottom: 1.5rem;
}
.hero p {
    font-size: 1.4rem;
    max-width: 700px;
    margin: 0 auto 2rem;
}
.btn-gold {
    background-color: var(--primary);
    border: none;
    padding: 0.8rem 2.5rem;
    font-weight: 600;
    border-radius: 0;
    transition: all 0.3s;
}
.btn-gold:hover {
    background-color: #a87f4d;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}
.section {
    padding: 6rem 0;
}
.section-title {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
}
.section-title h2 {
    font-weight: 700;
    color: var(--secondary);
    display: inline-block;
    padding-bottom: 1rem;
}
.section-title h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--primary);
}
.feature {
    text-align: center;
    padding: 1.5rem;
    transition: transform 0.3s;
}
.feature:hover {
    transform: translateY(-10px);
}
.feature i {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
}
.team-member {
    text-align: center;
    margin-bottom: 2rem;
}
.team-img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    border: 5px solid var(--primary);
    margin: 0 auto 1.5rem;
}
.price-card {
    background: #fff;
    border-radius: 0;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s;
    height: 100%;
}
.price-card:hover {
    transform: translateY(-10px);
}
.price-card .card-header {
    background: var(--primary);
    color: white;
    font-weight: 600;
    font-size: 1.3rem;
    border-radius: 0;
}
.price-list li {
    padding: 0.8rem 0;
    border-bottom: 1px solid #eee;
}
.price-list li:last-child {
    border-bottom: none;
}
.contact-form .form-control {
    border-radius: 0;
    padding: 0.8rem;
}
.contact-info i {
    color: var(--primary) !important;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}
.contact-info .fa-whatsapp {
    color: #25D366 !important;
}
footer {
    background: var(--secondary);
    color: #aaa;
    padding: 3rem 0;
}
.social-icons a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    color: white;
    text-align: center;
    line-height: 40px;
    border-radius: 50%;
    margin-right: 10px;
    transition: all 0.3s;
}
.social-icons a:hover {
    background: var(--primary);
    transform: translateY(-5px);
}
.scroll-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
    z-index: 1000;
}
.scroll-top.show {
    opacity: 1;
    visibility: visible;
}
/* Transparent navbar at top */
.navbar-transparent {
    background-color: rgba(44, 44, 44, 0.0) !important; /* Fully transparent */
    padding: 1.2rem 0;
    transition: all 0.4s ease;
    box-shadow: none;
}

.navbar-scrolled {
    background-color: #000000 !important;
    padding: 0.8rem 0 !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}

/* Ensure logo/text remains visible on transparent bg */
.navbar-transparent .navbar-brand,
.navbar-transparent .nav-link {
    color: white !important;
}
.navbar-transparent .navbar-toggler-icon {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(255,255,255,1)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}
#contact .row.g-4 {
    align-items: stretch;
}

#contact .col-lg-7 {
    display: flex;
    flex-direction: column;
}
#contact .col-lg-7 > div {
    flex: 1;
}
@media (orientation: landscape) {
    html.mobile .hero {
        height: 174vh;
    }
}
@media (orientation: portrait) {
    html.mobile .slide {
        flex-shrink: 1;
    }
}
@media (max-width: 767.98px) {
  html.mobile .product-slider {
    padding: 1rem 0;
    margin: 1.5rem auto;
    max-width: 100%;
  }

  html.mobile .slide-img {
    max-width: 94vw; /* Leave small side margins */
    aspect-ratio: 4 / 3; /* Adjust if your images are square or vertical */
    border-radius: 6px;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
  }

  /* Arrows: reposition & scale for mobile */
  html.mobile .slider-arrow {
    width: 38px;
    height: 38px;
    font-size: 1rem;
  }

  html.mobile .slider-arrow--prev {
    left: 8px;
  }
  html.mobile .slider-arrow--next {
    right: 8px;
  }

  /* Dots: slightly larger & spaced for touch */
  html.mobile .slider-dots {
    margin-top: 1rem;
  }
  html.mobile .slider-dots button {
    width: 12px;
    height: 12px;
  }
}
@media (max-width: 991.98px) {
    .navbar-transparent:not(.scrolled-mobile):not(.navbar-mobile-open) {
        background-color: rgba(0, 0, 0, 0.0) !important;
        padding: 1rem 0 !important;
        box-shadow: none !important;
    }
    .scrolled-mobile,
    .navbar-mobile-open {
        background-color: #000000 !important;
        padding: 0.8rem 0 !important;
        box-shadow: 0 2px 6px rgba(0,0,0,0.15) !important;
    }

    .navbar .navbar-brand,
    .navbar .nav-link,
    .navbar .navbar-toggler {
        color: #fff !important;
    }

    .navbar-toggler-icon {
        background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(255,255,255,1)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E") !important;
    }
}
html.mobile .slider-arrow:hover {
  background: rgba(255, 255, 255, 0.95);
  color: #2c2c2c;
}
.slider-arrow:disabled,
.slider-arrow[disabled] {
  opacity: 0.35 !important;
  cursor: default !important;
  pointer-events: none !important; /* Prevents hover/click entirely */
  background: rgba(255, 255, 255, 0.95) !important;
  color: #2c2c2c !important;
  transform: translateY(-50%) !important;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1) !important;
}

/* Ensure no hover transition or style change */
.slider-arrow:disabled:hover,
.slider-arrow[disabled]:hover {
  background: rgba(255, 255, 255, 0.95) !important;
  color: #2c2c2c !important;
  transform: translateY(-50%) !important;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1) !important;
}
.product-slider {
  position: relative;
  max-width: 900px; /* Adjust max width as needed */
  margin: 2rem auto;
  overflow: hidden; /* Crucial: hides adjacent slides */
  padding: 1.5rem 0;
}
.slide-img {
  width: 100%;
  max-width: 700px; /* Control max image width */
  height: auto;
  display: block;
  aspect-ratio: 4 / 3; /* Or 1/1, 3/4 — match your image ratio */
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.slider-inner {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1); /* Smooth, snappy easing */
  will-change: transform;
}

/* Slider Inner (slides wrapper) */
.slider-inner {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.33, 1, 0.68, 1);
  /* Prevent flicker */
  will-change: transform;
}

/* Slide */
.slide {
  min-width: 100%; /* Ensures each slide takes full width of container */
  flex-shrink: 0; /* Prevents shrinking */
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Product Card — now full-width in slide */
.product-card {
  width: 100%;
  max-width: 600px;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}

.product-card__image img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 3/2;
  object-fit: cover;
}

.product-card__content {
  padding: 1.5rem;
  text-align: center;
}

.product-card__title {
  font-size: 1.5rem;
  margin: 0 0 0.75rem;
  color: #1e293b;
}

.product-card__description {
  font-size: 1rem;
  color: #64748b;
  margin: 0 0 1rem;
  line-height: 1.6;
}

.product-card__price {
  font-size: 1.75rem;
  font-weight: 700;
  color: #0f172a;
  margin: 0;
}

/* Arrows */
.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid #e2e8f0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  color: #2c2c2c;
  cursor: pointer;
  z-index: 10;
  transition: all 0.25s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  /* Ensure they don’t get clipped */
  will-change: transform;
}

.slider-arrow:hover {
  background: var(--primary);
  color: white;
  transform: translateY(-50%) scale(1.05);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.slider-arrow--prev {
  left: 16px;
}
.slider-arrow--next {
  right: 16px;
}

/* Hide arrows on small mobile (optional) */
@media (max-width: 480px) {
  .slider-arrow {
    width: 36px;
    height: 36px;
    font-size: 1rem;
  }
  .slider-arrow--prev { left: 8px; }
  .slider-arrow--next { right: 8px; }
}

/* Dots */
.slider-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 1.5rem;
}

.slider-dots button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #cbd5e1;
  border: none;
  cursor: pointer;
  transition: background 0.3s;
}

.slider-dots button.active {
  background: #4a6cf7;
}

.loyaltycard {
  background: #ffce57;
  margin-top: -2.5em;
}

