/* ===============================
   GLOBAL STYLES
================================= */
body {
  background: #ffffff;
  font-family: 'Segoe UI', sans-serif;
  color: #333;
  margin: 0;
  padding: 0;
}

a { text-decoration: none; transition: 0.3s; }
a:hover { text-decoration: none; }

h2, h3, h4, h5, h6 { color: #111; font-weight: 700; margin: 0; }

p { color: #555; line-height: 1.6; margin-bottom: 0.8rem; }

img { max-width: 100%; display: block; object-fit: cover; }

/* ===============================
   BUTTONS
================================= */
.btn-gold {
  background: linear-gradient(135deg, #f9c74f, #d4af37);
  color: #fff;
  padding: 8px 22px;
  border-radius: 25px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: 0.3s ease;
}

.btn-gold:hover {
  background: linear-gradient(135deg, #d4af37, #f4a261);
  color: #fff;
}

.btn-outline-gold {
  border: 1px solid #d4af37;
  color: #b8962e;
  background: transparent;
  border-radius: 30px;
  padding: 6px 14px;
  font-size: 13px;
  font-weight: 600;
  transition: 0.3s;
}

.btn-outline-gold:hover {
  background: #d4af37;
  color: #fff;
}

/* ===============================
   HEADER / NAVBAR
================================= */
header {
  width: 100%;
  position: relative;
  z-index: 999;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 25px;
  background: #fff;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  position: relative;
}

.navbar-brand {
  font-weight: bold;
  color: #f9c74f !important;
  font-size: 1.5rem;
}

.navbar-nav {
  display: flex;
  gap: 20px;
  align-items: center;
}

.navbar-nav a {
  color: #333;
  font-weight: 500;
  transition: 0.3s;
}

.navbar-nav a:hover {
  color: #d4af37;
}

/* ===============================
   SLIDER SECTION
================================= */
.slider-section {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.slider-container {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 7; /* Perfect landscape ratio */
  max-height: 650px;
  min-height: 300px;
  overflow: hidden;
}

.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.8s ease-in-out;
  background-size: cover;       /* Background cover */
  background-position: center;  /* Center image */
  background-repeat: no-repeat;
}

.slide.active {
  opacity: 1;
  z-index: 1;
}

.slide-content {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.45);
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 20px;
}

.slide-content h2 {
  font-size: clamp(1.6rem, 3vw, 3rem);
  font-weight: 700;
}

.slide-content p {
  font-size: clamp(0.9rem, 1.2vw, 1.2rem);
  max-width: 700px;
  margin: 12px 0;
}

/* Navigation arrows */
.prev, .next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 32px;
  color: #fff;
  cursor: pointer;
  padding: 10px;
  z-index: 2;
  transition: 0.3s;
}

.prev:hover, .next:hover {
  color: #ffd700;
}

.prev { left: 15px; }
.next { right: 15px; }

/* Dots */
.dots-container {
  position: absolute;
  bottom: 15px;
  width: 100%;
  text-align: center;
  z-index: 2;
}

.dot {
  height: 10px;
  width: 10px;
  background: #ddd;
  border-radius: 50%;
  display: inline-block;
  margin: 0 4px;
  cursor: pointer;
  transition: 0.3s;
}

.dot.active {
  background: #ffd700;
}

/* ===============================
   MOBILE RESPONSIVE SLIDER
================================= */
@media(max-width:768px){
  .slider-container { aspect-ratio: 16/10; min-height: 220px; }
  .slide-content h2 { font-size: 1.5rem; }
  .slide-content p { font-size: 0.9rem; }
  .prev, .next { font-size: 24px; }
}

@media(max-width:480px){
  .slider-container { aspect-ratio: 16/11; min-height: 200px; }
  .slide-content { padding: 10px; }
  .slide-content h2 { font-size: 1.3rem; }
  .slide-content p { font-size: 0.85rem; }
}

/* ===============================
   FILTER BAR
================================= */
.filter-section {
  padding: 25px 0;
  background: linear-gradient(135deg, #fff6e5, #fdf1d6);
}

.filter-bar {
  display: flex;
  gap: 15px;
  background: #ffffff;
  padding: 18px;
  border-radius: 18px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.15);
  align-items: center;
  flex-wrap: wrap;
}

.filter-bar input,
.filter-bar select {
  flex: 1;
  min-width: 180px;
  padding: 10px 14px;
  border-radius: 12px;
  border: 1px solid #e0cda9;
  font-size: 0.95rem;
}

.filter-bar input:focus,
.filter-bar select:focus {
  outline: none;
  border-color: #c8a951;
  box-shadow: 0 0 6px rgba(200,169,81,0.4);
}

.price-box { flex: 2; min-width: 230px; }
.price-box label { font-size: 0.85rem; color: #7a4a2e; font-weight: 600; }
.price-box input[type=range] { width: 100%; accent-color: #c8a951; }

/* ===============================
   PRODUCT CARDS
================================= */
.product-card {
  background: linear-gradient(180deg, #fffdf8, #fff7e6);
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  transition: all 0.35s ease;
  box-shadow: 0 12px 28px rgba(0,0,0,0.08);
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 45px rgba(212,175,55,0.25);
}

.product-card img { width: 100%; height: 200px; object-fit: cover; transition: transform 0.45s ease; }
.product-card:hover img { transform: scale(1.08); }

.card-body { text-align: center; padding: 12px; }
.card-body h6 { font-weight: 600; font-size: 15px; color: #222; }
.card-body small { font-size: 13px; color: #777; }
.card-body p { font-size: 13px; color: #888; margin-bottom: 6px; }
.card-body .fw-bold { color: #b8962e; font-size: 16px; }

/* Discount Badge */
.badge { font-weight: 600; font-size: 12px; }

/* ===============================
   FEATURED PRODUCTS
================================= */
.featured-products { background: #f9f9f9; padding: 50px 0; }
.featured-card {
  min-width: 220px;
  background: #fff;
  border-radius: 16px;
  padding: 12px;
  text-align: center;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  transition: transform 0.3s ease;
}
.featured-card:hover { transform: translateY(-6px); }
.featured-img { height: 200px; overflow: hidden; border-radius: 12px; }
.featured-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.featured-card:hover img { transform: scale(1.12); }
.featured-name { margin-top: 10px; font-size: 14px; font-weight: 600; color: #333; }

.featured-slider { overflow: hidden; position: relative; }
.featured-track { display: flex; gap: 20px; animation: slideFeatured 30s linear infinite; }
.featured-slider:hover .featured-track { animation-play-state: paused; }
@keyframes slideFeatured { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* ===============================
   ABOUT MINI SECTION
================================= */
.about-mini { background: #faf9f6; padding: 50px 0; }
.about-img img { transition: transform 0.6s ease; }
.about-img:hover img { transform: scale(1.05); }

.about-feature {
  display: flex;
  gap: 12px;
  align-items: center;
  background: #fff;
  padding: 12px 14px;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.06);
  transition: 0.3s;
}
.about-feature:hover { transform: translateY(-4px); }
.about-feature .icon { font-size: 26px; color: #d4af37; }
.about-feature h6 { margin: 0; font-weight: 600; font-size: 14px; }
.about-feature small { color: #777; }

/* ===============================
   TESTIMONIALS
================================= */
.testimonials { background: #ffffff; padding: 50px 0; }
.testimonial-card {
  background: #faf9f6;
  padding: 25px 22px;
  border-radius: 18px;
  text-align: center;
  box-shadow: 0 8px 22px rgba(0,0,0,0.08);
  transition: 0.35s ease;
}
.testimonial-card:hover { transform: translateY(-6px); box-shadow: 0 14px 32px rgba(0,0,0,0.15); }
.client-icon {
  width: 60px; height: 60px; margin: 0 auto 15px;
  background: #d4af37; color: #fff; font-size: 28px;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
}
.testimonial-text { font-size: 14px; color: #555; margin-bottom: 15px; line-height: 1.7; }
.client-name { font-weight: 600; color: #000; }

/* ===============================
   CONTACT SECTION
================================= */
.contact-section { background: #fdfcf7; padding: 50px 0; }
.contact-form {
  background: #fff;
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.1);
  transition: 0.3s ease;
}
.contact-form:hover { transform: translateY(-5px); box-shadow: 0 16px 40px rgba(0,0,0,0.15); }
.contact-form .form-label { color: #333; }
.contact-form input, .contact-form textarea { border-radius: 12px; border: 1px solid #e0cda9; padding: 10px; }
.contact-form button { margin-top: 15px; }

/* ===============================
   FOOTER
================================= */
.footer { background: #111; color: #fff; padding: 40px 0; }
.footer .text-gold { color: #d4af37 !important; }
.footer a { color: #fff; transition: 0.3s; }
.footer a:hover { color: #f5deb3 !important; }
.footer hr { border-top: 1px solid rgba(255, 41, 41, 0.2); }

/* ===============================
   FLOATING BUTTONS
================================= */
#backToTop, .btn-whatsapp {
  width: 50px; height: 50px; display: flex;
  align-items: center; justify-content: center;
  border-radius: 50%; cursor: pointer; z-index: 999;
}
#backToTop { background: #000; color: #fff; position: fixed; bottom: 80px; right: 20px; display: none; }
#backToTop:hover { background: #d4af37; color: #fff; }
.btn-whatsapp { background: #25D366; color: #fff; position: fixed; bottom: 20px; right: 20px; }

/* ===============================
   RESPONSIVE
================================= */
@media(max-width:768px){
  .navbar-nav{ text-align:center; }
  .slider-container{ height: 250px; }
  .slide-content h2{ font-size:1.4rem; }
  .slide-content p{ font-size:0.9rem; }
  .filter-bar{ flex-direction: column; }
}

@media(max-width:576px){
  .slider-container{ height: 250px; }
  .product-img{ height: 200px; }
  .testimonial-card{ padding: 20px; }
  .featured-card{ min-width: 180px; }
}
