:root {
  --sap-gold: #C8922A;
  --sap-deep: #8B1A1A;
  --sap-dark: #1A0A00;
 /* --sap-cream: #FDF6EC;*/
  --sap-cream: #fff;
  --sap-warm: #F5E6C8;
  --sap-accent: #E84F1D;
  --sap-green: #2D6A2D;
  --nav-h: 100px;
  --nav-h-sticky: 64px;
  --logo-size: 130px;
  --logo-size-sticky: 80px;
}
.bg-color{background: #FDF6EC;}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', sans-serif;
  background: var(--sap-cream);
  color: var(--sap-dark);
  overflow-x: hidden;
  font-size: 18px;
  font-weight: 400;
  line-height: 30px;
}
/* ---- Preloader ---- */

 #page-loader {
  position: fixed;
  inset: 0;
  background: #fff;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s ease, visibility 0.6s;
}

#page-loader.fade-out {
  opacity: 0;
  visibility: hidden;
}

.loader-content {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.loader-logo {
  width: 80px;
  height: 80px;
  position: absolute;
  z-index: 2;
  object-fit: contain;
  animation: pulse 1.5s infinite ease-in-out;
}
/*
.loader-spinner {
  width: 150px;
  height: 150px;
  border: 3px solid transparent;
  border-top-color:#ed1b26;
  border-radius: 50%;
  position: relative;
  animation: spin 1.2s linear infinite;
}

.loader-spinner::after {
  content: '';
  position: absolute;
  inset:3px;
  border: 3px solid transparent;
  border-top-color: #2e3192;
  border-radius: 50%;
  animation: spin 2s linear infinite reverse;
}*/
/*
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}*/

@keyframes pulse {

  0%,
  100% {
    transform: scale(1);
    opacity: 0.8;
  }

  50% {
    transform: scale(1.15);
    opacity: 1;
  }
}

/* ─── NAVBAR ─── */
/* nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-h);
  background: #ffffff;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  grid-template-rows: 100%;
  align-items: center;
  padding: 0 40px;
  box-shadow: 0 6px 32px rgba(0, 0, 0, 0.13);
  transition: height 0.4s cubic-bezier(.4, 0, .2, 1),
    box-shadow 0.4s ease;
  overflow: visible;
} */

.mainHeader .container{
  max-width: 100%;
  padding: 0 3%;
  background: #ffffff;
  /* height: var(--nav-h); */
}

nav{
  display: flex;
  /* justify-content: space-between; */
}

/* ── LEFT: Nav links ── */
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
  justify-self: start;
  flex: 1;
}

.nav-links a {
  text-decoration: none;
  color: var(--sap-dark);
  font-size: 16px;
  font-weight: 400;
  padding: 8px 14px;
  border-radius: 6px;
  transition: all .2s;
  letter-spacing: 0.3px;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--sap-deep);
  background: rgba(200, 146, 42, 0.1);
}

/* ── CENTER: Logo circle ── */
.nav-logo {	
	text-decoration: none;
	display: flex;
	position: relative;
	z-index: 10;
	flex: 1;
	/* text-align: center; */
	justify-content: center;
}

.nav-logo-circle {
  width: var(--logo-size);
  height: var(--logo-size);
  padding: 7px;
  border-radius: 50%;
  background: #fff;
  box-shadow:
    0 10px 48px rgba(0, 0, 0, 0.22),
    0 4px 16px rgba(0, 0, 0, 0.14);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  flex-shrink: 0;
  /* Overlap: push logo down so it hangs below the header */
  transform: translateY(calc(var(--nav-h) / 10 - 8px + max(0px, var(--logo-size) - var(--nav-h)) / 2));
  transition:
    width 0.4s cubic-bezier(.4, 0, .2, 1),
    height 0.4s cubic-bezier(.4, 0, .2, 1),
    transform 0.4s cubic-bezier(.4, 0, .2, 1),
    box-shadow 0.4s ease;
}

.nav-logo-circle img {
  width: 98%;
  height: 98%;
  object-fit: contain;
  transition: all 0.4s ease;margin-top: -20px;
}

.nav-logo-footer {
  justify-self: center;
  text-decoration: none;
  display: flex;
  position: relative;
  z-index: 10;
  margin-bottom: 25px;justify-content: center;
}

.nav-logo-circle-footer {
  padding: 10px;
  border-radius: 15px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  flex-shrink: 0;
  flex-direction: column;
  
  margin: 0px auto;
}

.nav-logo-circle-footer img {
 max-width: 240px;
  object-fit: contain;
  transition: all 0.4s ease;
}
.footer-brand-logo .nav-logo-circle-footer img {
 max-width: 120px;}

 .footer-brand-logo .nav-logo-footer {
    flex-direction: column;
    color: rgba(255, 255, 255, 0.6);
    gap: 10px;
    line-height: 24px;font-size: 16px;
}

