:root {
  --primary: #0f0f0f;
  --accent: #c89b3c; /* gold from logo */
  --accent-dark: #a67c2a;
  --bg: #ffffff;
  --text: #222;
  --muted: #666;

  --radius: 12px;
  --max-width: 1100px;
}
body {
  font-family: 'Poppins', sans-serif;
}
section{width: 100%;}
section *{margin: 0 auto;}

h1 { font-size: 36px; font-weight: 600; }
h2 { font-size: 28px; font-weight: 500; text-align: center;display: block;width: 100%;/*color:#e6c46a;*/color: #746e6e;font-family: Poppins, sans-serif!important; }
h3 { font-size: 21px; font-weight: 400; color: #e6c46a; }
p  { font-size: 16px; line-height: 1.6; }
li {margin-left: 0px;}
h2.h2 {font-size: 36px; font-weight: 600; }
.none{display:none}
/*h2:before {margin: 0 auto;content: "";position: absolute;height: 2px;width: 100px;background-color: gold;bottom: -70px;left: 0;right: 0;}
h2 span{width: 200px;display: block;border-bottom: 1px gold solid;margin: auto;margin-bottom: 20px;}*/

.logo img {
  height: 55px; /* increased from 40px */
}

.header .container {
  padding: 12px 20px; /* slightly tighter for balance */
}
/* Reset */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  }

html {
scroll-behavior: smooth;
}

body {
font-family: Poppins, sans-serif;
background: var(--bg);
color: var(--text);
line-height: 1.6;
}

/* Layout */
.container {
max-width: var(--max-width);
margin: auto;
padding: 0 20px;
}

/* Header */
.header {
position: sticky;
top: 0;
z-index: 1000;
background: rgba(255,255,255,0.9);
backdrop-filter: blur(10px);
border-bottom: 1px solid #eee;
}

.header .container {
display: flex;
justify-content: space-between;
align-items: center;
padding: 16px 20px;
}

.logo {
font-weight: bold;
font-size: 20px;
}

/* Navigation */
.nav {
display: flex;
align-items: center;
}

.nav a {
margin-left: 20px;
text-decoration: none;
color: var(--text);
transition: 0.2s;
}

.nav a:hover {
color: var(--accent);
}

/* Mobile Menu */
.menu-toggle {
display: none;
font-size: 26px;
cursor: pointer;
}

/* Hero */
.hero {
position: relative;
/*padding: 100px 0;*/
}

.hero-image {
background: url('/assets/images/hero.jpg') center/cover no-repeat;
color: #fff;
}

.hero-gradient {
background: linear-gradient(135deg, #111, #333);
color: #fff;
}

.overlay {
position: absolute;
inset: 0;
background: linear-gradient(to bottom, rgba(0,0,0,0.5), rgba(0,0,0,0.7));
}

.hero-content {
position: relative;
z-index: 2;
}

.hero h1 {
font-size: 48px;
margin-bottom: 20px;
}
.hero h2 {
color: #fff;
/*font-size: 48px;
margin-bottom: 20px;*/
}
.hero p {
font-size: 18px;
opacity: 0.9;
max-width: 600px;
}

/* Grid */
.grid {
display: grid;
gap: 30px;
margin: 60px auto;
}

.grid-2 {
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.grid-3 {
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

/* Cards */
.card {
padding: 24px;
border: 1px solid #eee;
border-radius: var(--radius);
background: #fff;
transition: 0.3s ease;
}

.card:hover {
transform: translateY(-6px) scale(1.01);
box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.card h3 {
margin-bottom: 10px;
}

/* CTA */
.cta {
margin: 80px auto;
padding: 50px;
background: #111;
color: #fff;
border-radius: var(--radius);
text-align: center;
}

.cta h2 {
margin-bottom: 10px;
}

.cta p {
margin-bottom: 20px;
}

/* Buttons */
.button {
display: inline-block;
padding: 12px 22px;
background: var(--accent);
color: #000;
border-radius: var(--radius);
text-decoration: none;
font-weight: 500;
transition: 0.2s;
}

.button:hover {
opacity: 0.9;
}

/* Footer */
.footer {
border-top: 1px solid #eee;
margin-top: 60px;
}

.footer .container {
padding: 20px;
text-align: center;
color: var(--muted);
}

/* Animations */
.fade-in {
opacity: 0;
transform: translateY(20px);
transition: 0.6s ease;
}

.fade-in.visible {
opacity: 1;
transform: translateY(0);
}

/* Responsive */
@media (max-width: 768px) {

.menu-toggle {
display: block;
}

.nav {
position: absolute;
top: 60px;
right: 20px;
background: #fff;
width: 200px;
display: none;
flex-direction: column;
border: 1px solid #eee;
border-radius: var(--radius);
overflow: hidden;
}

.nav a {
margin: 0;
padding: 15px;
border-bottom: 1px solid #eee;
}

.nav a:last-child {
border-bottom: none;
}

.nav.active {
display: flex;
}

.hero h1 {
font-size: 32px;
}

.hero {
padding: 60px 0;
}

.cta {
padding: 30px;
}
}


/*Footer*/

.footer {
  background: var(--accent);
  color: #111;
  margin-top: 80px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
  padding: 50px 20px;
  align-items: start;
}

/* Logo (washed style) */
.footer-brand img {
  height: 60px;
  opacity: 0.2;
  filter: brightness(0) invert(1);
}

/* Links */
.footer-links h4,
.footer-social h4 {
  margin-bottom: 15px;
  font-size: 16px;
}

.footer-links a,
.footer-social a {
  display: block;
  margin-bottom: 10px;
  text-decoration: none;
  color: #111;
  transition: 0.2s;
}

.footer-links a:hover,
.footer-social a:hover {
  opacity: 0.7;
}

/* Bottom bar */
.footer-bottom {
  border-top: 1px solid rgba(0,0,0,0.2);
  text-align: center;
  padding: 15px;
  font-size: 14px;
}

.social-icons {
  display: flex;
  gap: 15px;
  margin-top: 10px;
}

.social {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.08);
  border-radius: 50%;
  transition: 0.3s ease;
}

.social img {
  width: 25px;
  height: 25px;
  margin-top: 6px;
}

/* Hover animation */
.social:hover {
  transform: translateY(-4px) scale(1.1);
  background: #111;
}

.social:hover img {
  filter: invert(1);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 40px;
  margin: 60px auto;
}

.contact-info h3 {
  margin-bottom: 10px;
}

.contact-info p {
  margin-bottom: 15px;
}

.contact-map iframe {
  border-radius: var(--radius);
}

/* Mobile */
@media (max-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  margin: 80px auto;
}

.split.reverse {
  direction: rtl;
}

.split.reverse .split-text {
  direction: ltr;
}

.split-text h2 {
  margin-bottom: 15px;
}

.split-image img {
  width: 100%;
  border-radius: var(--radius);
}

/* Mobile */
@media (max-width: 768px) {
  .split {
    grid-template-columns: 1fr;
  }
}
.gallery {
  margin: 80px auto;
}

.gallery-title {
  margin-bottom: 30px;
  text-align: center;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
}

.gallery-item {
  overflow: hidden;
  border-radius: var(--radius);
}

.gallery-item img {
  width: 100%;
  display: block;
  transition: 0.4s ease;
}

/* Hover effect */
.gallery-item:hover img {
  transform: scale(1.1);
}

/* Mobile */
@media (max-width: 768px) {
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.hero {
  position: relative;
  overflow: hidden;
  height: 100vh;
}

.hero-slider {
  position: absolute;
  width: 100%;
  height: 100%;
}

.hero-slide {
  position: absolute;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.slide.active {
  opacity: 1;
}

/* Overlay */
.overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.4);
}

/* Content */
.hero-content {
  position: relative;
  z-index: 2;
  color: #fff;
}

/* Arrows */
.hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.5);
  border: none;
  color: #fff;
  font-size: 24px;
  padding: 10px;
  cursor: pointer;
  z-index: 3;
}

.hero-arrow.prev { left: 20px; }
.hero-arrow.next { right: 20px; }

/* Dots */
.hero-dots {
  position: absolute;
  bottom: 20px;
  width: 100%;
  text-align: center;
  z-index: 3;
}

.dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  margin: 5px;
  background: #ccc;
  border-radius: 50%;
  cursor: pointer;
}

.dot.active {
  background: #fff;
}

/* HERO SLIDER */

.hero {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

.hero-slider {
  position: relative;
  width: 100%;
  height: 100%;
}

.hero-slide {
  position: absolute;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.slide.active {
  opacity: 1;
  z-index: 1;
  display: block;
}

/* Overlay */
.overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.4);
}

/* Content */
.hero-content {
  position: relative;
  z-index: 2;
  color: #fff;
  text-align: center;
  top: 50%;
  transform: translateY(-50%);
}

/* Arrows */
.hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.5);
  border: none;
  color: #fff;
  font-size: 28px;
  padding: 10px 15px;
  cursor: pointer;
  z-index: 3;
}

