:root {
  --bg-dark: #464646;
  --bg-darker: #3f3f3f;
  --text-main: #e6e6e6;
  --text-muted: #c5c5c5;
  --accent-gold: #d6a85a;
  --accent-gold-hover: #c2954d;

  --space-xs: .5rem;
  --space-sm: 1rem;
  --space-md: 2rem;
  --space-lg: 4rem;
  --space-xl: 6rem;

  --radius-sm: 6px;
  --radius-lg: 16px;
}

* {
  box-sizing: border-box;
}

/* =====================
   LOCAL FONTS – NEXA
===================== */

@font-face {
  font-family: "Nexa";
  src: url("../fonts/Nexa-ExtraLight.ttf") format("truetype");
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Nexa";
  src: url("../fonts/Nexa-Heavy.ttf") format("truetype");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

body {
  margin: 0;
  font-family: "Nexa", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  font-weight: 200;
  background: var(--bg-dark);
  color: var(--text-main);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

/* =====================
   HEADER (FINAL FIX)
===================== */

.site-header {
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 100;
  padding: 15px 0;
}

/* Desktop layout */
.header-grid {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Left nav (desktop) */
.nav-left {
  display: flex;
  gap: 50px;
}

.nav-left a {
  font-size: 24px;
  letter-spacing: 2px;
  color: #e0e0e0;
  font-weight: 400;
  transition: color 0.3s ease;
}

.nav-left a:hover {
  color: var(--accent-gold);
}

/* LOGO — TRUE CENTER */
.nav-logo {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  font-weight: 600;
  letter-spacing: 3px;
  color: #ffffff;
  max-width: 140px;
  width: 100%;
}

.nav-logo img {
  width: 100%;
  height: auto;
  display: block;
  margin-top: 50px;
}

/* Toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
}

.nav-toggle span {
  width: 22px;
  height: 2px;
  background: #ffffff;
  display: block;
}

/* =====================
   MOBILE
===================== */

@media (max-width: 991px) {

  .nav-toggle {
    display: flex;
  }

  /* Toggle pinned left */
  .nav-toggle {
    position: absolute;
    left: 16px;
    top: 100%;
    transform: translateY(-50%);
  }

  /* Logo stays DEAD CENTER */
  .nav-logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    max-width: 100px;
  }

  .nav-logo img {
    margin-top: -20px;
  }

  /* Mobile menu */
  .nav-left {
    position: absolute;
    top: 100%;
    left: 0px;
    width: 100%;
    background: rgba(0, 0, 0, 0.95);
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    padding: 24px 0;
    display: none;
  }

  .nav-left.active {
    display: flex;
  }
}


/* =====================
   MOBILE BEHAVIOR
===================== */
@media (max-width: 991px) {
  .header-grid {
    flex-direction: column;
    row-gap: 16px;
    text-align: center;
  }

  .nav-left {
    justify-content: left;
  }
}

@media (max-width: 576px) {
  .nav-logo {
    max-width: 90px;
  }

  .nav-left {
    gap: 16px;
  }

  .nav-left a {
    font-size: 14px;
    margin-left: 20px;
  }
}

/* =====================
       HERO CAROUSEL
    ====================== */
.hero-carousel-section {
  position: relative;
  min-height: 85vh;
  padding-bottom: 0;
}

.hero-carousel {
  min-height: 100vh;
}

.hero-carousel-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:
    linear-gradient(rgba(0, 0, 0, .55), rgba(0, 0, 0, .55)) background-attachment: fixed;
  z-index: -1;
}

.hero-slide {
  display: flex;
  align-items: center;
  min-height: 100vh;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  overflow: hidden;
}

.hero-slide .row {
  width: 100%;
  position: relative;
  z-index: 1;
}

/* Slide 1: Midnight */
.banner1 {
  background-image: url('../images/Banner-1.jpg');
}

/* Slide 2: Midnight */
.banner2 {
  background-image: url('../images/Banner-2.jpg');
}

.banner3 {
  background-image: url('../images/Banner-3.jpg');
}

/* =====================
   MOBILE RESPONSIVE BANNERS
===================== */

@media (max-width: 767px) {
  .banner1 {
    background-image: url('../images/1.jpg');
  }

  .banner2 {
    background-image: url('../images/2.jpg');
  }

  .banner3 {
    background-image: url('../images/3.jpg');
  }

  .hero-slide .row{
    margin-top: -90%;
  }
}

.carousel-item {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 100vh;
}

.carousel-image {
  animation: slideInLeft 0.6s ease-in-out;
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.carousel-control-prev,
.carousel-control-next {
  width: auto;
  background: none;
  border: none;
  opacity: 1;
  transition: opacity 0.3s;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
  opacity: 0.7;
  background: none;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  width: 40px;
  height: 40px;
  filter: invert(1);
}

.carousel-indicators [data-bs-target] {
  background-color: var(--accent-gold);
  opacity: 0.5;
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.carousel-indicators .active {
  background-color: var(--accent-gold);
  opacity: 1;
}

.hero-slide h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 300;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.hero-slide h1 span {
  display: block;
  color: var(--accent-gold);
  font-weight: 700;
  font-size: clamp(3rem, 6vw, 5rem);
}

.btn-primary-custom {
  background: var(--accent-gold);
  color: #fff;
  padding: 0.7rem 2rem;
  border: none;
  font-weight: 600;
  letter-spacing: 1px;
}

.btn-primary-custom:hover {
  background: var(--accent-gold-hover);
}

.hero h1,
.hero-title {
  font-family: "Nexa", sans-serif;
  font-weight: 200;
  /* ExtraLight */
  font-size: clamp(32px, 4.5vw, 60px);
  line-height: 1.15;
  letter-spacing: 0.5px;
  margin: 0;
  color: #f0f0f0;
}

.hero h1 span,
.hero-title span {
  display: block;
  margin-top: 8px;
  font-weight: 800;
  font-size: clamp(38px, 5vw, 72px);
  letter-spacing: 1px;
  color: var(--accent-gold);
}

/* =====================
       LOGO RING
    ====================== */
.logo-ring {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  border: 2px dotted #aaa;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-md);
  font-weight: 600;
  letter-spacing: 2px;
  margin-bottom: 70px;
}

.pd-section {
  padding-top: 10rem;
}

/* =====================
       SECTIONS
    ====================== */
section {
  padding: var(--space-lg) 0;
}

section h2 {
  font-size: 2.5rem;
  letter-spacing: 2px;
  margin-bottom: var(--space-md);
  font-weight: 600;
}

.about-text {
  margin: 0 auto;
  color: var(--text-muted);
  text-align: justify;
  font-size: 20px;
}

.tl {
  text-align: left;
  font-size: 13px;
}

.tr {
  text-align: right;
  font-size: 13px;
}

/* Responsive for tl tr */
@media (max-width: 768px) {

  .tl,
  .tr {
    text-align: center;
  }
}

/* =====================
       PRODUCTS
    ====================== */
.product-link {
  text-decoration: none;
  color: inherit;
  display: block;
  transition: transform 0.3s ease;
}

.product-link:hover {
  transform: translateY(-5px);
}

.product-card {
  text-align: center;
}

.product-card img {
  background: #eee;
}

.product-title {
  margin-top: var(--space-sm);
  letter-spacing: 1px;
  font-size: 1.3rem;
  font-weight: 800;
}

/* =====================
       FOOTER
    ====================== */
footer {
  background: var(--bg-dark);
  padding: var(--space-lg) 0 var(--space-sm);
  text-align: center;
}

.footer-links {
  margin: var(--space-md) 0;
  font-size: 1.5rem;
  color: var(--text-muted);
}

.footer-icons {
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: var(--space-md);
  margin: var(--space-md) 0;
}

.footer-icons a {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: 1rem;
  color: var(--text-muted);
  transition: color 0.3s ease;
  font-size: 25px;

}

.footer-icons a:hover {
  color: var(--accent-gold);
}

.footer-icons i {
  margin: 0;
  font-size: 1.2rem;
}

.footer-icons img {
  width: 30px;
  height: auto;
}

.call_wp {
  width: 50px !important;
}

/* Responsive footer icons */
@media (max-width: 768px) {
  .footer-icons {
    display: flex;
    flex-direction: column;
    margin: var(--space-md) 0;
    align-items: center;
  }

  .footer-icons a {
    font-size: 0.9rem;
  }

  .footer-icons img {
    width: 25px;
  }

}

@media (max-width: 576px) {
  .footer-icons {
    display: flex;
    flex-direction: column;
    margin: var(--space-md) 0;
    align-items: center;
  }

  .footer-icons {
    gap: var(--space-sm);
  }

  .footer-icons a {
    font-size: 0.85rem;
  }

  .footer-icons img {
    width: 20px;
  }

}

/* =====================
       CONTACT US
    ====================== */
.contact-info {
  text-align: center;
}

.contact-info ul {
  list-style: none;
  text-align: center;
  padding: var(--space-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.contact-info ul li {
  font-size: clamp(1.2rem, 2vw, 2rem);
  margin-bottom: 15px;
}

.contact-info ul li span {
  font-weight: 600;
}

@media (max-width: 768px) {
  .contact-info ul {
    padding: var(--space-md);
  }

  .contact-info ul li {
    font-size: 1.1rem;
  }
}

@media (max-width: 576px) {
  .contact-info ul {
    padding: var(--space-sm);
  }

  .contact-info ul li {
    font-size: 1rem;
    margin-bottom: 10px;
  }
}

.instaprofile {
  width: 364px;
  height: auto;
}

.followus p {
  margin-top: 20px;
  font-weight: 600;
  font-size: 2rem;
}

/* =====================
   PRODUCT IMAGE SLIDER
====================== */
.product-main-image {
  width: 100%;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.product-main-image img {
  width: 100%;
  height: auto;
  max-width: 100%;
  object-fit: contain;
  padding: var(--space-md);
  transition: transform 0.3s ease;
}

.product-main-image img:hover {
  transform: scale(1.05);
}

.product-thumbnail-slider {
  position: relative;
}

.thumbnail-grid {
  display: flex;
  flex-direction: row;
  gap: var(--space-sm);
  padding: var(--space-sm);
  border-radius: var(--radius-lg);
  overflow-x: auto;
  overflow-y: hidden;
  scroll-behavior: smooth;
  min-height: 140px;
}

.thumbnail-img {
  /* width: 100%; */
  height: 120px;
  object-fit: contain;
  padding: var(--space-xs);
  border: 2px solid transparent;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
  flex-shrink: 0;
  min-width: 130px;
}

.thumbnail-img:hover {
  opacity: 0.8;
  border-color: var(--accent-gold);
}

.thumbnail-img.active {
  border: 2px solid var(--accent-gold);
}

/* Responsive thumbnail */
@media (max-width: 768px) {
  .thumbnail-img {
    height: 100px;
    min-width: 110px;
  }
}

@media (max-width: 576px) {
  .thumbnail-img {
    height: 80px;
    min-width: 90px;
  }
}

/* Main Image Navigation */
.product-main-image-wrapper {
  position: relative;
  display: inline-block;
  width: 100%;
}

.main-nav-prev,
.main-nav-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.3);
  border: none;
  color: #fff;
  font-size: 2rem;
  padding: 10px 15px;
  cursor: pointer;
  border-radius: 4px;
  transition: all 0.3s ease;
  z-index: 10;
}

.main-nav-prev:hover,
.main-nav-next:hover {
  background: rgba(0, 0, 0, 0.6);
  color: var(--accent-gold);
}

.main-nav-prev {
  left: -10px;
}

.main-nav-next {
  right: -10px;
}

/* Thumbnail Grid Navigation */
.product-thumbnail-slider {
  position: relative;
}

.thumbnail-grid {
  display: flex;
  flex-direction: row;
  gap: var(--space-sm);
  padding: var(--space-sm);
  border-radius: var(--radius-lg);
  overflow-x: auto;
  overflow-y: hidden;
  scroll-behavior: smooth;
  min-height: 140px;
  justify-content: center;
}

.thumbnail-nav-prev,
.thumbnail-nav-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.4);
  border: none;
  color: #fff;
  font-size: 1.5rem;
  padding: 8px 12px;
  cursor: pointer;
  border-radius: 4px;
  transition: all 0.3s ease;
  z-index: 10;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.thumbnail-nav-prev.show,
.thumbnail-nav-next.show {
  opacity: 1;
  pointer-events: auto;
}

.thumbnail-nav-prev:hover,
.thumbnail-nav-next:hover {
  background: rgba(0, 0, 0, 0.7);
  color: var(--accent-gold);
}

.thumbnail-nav-prev {
  left: 5px;
}

.thumbnail-nav-next {
  right: 5px;
}

@media (max-width: 768px) {
  .product-main-image-wrapper {
    margin-bottom: var(--space-md);
  }

  .main-nav-prev,
  .main-nav-next {
    font-size: 1.5rem;
    padding: 8px 12px;
  }

  .thumbnail-img {
    height: 100px;
    min-width: 110px;
  }

  .thumbnail-nav-prev,
  .thumbnail-nav-next {
    font-size: 1.2rem;
    padding: 6px 10px;
  }
}

@media (max-width: 576px) {

  .main-nav-prev,
  .main-nav-next {
    font-size: 1.2rem;
    padding: 6px 10px;
  }

  .thumbnail-img {
    height: 100px;
    min-width: 90px;
  }

  .thumbnail-nav-prev,
  .thumbnail-nav-next {
    font-size: 1rem;
    padding: 4px 8px;
  }
}

.btn-secondary-custom {
  background: var(--text-main);
  color: var(--bg-dark);
  padding: 0.5rem;
  font-weight: 600;
  letter-spacing: 1px;
  font-size: 30px;
}

.divider {
  width: 100%;
  height: 4px;
  background: linear-gradient(to right,
      transparent,
      rgba(255, 255, 255, 0.6),
      transparent);
  margin: 40px 0;
}

.f-30 {
  font-size: 30px;
}

.fw-7 {
  font-weight: 700;
}

.product-desc {
  font-size: 22px;
  text-align: justify;
}

.go-top {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #222;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity .25s ease, transform .25s ease, visibility .25s;
  z-index: 9999;
  border: none;
  font-size: 20px;
  line-height: 1;
}

.go-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.go-top:focus {
  outline: 2px solid #fff;
}

/* WhatsApp floating button (always visible, above go-top) */
i.bi.bi-whatsapp {
    font-size: 30px;
}
.go-whatsapp {
  position: fixed;
  right: 20px;
  bottom: 86px;
  /* sits above the go-top button */
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.25);
  text-decoration: none;
  z-index: 9999;
  font-weight: 700;
  border: none;
  transition: transform .12s ease;
}

.go-whatsapp:active {
  transform: scale(.98);
}

.go-whatsapp:focus {
  outline: 2px solid #fff;
}

@media (max-width: 480px) {
  .go-top {
    right: 12px;
    bottom: 12px;
    width: 44px;
    height: 44px;
  }

  .go-whatsapp {
    right: 12px;
    bottom: 68px;
    width: 44px;
    height: 44px;
  }
}