/* ── RIGHT: Inquiry button + hamburger ── */
.nav-right {
	display: flex;
	align-items: center;
	gap: 12px;
	justify-self: end;
	flex: 1;
	justify-content: end;
}

.btn-inquiry {
  background: var(--sap-deep);
  color: #fff;
  font-weight: 400;
  font-size: 16px;
  padding: 9px 22px;
  border-radius: 8px;
  letter-spacing: 0.5px;

  transition: all .25s;
  text-decoration: none;cursor: pointer;
}

.btn-inquiry:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(200, 146, 42, 0.5);
  background: linear-gradient(135deg, #e8a933, var(--sap-gold)) !important;
  color: var(--sap-dark) !important;
}

.contactus-btn{padding: 14px 22px;border: 0px;}


/* ── STICKY STATE ── */
nav.scrolled {
  /* height: var(--nav-h-sticky);
  box-shadow: 0 2px 20px rgba(200, 146, 42, 0.18); */

  position: fixed !important;
  top: 0 !important;
  left: 0;
  right: 0;
  box-shadow: 0 5px 5px rgba(0, 0, 0, .2);
  background-color: #fff !important;
  z-index: 9999;
  animation: 1s .1s fadeInDown both;
  padding: 0px 3%;
}

nav.scrolled .nav-logo-circle {
	width: 80px;
	height: 80px;
	transform: translateY(0);
	box-shadow: 0 3px 14px rgba(0, 0, 0, 0.18), 0 1px 6px rgba(0, 0, 0, 0.1);
	transform: translateY(calc(var(--nav-h) / 10 - 8px + max(0px, var(--logo-size) - var(--nav-h)) / 2));
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
}

.hamburger span {
  width: 24px;
  height: 2px;
  background: var(--sap-dark);
  border-radius: 2px;
  transition: .3s;
}

/* ─── HERO SLIDER ─── */
.hero {
  margin-top: 0;
  position: relative;
  height: 100vh;
  min-height: 600px;
}

.hero-swiper,
.hero-swiper .swiper-wrapper,
.hero-swiper .swiper-slide {
  height: 100%;
}

.hero-slide {
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-slide::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(105deg, rgba(26, 10, 0, 0.82) 40%, rgba(26, 10, 0, 0.2) 100%);
}

.slide-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 8s ease;
}

.swiper-slide-active .slide-bg {
  transform: scale(1.06);
}

.slide1-bg {
  background-image: url('../images/slider-img-1.webp');
}

.slide2-bg {
  background-image: url('../images/slider-img-2.webp');
}

.slide3-bg {
  background-image: url('../images/slider-img-3.webp');
}

/* Geometric decoration for slides */
.slide-geo {
  position: absolute;
  right: 8%;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
  opacity: 0.18;
}

.slide-geo-2 {
  right: 5%;
  opacity: 0.15;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: calc(var(--nav-h) + 60px) 80px 0;
  max-width: 900px;
  align-self: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(200, 146, 42, 0.2);
  border: 1px solid rgba(200, 146, 42, 0.5);
  color: var(--sap-gold);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 30px;
  margin-bottom: 24px;
  backdrop-filter: blur(4px);
}

.hero-badge::before {
  content: '★';
  font-size: 10px;
}

.hero-title {

  font-size: clamp(2.8rem, 5.5vw, 4rem);
  font-weight: 600;
  color: #fff;
  line-height: 1.05;
  margin-bottom: 20px;
}

.hero-title span {
  color: var(--sap-gold);
}

.hero-desc {

  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 36px;
  max-width: 520px;

}

.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--sap-gold), #e8a933);
  color: var(--sap-dark);

  padding: 14px 32px;
  border-radius: 8px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 6px 24px rgba(200, 146, 42, 0.45);
  transition: all .25s;
  letter-spacing: 0.3px;
  font-weight: 500;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(200, 146, 42, 0.55);
}

.btn-outline {
  background: transparent;
  color: #fff;
  padding: 14px 32px;
  border-radius: 8px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 2px solid rgba(255, 255, 255, 0.45);
  transition: all .25s;
  font-weight: 500;
}

.btn-outline:hover {
  border-color: var(--sap-gold);
  color: var(--sap-gold);
  background: rgba(200, 146, 42, 0.08);
}

/* Swiper custom pagination/nav */
.hero-swiper .swiper-pagination {
  bottom: 32px;
}

.hero-swiper .swiper-pagination-bullet {
  width: 30px;
  height: 4px;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.4);
  opacity: 1;
}

.hero-swiper .swiper-pagination-bullet-active {
  background: var(--sap-gold);
  width: 50px;
}

.hero-swiper .swiper-button-next,
.hero-swiper .swiper-button-prev {
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  color: #fff;
  backdrop-filter: blur(6px);
  transition: all .2s;
}

.hero-swiper .swiper-button-next:hover,
.hero-swiper .swiper-button-prev:hover {
  background: var(--sap-gold);
  border-color: var(--sap-gold);
  color: var(--sap-dark);
}