.hero-arrow.prev { left: 20px; }
.hero-arrow.next { right: 20px; }

/* Dots */
.hero-dots {
  position: absolute;
  bottom: 100px;
  width: 100%;
  text-align: center;
  z-index: 3;
}

.dot {
  display: inline-block;
  width: 12px;
  height: 12px;
  margin: 5px;
  background: #ccc;
  border-radius: 50%;
  cursor: pointer;
}

.dot.active {
  background: #fff;
}

/* CONTACT PAGE */

.contact {
  padding: 60px 20px;
}

.contact-wrapper {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}

.contact-form {
  flex: 1;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 10px;
  margin-bottom: 15px;
}

.contact-form button {
  padding: 10px 20px;
  cursor: pointer;
}

.contact-map {
  flex: 1;
}

.success {
  color: green;
}
/* NAVBAR */
.navbar {
  background: #000;
  color: #fff;
  padding: 15px 0;
  position: sticky;
  top: 0;
  z-index: 9999;
}
#navbar {
    position: sticky;
    top: 0;
    z-index: 9999;
    transition: all 0.3s ease;
}

#navbar.scrolled {
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    padding: 10px 0;
    background: #fff;
}
.nav-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 20px;
}

.nav-links a {
  color: #fff;
  text-decoration: none;
}