.hero-swiper .swiper-button-next::after,
.hero-swiper .swiper-button-prev::after {
  font-size: 16px;
  font-weight: 900;
}

/* ─── SECTION COMMON ─── */
section {
  padding: 60px 0px;
}

/* Hero has no padding — slider must be full bleed */
section.hero {
  padding: 0;
  width: 100%;
  max-width: 100%;
}

/* ─── INNER PAGE HEADER ─── */
.page-header {
  background: linear-gradient(135deg, var(--sap-dark), var(--sap-deep));
  padding: 100px 40px 80px;
  position: relative;
  text-align: center;
  color: white;
}

.page-header .page-title {
  font-family: 'Playfair Display', serif;
  font-size:  4rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 10px;
}

.page-header .page-title span {
  color: var(--sap-gold);
}

.page-breadcrumb {
  color: rgba(255, 255, 255, 0.7);
  font-size: 16px;padding-top: 15px;
}

.page-breadcrumb a {
  color: var(--sap-gold);
  text-decoration: none;
}

.page-breadcrumb a:hover {
  text-decoration: underline;
}

.section-label {
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--sap-gold);
  margin-bottom: 12px;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800;
  color: var(--sap-dark);
  line-height: 1.15;
  margin-bottom: 18px;
}

.section-title span {
  color: var(--sap-deep);
}

.section-sub {
  color: #6b5a44;
}

.container {
  margin: 0 auto;
  position: relative;
  max-width: 1600px;
}

/* ─── ABOUT ─── */
#about {
  background: #fff;
  position: relative;
  overflow: hidden;
}

#about::before {
  content: '1968';
  position: absolute;
  right: -20px;
  top: -40px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 260px;
  color: rgba(200, 146, 42, 0.05);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}

.about-visual {
  position: relative;
}

.about-main-img {
  width: 100%;
  /* aspect-ratio: 4/5; */
  border-radius: 20px;
  background: linear-gradient(145deg, #c8922a, #8b1a1a, #1a0a00);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}

.about-main-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 25% 35%, rgba(255, 255, 255, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 75%, rgba(232, 79, 29, 0.3) 0%, transparent 50%);
}

.about-store-illustration {
  /* font-family: 'Playfair Display', serif;
  font-size: 80px;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.12); */
  z-index: 1;
  /* text-align: center; */
  line-height: 1;
  padding-bottom: 50px;
}

.about-store-label {
  position: absolute;
  bottom: 14px;
  left: 0;
  right: 0;
  text-align: center;
  z-index: 2;
  color: rgba(255, 255, 255, 0.9);
  font-size: 16px;
  letter-spacing: 0px;
 /* text-transform: uppercase;*/
  font-weight: 600;padding: 0px 100px 0px 20px;
}

.about-badge-float {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 120px;
  height: 120px;
  background: linear-gradient(135deg, var(--sap-gold), #e8a933);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 32px rgba(200, 146, 42, 0.4);
  border: 4px solid #fff;
  z-index: 2;
}

.about-badge-float .num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 38px;
  color: var(--sap-dark);
  line-height: 1;
}

.about-badge-float .txt {
  font-size: 10px;
  font-weight: 700;
  color: var(--sap-dark);
  text-align: center;
  line-height: 1.2;
  letter-spacing: 0.5px;
}

.about-content .section-sub {
  max-width: 100%;
}

.about-highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 32px;
}

.about-hi {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 18px;
  background: var(--sap-cream);
  border-radius: 12px;
  border-left: 3px solid var(--sap-gold);
}

.about-hi-icon {
  width: 36px;
  height: 36px;
  background: rgba(200, 146, 42, 0.15);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.about-hi strong {
  display: block;
  margin-bottom: 3px;
  color: var(--sap-dark);
}

.about-hi span {}

/* ─── PRODUCTS ─── */
#products {
  background: var(--sap-dark);
  position: relative;
  overflow: hidden;
}

#products::before {
  content: '';
  position: absolute;
  top: -100px;
  left: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(200, 146, 42, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

#products .section-title {
  color: #fff;
}

#products .section-sub {
  color: rgba(255, 255, 255, 0.55);
}

#products .section-label {
  color: var(--sap-gold);
}

.products-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 48px;
}

.prod-swiper {
  overflow: visible !important;
}

.prod-slide {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  padding: 32px 24px;
  transition: all .3s;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.prod-slide:hover {
  background: rgba(200, 146, 42, 0.1);
  border-color: rgba(200, 146, 42, 0.4);
  transform: translateY(-6px);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.4);
}

.prod-slide::before {
  content: '';
  position: absolute;
  top: -40px;
  right: -40px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  opacity: 0.15;
  transition: .3s;
}

.prod-icon {
  width: 64px;
  height: 64px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  margin-bottom: 20px;
}

.prod-img {
  width: auto;
  height: auto;
  border-radius: 15px;
  display: flex;
  align-items: center;
  /* justify-content: center;
  font-size: 30px; */
  border: 1px solid #C8922A;

  margin-bottom: 20px;
}

.prod-img img {
  display: block;
  max-width: 100%;
  border-radius: 15px;
}

.prod-title {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 10px;
}

.prod-desc {
  color: rgba(255, 255, 255, 0.55);
}

.prod-arrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 20px;
  color: var(--sap-gold);
  font-weight: 600;
  text-decoration: none;
}

.prod-swiper-nav {
  display: flex;
  gap: 10px;
  margin-top: 40px;
  justify-content: center;
}

.prod-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: transparent;
  color: #fff;
  font-size: 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .2s;
}

.prod-btn:hover {
  background: var(--sap-gold);
  border-color: var(--sap-gold);
  color: var(--sap-dark);
}


.product-page{}

.product-page .prod-slide {
  background: #FDF6EC;
  border: 1px solid rgb(245 232 213); 
}
.product-page .prod-title, .product-page .prod-desc{color: #1a0a00;}
.fa-phone{    transform: rotate(90deg);}


/* ─── COUNTER ─── */
#counter {
  background: linear-gradient(135deg, var(--sap-deep) 0%, #4a0e0e 50%, var(--sap-dark) 100%);
  padding: 80px 40px;
  position: relative;
  overflow: hidden;
}

#counter::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.counter-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  position: relative;
  z-index: 1;
}

.counter-item {
  text-align: center;
  padding: 40px 24px;
  position: relative;
}

/*.counter-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 20%;
  bottom: 20%;
  width: 1px;
  background: rgba(255, 255, 255, 0.15);
}

*/
.counter-num {
  font-family: 'Bebas Neue', sans-serif;
  /*font-size: clamp(3.5rem, 6vw, 5.5rem);*/
   font-size: 5.5rem;
  color: var(--sap-gold);
  line-height: 1;
  margin-bottom: 8px;
  display: block;
}

.counter-plus {
  font-size: 0.7em;
  color: var(--sap-accent);
}

.counter-label {
  font-size: 22px;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.counter-sub {

  color: rgba(255, 255, 255, 0.35);
  margin-top: 4px;
}

/* ─── CTA ─── */
#cta {
  background: linear-gradient(135deg, var(--sap-gold) 0%, #e8a933 50%, #d4891e 100%);
  padding: 80px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

#cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23000000' fill-opacity='0.05'%3E%3Ccircle cx='40' cy='40' r='30'/%3E%3C/g%3E%3C/svg%3E");
}

#cta .section-title {
  color: var(--sap-dark);
  position: relative;
  z-index: 1;
}
#cta .section-label{color: #8b1a1a;}
.cta-sub {

  color: rgba(26, 10, 0, 0.7);
  margin: 16px auto 36px;
  max-width: 560px;
  position: relative;
  z-index: 1;
}

.cta-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.btn-dark {
  background: var(--sap-dark);
  color: var(--sap-gold);
  font-weight: 600;

  padding: 15px 34px;
  border-radius: 8px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all .25s;
  letter-spacing: 0.3px;
}

.btn-dark:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.btn-white {
  background: #fff;
  color: var(--sap-dark);
  font-weight: 600;

  padding: 15px 34px;
  border-radius: 8px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all .25s;
}

.btn-white:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* ─── WHY CHOOSE US ─── */
#why {
  background: #fff;
  position: relative;
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  /* align-items: center;*/
  margin-top: 30px;
  align-items: stretch;
  /* Important */
}

.why-left .section-sub {
  margin-bottom: 36px;
}

.why-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.why-card {
  padding: 24px;
  border-radius: 16px;
  border: 1px solid rgba(200, 146, 42, 0.2);
  background: var(--sap-cream);
  transition: all .3s;
  position: relative;
  overflow: hidden;
}

.why-card:hover {
  border-color: var(--sap-gold);
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(200, 146, 42, 0.15);
}

.why-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--sap-gold), var(--sap-accent));
  opacity: 0;
  transition: .3s;
}

.why-card:hover::before {
  opacity: 1;
}

.why-icon {
  font-size: 28px;
  margin-bottom: 12px;
  display: block;
}

h4 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--sap-dark);
}


.why-card p {
  color: #7a6245;
}

.why-visual {
  position: relative;
}