/* FOOTER */
.footer {
  background: #111;
  color: #fff;
  text-align: center;
  padding: 20px 0;
}

/* NAVBAR */
.navbar {
  background: #000;
  color: #fff;
  padding: 15px 0;
  position: relative;
  z-index: 999;
  /* margin-bottom: 40px; */
}
.home{margin-bottom: 0px!important;}
.navbar.sticky {
  position: fixed;
  top: 0;
  width: 100%;
}

.logo img {
  height: 40px;
}

.burger {
  display: none;
  cursor: pointer;
}

.burger span {
  display: block;
  width: 25px;
  height: 3px;
  background: #fff;
  margin: 5px;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 20px;
}

/* MOBILE */
@media (max-width: 768px) {
  .burger {
    display: block;
  }

  .nav-links {
    position: absolute;
    top: 60px;
    right: 0;
    background: #000;
    flex-direction: column;
    width: 200px;
    display: none;
  }

  .nav-links.active {
    display: flex;
  }
}

/* FOOTER */
.footer {
  background: #c9a24b; /* GOLD */
  padding: 30px 0 0 0;
}

.footer-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.footer-logo img {
  height: 50px;
}

.footer-links {
  list-style: none;
  /*display: flex;*/
  gap: 20px;
}

.footer-links a {
  color: #000;
  text-decoration: none;
}