/* Testimonial Image */
/*.testimonial-img{
    width: 90px;
    height: 90px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid rgba(255,255,255,0.2);
    margin-bottom: 24px;
}

.testimonial-img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
*/
.why-main-box {
  background: linear-gradient(145deg, #1a0a00 0%, #3a1a00 50%, #c8922a 100%);
  border-radius: 24px;
  padding: 48px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.why-main-box::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
}
/*
.why-main-box .big-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 120px;
  color: rgba(200, 146, 42, 0.25);
  line-height: 1;
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  pointer-events: none;
}*/

.why-main-box h3 {
  font-family: 'Playfair Display', serif;
  font-size: 30px;
  color: #fff;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
  line-height: 44px;
}

.why-main-box p {

  color: rgba(255, 255, 255, 0.65);

  position: relative;
  z-index: 1;
}
.testimonialSwiper {
  width: 100%;overflow: visible;
}

    /* Slide */
 /*   .swiper-slide{
      display:flex;
      justify-content:center;
      align-items:center;
    }*/

    .testimonial-content{
      position:relative;
      z-index:2;
    }

/*.testimonial-img{height: 70px;
    background: #fff;
    display: flex;
    width: auto;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 15px;}*/

    .testimonial-img img {
 height: 70px;
  border-radius: 12px;
  background: #fff;
  padding: 10px;
  margin-bottom: 20px;
}

.why-stars {
  display: flex;
  justify-content: center;
  gap: 4px;
  margin: 20px 0 8px;
  position: relative;
  z-index: 1;
}

.why-stars span {
  color: var(--sap-gold);
  font-size: 22px;
}

.why-rating {
  color: rgba(255, 255, 255, 0.6);

  position: relative;
  z-index: 1;
}

.swiper-pagination {
   position: relative;
}
.swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: #fff;
  opacity: 0.5;
}
    .swiper-pagination-bullet-active{
      background:#ffb400;
      opacity:1;
    }


/* ─── BRANDS MARQUEE ─── */
#brands {  
  overflow: hidden;
}

#brands .section-title {
  text-align: center;
}

#brands .section-label {
  text-align: center;
}

.brands-header {
  text-align: center;
  padding: 0 40px;
  margin-bottom: 50px;
}

/*  .marquee-track {
      display: flex;
      gap: 0;
      animation: marqueeLeft 28s linear infinite;
      width: max-content;
     
    }*/

.brand-item {
  background: #fff;
  padding: 10px 20px;
  border-radius: 10px;
}

.marquee-track {
  display: flex;
  gap: 20px;
  width: max-content;
  animation: marquee 22s linear infinite;
}

.marquee-track:hover {
  animation-play-state: paused;
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

/* @keyframes marqueeLeft {
      0% {
        transform: translateX(0);
      }

      100% {
        transform: translateX(-50%);
      }
    }
*/
.brand-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 22px 32px;
  background: #fff;
  border: 1px solid rgba(200, 146, 42, 0.15);
  border-radius: 16px;
  margin: 0 10px;
  min-width: 160px;
  transition: all .3s;
  cursor: default;
  flex-shrink: 0;
}

.brand-card:hover {
  border-color: var(--sap-gold);
  box-shadow: 0 8px 24px rgba(200, 146, 42, 0.15);
  transform: translateY(-4px);
}

.brand-logo-placeholder {
  width: 70px;
  height: 40px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 1px;
}

.brand-name {
  font-size: 12px;
  font-weight: 600;
  color: #7a6245;
  letter-spacing: 0.5px;
}

/* ─── BRANDS PAGE GRID ─── */
.brands-page-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.brand-page-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 15px;
  padding: 30px;
  background: #fff;
  border: 1px solid rgba(200, 146, 42, 0.15);
  border-radius: 16px;
  transition: all .3s;
  box-shadow: 0 4px 12px rgba(0,0,0,0.03);
}

.brand-page-card:hover {
  border-color: var(--sap-gold);
  box-shadow: 0 8px 24px rgba(200, 146, 42, 0.15);
  transform: translateY(-5px);
}

.brand-page-card img {
  width: auto;
  max-width: 120px;
  height: auto;
  max-height: 80px;
  object-fit: contain;
}

.brand-page-card h4 {
  font-size: 16px;
  font-weight: 600;
  color: #7a6245;
  margin: 0;
}

/* ─── INQUIRY FORM ─── */
#inquiry {
  background: linear-gradient(135deg, #1a0a00, #2a1200);  
  position: relative;
  overflow: hidden;
}

#inquiry::before {
  content: '';
  position: absolute;
  bottom: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(200, 146, 42, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

.inquiry-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: start;
}

.inquiry-left .section-title {
  color: #fff;
}

.inquiry-left .section-sub {
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 32px;
}

.contactus {background: #f0f0f0;}
.contactus .inquiry-left .section-title {
    color: #1a0a00;
}
.contactus .inquiry-left .section-sub {
     color: #1a0a00;
   
}

.contact-items {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 32px;
}
.contactus  .contact-item {
   
    color:#1a0a00;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 20px;
  color: rgba(255, 255, 255, 0.75);

}
.contact-item  a{
  overflow-wrap: break-word;
  word-break: break-word;
}
.contact-item  a:hover{color: #c8922a !important;}

.contact-item-icon {
  width: 50px;
  height: 50px;
  background: rgba(200, 146, 42, 0.15);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
  border: 1px solid rgba(200, 146, 42, 0.2);
}

.contact-item strong {
  display: block;
  color: var(--sap-gold);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 2px;
}

.inquiry-form {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 40px;
  backdrop-filter: blur(10px);
}
.contactus .inquiry-form {background:#1A0A00 ;}


.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}

.form-group label {

  font-weight: 600;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 1px;
  text-transform: uppercase;
}

.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 5px;
  padding: 15px 16px;
  color: #fff;
  font-family: 'DM Sans', sans-serif;

  outline: none;
  transition: border-color .2s;
  width: 100%;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255, 255, 255, 0.3);
}

.form-group select option {
  background: #1a0a00;
  color: #fff;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--sap-gold);
  background: rgba(200, 146, 42, 0.08);
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.form-submit {
  width: 100%;
  background: linear-gradient(135deg, var(--sap-gold), #e8a933);
  color: var(--sap-dark);
  font-weight: 700;
  font-size: 16px;
  padding: 15px;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  letter-spacing: 0.5px;
  transition: all .25s;
  margin-top: 8px;
}

.form-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(200, 146, 42, 0.4);
}

/* ─── FOOTER ─── */
footer {
  background: #0d0500;
  color: rgba(255, 255, 255, 0.6);
  padding: 60px 40px 0;
  border-top: 1px solid rgba(200, 146, 42, 0.2);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1.2fr;
  gap: 50px;
  margin-bottom: 50px;
  /* max-width: 1200px;
  margin: 0 auto 50px;*/
}

.footer-brand {
  padding-right: 100px;
  text-align: center;
}

.footer-brand h2 {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  color: var(--sap-gold);
  margin-bottom: 4px;
}

.footer-brand .est {
  font-size: 11px;
  letter-spacing: 2px;
  color: rgba(255, 255, 255, 0.35);
  text-transform: uppercase;
  margin-bottom: 16px;
}

.footer-brand p {
  margin-bottom: 24px;
}

.footer-socials {
  display: flex;
  gap: 10px;
  justify-content: center;
}

.footer-brand-logo {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 20px;
  align-items: center;
  flex-direction: column;
}
.sis-com {
  display: flex;
  gap: 30px; 
}
.com-adderss{display: block;font-size: 14px;}

.social-btn {
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.07);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  font-size: 20px;line-height: 44PX;
  transition: all .2s;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-btn:hover {
  background: var(--sap-gold);
  color: var(--sap-dark);
  border-color: var(--sap-gold);
}

.footer-col h4 {

  color: var(--sap-gold);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col ul li a {
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
  /*font-size: 14px;*/
  transition: color .2s;
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-col ul li a:hover {
  color: var(--sap-gold);
}

/*.footer-col ul li a::before {
  content: '→';
 
  color: var(--sap-gold);
}*/

.footer-bottom { 
  border-top: 1px solid rgba(255, 255, 255, 0.1);
      padding: 20px 0;
    display: flex;
    justify-content: space-between;
}

.footer-bottom  p {
  color: #fff;
  font-size: 14px;
  visibility: visible !important;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;

  line-height: 1.55;
}

.footer-contact-item .ico {

  flex-shrink: 0;
  margin-top: 1px;
}
.footer-contact-item a:hover{color: #c8922a !important;}


.footer-bottom .container {
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 16px;
  flex-direction: column;
}

.footer-bottom a {
  color: var(--sap-gold);
  text-decoration: none;
}

/* ================ WHATSAPP ================ */

.whatsapp-btn {
    position: fixed;
    left: 25px;
    bottom: 25px;
    width: 65px;
    height: 65px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 32px;
    z-index: 999;text-decoration: none;
}

.whatsapp-btn::before,
.whatsapp-btn::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: #25d366;
    z-index: -1;
    animation: ripple 2s infinite;
}

.whatsapp-btn::after {
    animation-delay: 1s;
}

@keyframes ripple {
    0% {
        transform: scale(1);
        opacity: 0.6;
    }

    100% {
        transform: scale(1.8);
        opacity: 0;
    }
}

/* ─── BACK TO TOP ─── */
#backToTop {
  position: fixed;
  bottom: 30px;
  right: 24px;
  z-index: 999;
  width: 46px;
  height: 46px;
  background: linear-gradient(135deg, var(--sap-gold), #e8a933);
  border: none;
  border-radius: 12px;
  color: var(--sap-dark);
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(200, 146, 42, 0.4);
  transition: all .3s;
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
}

#backToTop.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}

#backToTop:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(200, 146, 42, 0.5);
}

/* ─── MOBILE NAV ─── */
.mobile-nav {
  display: none;
  position: fixed;
  /*top: var(--nav-h);*/
  top: 68px;
  left: 0;
  right: 0;
  background: rgba(26, 10, 0, 0.98);
  padding: 16px 24px;
  z-index: 999;
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(200, 146, 42, 0.2);
  flex-direction: column;
  gap: 4px;
}

.mobile-nav.open {
  display: flex;
}

.mobile-nav a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  padding: 12px 16px;
  border-radius: 8px;
  transition: all .2s;
}

.mobile-nav a:hover {
  background: rgba(200, 146, 42, 0.1);
  color: var(--sap-gold);
}

.mobile-nav .mob-inquiry {
  background: linear-gradient(135deg, var(--sap-gold), #e8a933) !important;
  color: var(--sap-dark) !important;
  font-weight: 700;
  text-align: center;
  margin-top: 8px;
}



/* fade-in on scroll */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity .7s ease, transform .7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}




.brand-item img {
  max-height: 100px;
  opacity: 0.8;
  transition: opacity 0.3s;

}

.footer-logo-circle {
  padding: 10px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 10px 48px rgba(0, 0, 0, 0.22), 0 4px 16px rgba(0, 0, 0, 0.14);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.footer-logo-circle img {
  width: 88%;
  height: 88%;
  object-fit: contain;
  transition: all 0.4s ease;
}


/* ================ CAPTCHA ================ */

.captcha-group {
    margin-bottom: 20px;
}

.captcha-row {
    display: flex;
    gap: 15px;
    align-items: center;
}

.captcha-box {
    display: flex;
    align-items: center;
    background: #eef5ff;
   
    padding: 10px 15px;
    border-radius: 5px;
    gap: 10px;
    min-width: 140px;
    justify-content: space-between;
}

.captcha-box span {
    font-size: 18px;
    font-weight: 700;
    color: #0b2c66;
    letter-spacing: 2px;
}

.captcha-refresh {
    background: none;
    border: none;
    color: #cf972c;
    font-size: 16px;
    cursor: pointer;
    transition: 0.3s;
    padding: 5px;
    border-radius: 5px;
}

.captcha-refresh:hover {
    background: #d39a2d;
    color: #fff;
}

.captcha-row input {
    flex: 1;
}

.captcha-error {
    color: #ff4444;
    font-size: 12px;
    font-weight: 600;
    margin-top: 5px;
    display: none;
}



/* ─── UTILITIES EXTENDED ─── */
/*.msg-page-header {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}*/
.msg-icon-lg {
  font-size: 60px;
  color: var(--sap-gold);
  margin-bottom: 20px;
}
.msg-404 {
  font-size: 80px;
  font-family: 'Playfair Display', serif;
  color: var(--sap-gold);
  margin-bottom: 10px;
  font-weight: 900;
}
.msg-desc {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.8);
  max-width: 600px;
  margin: 20px auto 40px;
  line-height: 1.6;
}
.msg-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.bg-cream { background-color: var(--sap-cream) !important; }
.bg-dark { background-color: var(--sap-dark) !important; }

.p-0 { padding: 0 !important; }

/*.map-container { width: 100%; height: 450px; display: block; }*/
.map-section .container{

    display: grid;
    grid-template-columns: 1.8fr 1fr;
    gap: 30px;}

     .map-box{
      flex:1;
      height:600px;
      border-radius:16px;
      overflow:hidden;
      box-shadow:0 4px 15px rgba(0,0,0,0.15);
      background:white;
    }

    .map-box iframe{
      width:100%;
      height:100%;
      border:0;
    }
     .image-box{
      flex:1;
      height:600px; /* SAME HEIGHT AS MAP */
      border-radius:10px;
      overflow:hidden;     
      position:relative;
    }
        .image-box img{
      width:100%;
      height:100%;
      object-fit:cover;
    }   

.border-0 { border: 0 !important; }
.products-grid { display: grid; 
 /* grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));*/
 grid-template-columns: repeat(3, 1fr);
   gap: 30px; }
.delay-1 { transition-delay: 0.1s !important; }
.delay-2 { transition-delay: 0.2s !important; }
.text-dark-muted { color: var(--sap-dark) !important; opacity: 0.6 !important; }
.text-dark { color: var(--sap-dark) !important; }
.text-deep { color: var(--sap-deep) !important; }
.cta-sub-custom { color: rgba(26, 10, 0, 0.7); margin: 16px auto 36px; max-width: 560px; }
.cta-btns-custom { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.text-center { text-align: center !important; }
.w-100 { width: 100% !important; }
.max-w-700 { max-width: 700px !important; margin: 0 auto 40px auto !important; }

/* ─── ABOUT PAGE SPECIFIC ─── */
.about-store-img { width: 100%; border-radius: 20px; }
.vm-grid { display: grid;
 /*grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));*/
 grid-template-columns: repeat(3, 1fr);
  gap: 30px; }
.vm-card {
  background: #fff;
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  text-align: center;
}
.vm-icon {
  width: 70px;
  height: 70px;
  background: rgba(200, 146, 42, 0.1);
  color: var(--sap-gold);
  font-size: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin: 0 auto 20px;
}
.vm-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  color: var(--sap-dark);
  margin-bottom: 15px;
}
.vm-card p {
  color: #6b5a44;
  font-size: 16px;
  line-height: 1.6;
}
.why-quote {
  color: rgba(255,255,255,0.6);
  position: relative;
  z-index: 1;
}
.delay-4 { transition-delay: 0.4s !important; }



.about-store-illustration img{
  max-width: 100%;
}





/* ─── RESPONSIVE ─── */

@media (max-width: 1600px) {
 section {
    padding: 30px 35px;
  }
}

@media (max-width: 1400px) {
.nav-links a{font-size: 14px;padding: 8px 10px;}
.about-highlights{grid-template-columns: 1fr}
  .about-store-illustration{
      padding-bottom:80px ;
    }
}

@media (max-width: 1123px) {
.nav-links a{font-size: 12px;padding: 8px 10px;}
.about-highlights{grid-template-columns: 1fr}

}

@media (max-width: 992px) {

.nav-links {
    display: none;
  }

  .nav-right .btn-inquiry {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .nav-logo{
    justify-content: flex-start;
  }
.page-header{padding: 40px 40px 40px;}
 :root {
    --nav-h: 80px;
    --logo-size: 80px;
    --logo-size-sticky: 42px;
  }
.about-highlights{grid-template-columns: 1fr 1fr}
  .about-grid,
  .why-grid,
  .inquiry-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
.products-grid {
 
  grid-template-columns: 1fr 1fr 1fr;
 
}


.nav-logo-circle{width: 60px;height: 60px;transform: translateY(calc(var(--nav-h) / 6 - 8px + max(0px, var(--logo-size) - var(--nav-h)) / 2));}
nav.scrolled .nav-logo-circle{width: 60px;height: 60px;transform: translateY(calc(var(--nav-h) / 6 - 8px + max(0px, var(--logo-size) - var(--nav-h)) / 2));}
.nav-logo-circle img{margin-top: 0px;}
.about-store-illustration {
  padding-bottom: 50px;
}

}



@media (max-width: 900px) {
  nav {
   /* padding: 0 15px;*/
  }

  
 
  section {
    padding: 30px 15px;
  }

  .hero-content {
    padding: 0 24px;
  }



  .about-badge-float {
    right: 10px;display: none;
  }

  .counter-grid {
    grid-template-columns: 1fr 1fr;
  }

  .counter-item:nth-child(2)::after,
  .counter-item:nth-child(4)::after,
  .counter-item:nth-child(3)::after {
    display: none;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }

  .products-header {
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
  }

  .form-row {
    grid-template-columns: 1fr;
  }




  .hero-swiper .swiper-button-next,
  .hero-swiper .swiper-button-prev {
    display: none;
  }


  #counter{
    padding: 30px 15px;
  }

#inquiry{
  padding: 30px 15px;
}

.prod-swiper-nav{margin-top: 0px;}

.vm-grid{gap: 15px}
.vm-card{padding: 15px;}

}
@media (max-width: 767px) {.products-grid {
 
  grid-template-columns: 1fr 1fr;
 
}
.about-store-illustration {
  padding-bottom: 80px;
}

.hero{height: 80vh;}
  .about-store-illustration{
      padding-bottom:80px ;
    }
.about-store-label{padding: 0px 10px;text-align: center;}
.map-section .container{grid-template-columns: 1fr;}
.about-store-label span{display: block;}
}