.footer-social a {
  margin-left: 10px;
  color: #000;
}
.footer-social a {
  margin-left: 12px;
  font-size: 18px;
  color: #000;
}
.about-wrapper {
  display: flex;
  gap: 40px;
  align-items: center;
  flex-wrap: wrap;
}

.about-text { flex: 0.65; }
.about-image { flex: 0.35; }

.about-image img {
  width: 100%;
  border-radius: 10px;
}

.product-grid {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.product-card {
  flex: 1;
  text-decoration: none;
  color: #000;
  border: 1px solid #ddd;
  padding: 15px;
  border-radius: 10px;
  transition: 0.3s;
}

.product-card:hover {
  transform: translateY(-5px);
}

.stores-grid {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.store-card {
  /*flex: 1;*/
  text-align: center;
}

.store-card.featured {
  flex: 100%;
  position: sticky;
  top: 80px;
  z-index: 2;
  background: #fff;
}

.product-details {
  padding: 20px 20px;
}

.product-details-wrapper {
  display: flex;
  gap: 40px;
  align-items: center;
  flex-wrap: wrap;
}

.product-image {
  flex: 1;
}

.product-image img {
  width: 100%;
  border-radius: 10px;
}

.product-info {
  flex: 1;
}

.product-info h1 {
  margin-bottom: 15px;
}

.product-info p {
  margin-bottom: 20px;
}

.product-not-found {
  text-align: center;
}

/* DROPDOWN */
.dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  background: #000;
  top: 100%;
  left: 0;
  display: none;
  list-style: none;
  padding: 10px;
}

.dropdown-menu li a {
  color: #fff;
  display: block;
  padding: 5px 10px;
}

.dropdown:hover .dropdown-menu {
  display: block;
}

.products-page {
  padding: 60px 20px;
}

.filters {
  margin-bottom: 20px;
}

.filters a {
  margin-right: 10px;
  text-decoration: none;
  padding: 5px 10px;
  border: 1px solid #000;
}

.filters a.active {
  background: #000;
  color: #fff;
}

.footer-bottom {
  text-align: center;
  padding: 10px;
  background: #b8933d;
  color: #000;
}

.social-icons {
  display: flex;
  gap: 10px;
  margin-top: 10px;
  width: 100%;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

/* STACK MOBILE */
@media (max-width: 768px) {

  .nav-links {
    flex-direction: column;
    position: fixed;
    right: -100%;
    top: 0;
    height: 100vh;
    width: 250px;
    background: #000;
    padding: 20px;
    transition: 0.3s;
  }

  .nav-links.active {
    right: 0;
  }

  .about-wrapper,
  .contact-wrapper,
  .product-details-wrapper {
    flex-direction: column;
  }

}

.navbar.transparent {
  background: rgba(0,0,0,0.3);
  position: fixed;
  width: 100%;
}

.navbar.scrolled {
  background: #000;
}

.navbar.transparent {
  background: rgba(0,0,0,0.3);
  position: fixed;
  width: 100%;
}

.navbar.scrolled {
  background: #000;
}

.burger {
  display: none;
}

@media (max-width: 768px) {
  .burger {
    display: block;
  }
}

#scrollTop {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #eee;
  color: #333;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: none;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}

.product-gallery img {
  width: 100%;
  margin-bottom: 10px;
}

.thumbs {
  display: flex;
  gap: 10px;
}

.thumbs img {
  width: 80px;
  cursor: pointer;
}
.footer-logo{width: 21%;}
/* BUTTON */
.btn {
  display: inline-block;
  padding: 12px 28px;
  background: linear-gradient(135deg, #c9a24b, #e6c46a);
  color: #fff;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 500;
  transition: 0.3s;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}
/*.btn {
  background: linear-gradient(135deg, #ff7a18, #ffb347);
  border-radius: 12px;
  padding: 10px 18px;
}*/

.contact-form {
  background: #fff;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.contact-form input,
.contact-form textarea {
  border: none;
  border-bottom: 2px solid #ddd;
  padding: 12px;
  margin-bottom: 20px;
  width: 100%;
  outline: none;
  transition: 0.3s;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #c9a24b;
}

.contact-form button {
  width: 100%;
}

.dropdown-menu {
  position: absolute;
  background: #000;
  min-width: 200px;
  padding: 10px 0;
  display: none;
}

.dropdown-menu li {
  width: 100%;
}

.dropdown-menu a {
  display: block;
  padding: 10px 15px;
  white-space: nowrap;
}

.dropdown:hover .dropdown-menu {
  display: block;
}

.values-grid {
  display: flex;
  gap: 20px;
  margin-top: 40px;
}

.value-card {
  flex: 1;
  background: #f9f9f9;
  padding: 25px;
  border-radius: 10px;
  text-align: center;
}

.value-card h3 {
  margin-bottom: 10px;
  color: #c9a24b;
}

.stores-wrapper {
  display: flex;
  gap: 20px;
}

.store-featured {
  flex: 0 0 300px;
  position: sticky;
  top: 100px;
}

.stores-scroll {
  display: flex;
  overflow-x: auto;
  gap: 15px;
}

.store-card {
  min-width: 200px;
}

.stores-wrapper {
  display: flex;
  gap: 20px;
}

/* LEFT FIXED */
.store-featured {
  flex: 0 0 280px;
  position: sticky;
  top: 100px;
}

/* RIGHT SCROLL AREA */
.stores-scroll {
  display: flex;
  gap: 15px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding-bottom: 10px;
}

/* VERY IMPORTANT */
.store-card {
  flex: 0 0 220px; /* prevents shrinking */
  background: #fff;
  border-radius: 10px;
  padding: 10px;
}

.stores-scroll::-webkit-scrollbar {
  height: 6px;
}

.stores-scroll::-webkit-scrollbar-thumb {
  background: #ccc;
  border-radius: 10px;
}





/*Shahir check*/
.stores-wrapper {
  display: flex;
  gap: 20px;
}

.featured-store {
  min-width: 260px;
}

.stores-scroll {
  display: flex;
  gap: 15px;
  overflow-x: auto;
  padding-bottom: 10px;
}

.store-card {
  min-width: 220px;
  flex-shrink: 0;
  background: #eee;
  padding: 20px;
  border-radius: 12px;
}

.stores-scroll {
  max-width: 100%;
}

.stores-wrapper {
  display: flex;
  gap: 20px;
}

.featured-store {
  min-width: 260px;
}

.stores-scroll {
  display: flex;
  gap: 15px;
  overflow-x: auto;
  padding-bottom: 10px;
}

.store-card {
  min-width: 220px;
  flex-shrink: 0;
  background: #eee;
  padding: 20px;
  border-radius: 12px;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  gap: 20px;
}

.product-card {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  text-decoration: none;
  color: #000;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  transition: 0.3s;
}

.product-card:hover {
  transform: translateY(-6px);
}

.product-img {
  height: 230px;
  overflow: hidden;
}

.product-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-content {
  padding: 15px;
}

.product-content h3 {
  font-size: 16px;
  margin-bottom: 6px;
}

.brief {
  font-size: 13px;
  color: #666;
  margin-bottom: 10px;
}

.price {
  color: #ff7a18;
  font-weight: bold;
}
.product-card {
  position: relative;
}

.badge {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 5px 10px;
  font-size: 11px;
  border-radius: 20px;
  color: #fff;
  font-weight: bold;
}

.badge.new {
  background: #3498db;
}

.badge.best {
  background: #e67e22;
}

.badge.sale {
  background: #e74c3c;
}

.badge.featured{
  background: darkolivegreen;
}

.product-main {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.product-media img {
  width: 100%;
  border-radius: 12px;
}

.product-gallery .thumbs {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.product-gallery img {
  width: 80px;
  cursor: pointer;
  border-radius: 8px;
}

/* Slider */
.slider {
  /*display: none;
  position: fixed;*/
  inset: 0;
  background: rgba(0,0,0,0.9);
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.hero-slide {
  display: none;
  max-width: 100%;
}

.slide img,
.slide video {
  width: 100%;
  border-radius: 10px;
}

.prev, .next {
  position: absolute;
  top: 50%;
  font-size: 30px;
  background: none;
  color: #fff;
  border: none;
  cursor: pointer;
}

.prev { left: 20px; }
.next { right: 20px; }

.close {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 40px;
  cursor: pointer;
  color: #fff;
}

.related-products {
  margin-top: 60px;
}

.related-products h2 {
  margin-bottom: 20px;
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}

.related-card {
  display: block;
  text-decoration: none;
  color: inherit;
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
  transition: 0.3s;
}

.related-card:hover {
  transform: translateY(-5px);
}

.related-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.related-card h3 {
  padding: 10px;
  font-size: 16px;
}

.related-card .price {
  padding: 0 10px 10px;
  font-weight: bold;
}


/* PRODUCT GRID */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 24px;
  margin-top: 30px;
}

/* CARD */
.product-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  transition: 0.3s ease;
  border: 1px solid #eee;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

/* IMAGE */
.product-card img {
  width: 100%;
  height: 230px;
  object-fit: cover;
}

/* CONTENT */
.product-card h3 {
  font-size: 16px;
  font-weight: 600;
  color: #222;
}
.product-content h3{padding: 0px;color: #e6c46a;}
p.product-description{color:#746e6e}
.product-category{font-size: 14px;}
/* LINK RESET */
.product-card a {
  text-decoration: none;
  color: inherit;
  display: block;
}

.filters a {
  color: #000;
}

/* =========================
   MEGA MENU BASE
========================= */
.nav-item.mega-parent {
  position: relative;
}

/* hidden by default */
.mega-menu {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100vw; /* 🔥 full screen width */

  background: #fff;
  padding: 40px 60px;

  display: none;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;

  box-shadow: 0 15px 40px rgba(0,0,0,0.1);
  z-index: 9999;
}

/* show on hover */
.mega-parent:hover .mega-menu {
  display: grid;
}

.navbar {
  position: relative;
}

.mega-menu {
  left: -530%;
  transform: translateX(-50%);
}

/* =========================
   COLUMNS
========================= */
.mega-col {
  display: flex;
  flex-direction: column;
  float: left;
  width: 18vw;
}

/* category image */
.mega-img img {
  width: 100%;
  height: 100px;
  object-fit: cover;
  border-radius: 6px;
  margin-bottom: 10px;
  padding: 0 35px 0 0;
}

/* category title */
.mega-col h4 {
  margin-bottom: 10px;
  font-size: 16px;
}

.mega-col h4 a {
  text-decoration: none;
  color: #000;
  font-weight: bold;
}

/* product list */
.mega-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mega-col ul li {
  margin-bottom: 6px;
}

.mega-col ul li a {
  text-decoration: none;
  color: #555;
  font-size: 14px;
}

.mega-col ul li a:hover {
  color: #000;
}

.mega-menu {
  width: 100vw;
}

.mega-menu-inner {
  max-width: 1200px;
  margin: auto;
}

/* FEATURED PRODUCT */
.mega-featured {
  margin-bottom: 15px;
}

.mega-featured a {
  display: block;
  text-decoration: none;
}

.mega-featured img {
  width: 100%;
  height: 110px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 6px;
}

.mega-featured span {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: #000;
}

/* subtle hover */
.mega-featured a:hover span {
  color: #c59d5f; /* your brand gold */
}

.slider {
    overflow: hidden;
    padding: 20px 0;
}

.slider-wrapper {
    overflow: hidden;
}

.slider-track {
    display: flex;
    width: max-content;
    animation: scroll linear infinite;
}

.slider-item {
    flex: 0 0 auto;
    padding: 0 20px;
}

/* LOGO */
.logo-item img {
    height: 50px;
    object-fit: contain;
}

/* PRODUCT */
.product-item {
    width: 180px;
}

.product-item img {
    width: 100%;
}

/* TESTIMONIAL */
.testimonial-item {
    width: 250px;
    font-size: 14px;
}

/* grayscale */
.slider.grayscale img {
    filter: grayscale(100%);
    opacity: 0.7;
}

.slider.grayscale img:hover {
    filter: none;
    opacity: 1;
}

/* pause */
.pause-on-hover:hover .slider-track {
    animation-play-state: paused;
}

@keyframes scroll {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}

/***********************************************************/
.slider-section {
    width: 100%;
    padding: 20px 0;
    position: relative;
    overflow: hidden;
}

.slider {
    display: block;
    width: 100%;
}

.slider-wrapper {
    overflow: hidden;
    width: 100%;
}

.slider-track {
    display: flex;
    gap: 20px;
    width: max-content;
}

.slider-wrapper {
    overflow: hidden;
    width: 100%;
}

.slider-track {
    display: flex;
    width: max-content;
    animation: scroll linear infinite;
}

.slider-item {
    flex: 0 0 auto;
    padding: 0 25px;
}

@keyframes scroll {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}

.hero-slide {
    display: none;
}

.hero-slide.active {
    display: block;
}

.hero-dots {
    text-align: center;
}

.dot {
    display: inline-block;
    width: 10px;
    height: 10px;
    background: #ccc;
    margin: 5px;
    border-radius: 50%;
    cursor: pointer;
}

.dot.active {
    background: #000;
} 

.slider-section {
    padding: 30px 0;
    overflow: hidden;
}

.slider-wrapper {
    overflow: hidden;
    width: 100%;
}

.slider-track {
    display: flex;
    gap: 30px;
    width: max-content;
    animation: scroll linear infinite;
}

.slider-item {
    flex: 0 0 auto;
    text-align: center;
    background: #f3f3f3;
    padding-top: 20px;
    border-radius: 15px;
}

.slider-item img {
    height: 100px;
    object-fit: contain;
}

.slider-name {
    font-size: 15px;
    margin-top: 5px;
    font-weight: 600;
}

.pause-on-hover:hover .slider-track {
    animation-play-state: paused;
}

@keyframes scroll {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}

.hero-slide {
    display: none;
}

.hero-slide.active {
    display: block;
}

.hero {
    position: relative;
}

.hero-slider {
    position: relative;
    overflow: hidden;
}

.hero-track {
    position: relative;
}

/* 🔥 CRITICAL: hide all slides */
.hero-slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    display: none;

    background-size: cover;
    background-position: center;
}

/* 🔥 show only active */
.hero-slide.active {
    display: block;
    opacity: 1;
    z-index: 1;
}

.hero-slider {
    position: relative;
    overflow: hidden;
    height: 100%;
}

.hero-slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;

    background-size: cover;
    background-position: center;

    opacity: 0;
    transition: opacity 0.6s ease-in-out;
}

.hero {
    position: relative;
    min-height: 500px;
    height: 80vh;

}

/* ===== HERO FORCE FIX (TEST BASELINE) ===== */

.hero {
    position: relative;
    height: 100vh;
    min-height: 500px; /* fallback for small screens */
    width: 100%;
}

.hero-slider {
    position: relative;
    height: 100%;
    overflow: hidden;
}

.hero-track {
    position: relative;
    height: 100%;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;

    background-size: cover;
    background-position: center;

    opacity: 0;
    transition: opacity 0.6s ease-in-out;
}

.hero-slide.active {
    opacity: 1;
    z-index: 2;
}

.hero-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 5;

    background: rgba(0,0,0,0.4);
    color: #fff;
    border: none;

    width: 45px;
    height: 45px;
    border-radius: 50%;

    cursor: pointer;
    font-size: 20px;
}

/* left */
.hero-arrow.prev {
    left: 20px;
}

/* right */
.hero-arrow.next {
    right: 20px;
}

.footer-middle {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    align-items: flex-start;
}

.footer-links,
.footer-categories {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links,
.footer-categories {
    min-width: 160px;
}

.nav-links li.active > a {
    color: #e6c46a;
    font-weight: 600;
    position: relative;
}

.nav-links li.active > a::after {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    /*background: #ff6a00;*/
}


.section-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.section-item input {
    transform: scale(1.2);
    cursor: pointer;
}

.product-gallery {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.gallery-main {
    width: 100%;
    height: 420px;
    background: #f5f5f5;
    border-radius: 10px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-main img,
.gallery-main video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-thumbs {
    display: flex;
    gap: 8px;
    overflow-x: auto;
}

.thumb {
    width: 80px;
    height: 80px;
    flex: 0 0 auto;
    cursor: pointer;
    border-radius: 6px;
    overflow: hidden;
    position: relative;
    border: 2px solid transparent;
}

.thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.thumb:hover {
    border-color: #000;
}

.video-badge {
    position: absolute;
    top: 18px;
    left: 20px;
    background: rgb(255 0 0 / 60%);
    color: white;
    font-size: 25px;
    padding: 2px 8px;
    border-radius: 3px;
}
.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.form-row {
  display: flex;
  gap: 15px;
}

input, textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 8px;
  transition: 0.3s;
}

input:focus, textarea:focus {
  border-color: #000;
}

textarea {
  min-height: 120px;
}

.btn-primary {
  background: #000;
  color: #fff;
  padding: 12px;
  border-radius: 8px;
  cursor: pointer;
}

.btn-primary:hover {
  background: #333;
}
.success {
  background: #e6ffed;
  color: #1a7f37;
  padding: 10px;
  border-radius: 6px;
}

.products-topbar{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:20px;
    margin:25px 0;
    flex-wrap:wrap;
}

.products-count{
    font-size:14px;
    color:#777;
    font-weight:500;
}

.sort-form{
    position:relative;
}

.sort-form select{
    appearance:none;
    -webkit-appearance:none;
    -moz-appearance:none;

    background:#fff;
    border:1px solid #e5e5e5;
    border-radius:14px;

    padding:12px 45px 12px 16px;

    font-size:14px;
    font-weight:500;
    color:#222;

    cursor:pointer;

    transition:0.25s ease;
    min-width:180px;

    box-shadow:0 4px 14px rgba(0,0,0,0.04);
}

.sort-form select:hover{
    border-color:#ccc;
}

.sort-form select:focus{
    outline:none;
    border-color:#000;
    box-shadow:0 0 0 4px rgba(0,0,0,0.08);
}

/*@media (max-width: 600px) {*/
@media (400px <= width <= 800px) {
  section.products,section.about-preview{width: 100vw;}
  .container{padding:0px}
  .values-grid {display:block}
  .footer-logo{width:100vw}
  .footer-middle{gap:0px}
  .footer-social{width:100%}
  .footer-social p {width:72vw;}
  .hero{padding-top: 0px;position: relative;height: 78vh;min-height: 500px;width: 100vw;}
  .footer{width: 100vw;padding: 10px 0 0 0;}

  .product-grid{display: flex;gap: 30px;width: max-content;animation: scroll linear infinite!important}
  .product-card{flex: 0 0 auto;text-align: center;background: #f3f3f3;padding-top: 20px;border-radius: 15px;width: 90vw;}
}