@media (max-width: 600px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .why-features {
    grid-template-columns: 1fr;
  }
  .counter-grid {
    grid-template-columns: 1fr 1fr;
  }
    .about-highlights {
    grid-template-columns: 1fr;
  }
.vm-grid{
 
  grid-template-columns: 1fr;
 
}


  .hero-title {
    font-size: 2.2rem;
  }

  .hero-badge {
    font-size: 10px;
  }

  .hero-desc {
    font-size: 15px;
  }

  .inquiry-form {
    padding: 24px 18px;
  }
  .vm-card{padding: 15px;}

.btn-primary{padding: 14px 27px;}
.prod-swiper-nav{margin-top: 0PX;}

.counter-item{padding: 15px 0px;}
#cta, .why-main-box{padding: 30px 15px;}

footer{padding: 30px 15px;}
.footer-brand{padding-right: 15px;}
.nav-logo-footer {  
  display: flex;
  justify-content: center;
}

  :root {
    --nav-h: 70px;
    --logo-size: 66px;
    --logo-size-sticky: 38px;
  }

.counter-num {
   font-size: 2.5rem;}
.counter-plus {
  font-size: 0.9em;
}
.counter-label {
  font-size: 17px; 
  letter-spacing: 0;
  
}
.counter-sub { 
  font-size: 16px;
}
.footer-bottom {
  flex-direction: column;
  text-align: center;
  font-size: 15px;
  padding: 0px;
}

.page-header .page-title{font-size: 32px;}

  
}
@media (max-width: 480px) {
    .captcha-row {
        flex-direction: column;
        align-items: stretch;
    }


    .products-grid {
 
  grid-template-columns: 1fr;
 
}

.brands-page-grid {
 
  grid-template-columns: 1fr 1fr;
  gap: 10px;
 
}
.brand-page-card{padding:30px 15px ;}
.hero{height: 80vh;}



}

.wrap404{text-align: center;}
.wrap404 i{font-size: 60px;}
.wrap404 h2{    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 800;
    color: var(--sap-dark);
    line-height: 1.15;
    margin: 18px 0px;}