/* GLOBAL */
body {
  margin:0;
  font-family: 'Poppins', sans-serif;
  background:#0b0b0b;
  color:#fff;
}

/* HEADER */
/* HEADER */
.header {
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:20px 40px;
  background:#000;
  position:relative;
}

.logo {
  font-weight:600;
}

/* NAV */
.nav {
  display:flex;
}

.nav a {
  margin:0 15px;
  color:#fff;
  text-decoration:none;
}

/* BUTTON */
.btn-outline {
  border:1px solid #fff;
  padding:8px 15px;
  text-decoration:none;
  color:#fff;
}

/* HAMBURGER */
.hamburger {
  display:none;
  font-size:26px;
  cursor:pointer;
}

/* MOBILE */
@media(max-width:768px){
/* NAV DEFAULT */
.nav {
  display:flex;
}

/* MOBILE */
@media(max-width:768px){

  .nav {
    position:absolute;
    top:70px;
    left:0;
    width:100%;
    background:#000;
    flex-direction:column;
    align-items:center;

    /* FIX 👇 */
    max-height:0;
    overflow:hidden;
    transition:0.3s;
  }

  .nav.active {
    max-height:300px; /* enough height */
  }

  .nav a {
    padding:15px;
    width:100%;
    text-align:center;
    border-top:1px solid #222;
  }

  .hamburger {
    display:block;
    font-size:26px;
    cursor:pointer;
  }

  .desktop-btn {
    display:none;
  }
}
}


.logo {
  font-weight:600;
}

.nav a {
  margin:0 15px;
  color:#fff;
  text-decoration:none;
}

.btn-outline {
  border:1px solid #fff;
  padding:8px 15px;
  text-decoration:none;
  color:#fff;
}




/* SECTION */
.collection {
  padding: 80px 40px;
  background: linear-gradient(to bottom, #0a0a0a, #111);
  text-align: center;
  color: #fff;
}

/* SUB TEXT */
.collection .sub {
  font-size: 12px;
  letter-spacing: 2px;
  color: #d4af37;
  margin-bottom: 10px;
}

/* HEADING */
.collection h2 {
  font-size: 28px;
  margin-bottom: 40px;
  font-weight: 500;
}

/* GRID */
.collection-grid {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

/* CARD */
.collection-card {
  position: relative;
  width: 260px;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
}

/* IMAGE */
.collection-card img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  transition: 0.5s;
}

/* OVERLAY */
.collection-card .overlay {
  position: absolute;
  bottom: 0;
  width: 100%;
  padding: 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;

  background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
}

/* TEXT */
.collection-card h3 {
  font-size: 12px;
  letter-spacing: 1px;
}

/* ARROW */
.collection-card span {
  color: #d4af37;
  font-size: 16px;
}

/* HOVER EFFECT */
.collection-card:hover img {
  transform: scale(1.1);
}

/* FEATURES */
/* FEATURES SECTION */
.features {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #f4f4f4;
  padding: 5px 10px;
  gap: 20px;
}

/* BOX */
.feature-box {
  flex: 1;
  text-align: center;
  padding: 10px 10px;
  position: relative;
}

/* ICON */
.feature-box img {
  width: 60px;
  margin-bottom: 5px;
  opacity: 0.8;
}

/* TITLE */
.feature-box h4 {
  font-size: 12px;
  letter-spacing: 1px;
  color: #333;
  margin-bottom: 5px;
}

/* TEXT */
.feature-box p {
  font-size: 12px;
  color: #777;
  line-height: 1.4;
}

/* DIVIDER LINE */
.feature-box:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 20%;
  height: 60%;
  width: 1px;
  background: #ddd;
}

/* MOBILE */
@media(max-width:768px){
  .features {
    flex-direction: column;
    padding: 30px;
  }

  .feature-box::after {
    display: none;
  }
}
/* ABOUT */
/* ABOUT SECTION */
.about {
  display: flex;
  min-height: 500px;
  background: linear-gradient(to right, #0a0a0a, #0d1b2a);
  color: #fff;
}

/* LEFT IMAGE */
.about-img {
  flex: 1;
}

.about-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* RIGHT CONTENT */
.about-content {
  flex: 1;
  padding: 10px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* SUB TEXT */
.about-content .sub {
  font-size: 12px;
  letter-spacing: 2px;
  color: #d4af37;
  margin-bottom: 10px;
}

/* HEADING */
.about-content h2 {
  font-size: 32px;
  font-weight: 500;
  line-height: 1.3;
}

.about-content h2 span {
  color: #d4af37;
}

/* GOLD LINE */
.line {
  width: 50px;
  height: 2px;
  background: #d4af37;
  margin: 15px 0;
}

/* DESCRIPTION */
.desc {
  font-size: 14px;
  color: #bbb;
  line-height: 1.6;
  max-width: 450px;
}

/* STATS */
.stats {
  display: flex;
  gap: 40px;
  margin-top: 30px;
}

/* STAT BOX */
.stat-box {
  text-align: left;
}

.stat-box img {
  width: 25px;
  margin-bottom: 5px;
  opacity: 0.8;
}

.stat-box h3 {
  margin: 5px 0;
  font-size: 20px;
}

.stat-box p {
  font-size: 12px;
  color: #aaa;
}

/* MOBILE */
@media(max-width:768px){

  .about {
    flex-direction: column;
  }

  .about-content {
    padding: 30px;
  }

  .stats {
    flex-direction: column;
    gap: 20px;
  }

}

/* BLOG */
.blog {
  padding: 80px 40px;
  background: #0a0a0a;
  text-align: center;
  color: #fff;
}

/* GRID */
.blog-grid {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

/* CARD */
.blog-card {
  width: 320px;
  border-radius: 10px;
  overflow: hidden;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  transition: 0.3s;
}

.blog-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

/* CONTENT */
.blog-content {
  padding: 20px;
  text-align: left;
}

.blog-content h3 {
  font-size: 18px;
  margin-bottom: 10px;
}

.blog-content a {
  color: #d4af37;
  text-decoration: none;
  font-size: 14px;
}

/* HOVER */
.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 20px rgba(212,175,55,0.2);
}

/* TESTIMONIALS */
.testimonials {
  padding: 80px 40px;
  background: linear-gradient(to bottom, #0a0a0a, #0d1b2a);
  text-align: center;
  color: #fff;
}

.sub {
  color: #d4af37;
  font-size: 12px;
  letter-spacing: 2px;
}

h2 {
  font-size: 32px;
  margin: 10px 0;
}

.gold-line {
  width: 60px;
  height: 2px;
  background: #d4af37;
  margin: 10px auto 40px;
}

/* GRID */
.testimonial-grid {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

/* CARD */
.testimonial-card {
  width: 320px;
  padding: 25px;
  border-radius: 10px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  text-align: left;
}

/* USER */
.user {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
}

.user img {
  width: 45px;
  height: 45px;
  border-radius: 50%;
}

.stars {
  color: #d4af37;
  font-size: 14px;
}

/* TEXT */
.testimonial-card p {
  font-size: 14px;
  color: #ccc;
}

/* DOTS */
.dots {
  margin-top: 20px;
}

.dots span {
  display: inline-block;
  width: 8px;
  height: 8px;
  background: #555;
  border-radius: 50%;
  margin: 5px;
}

.dots .active {
  background: #d4af37;
}

/* CTA */
/* CTA SECTION */
.cta {
  position: relative;
  height: 250px;
  background: url('images/cta.jpeg') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* DARK OVERLAY */
.cta-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.6);
}

/* CONTENT */
.cta-content {
  position: relative;
  text-align: center;
  color: #fff;
}

/* HEADING */
.cta-content h2 {
  font-size: 28px;
  font-weight: 400;
  margin-bottom: 10px;
}

/* SUBTEXT */
.cta-content p {
  font-size: 13px;
  color: #ccc;
  margin-bottom: 20px;
}

/* BUTTON */
.cta-btn {
  display: inline-block;
  padding: 10px 25px;
  background: #d4af37;
  color: #000;
  text-decoration: none;
  font-size: 12px;
  letter-spacing: 1px;
  border-radius: 3px;
  transition: 0.3s;
}

/* HOVER */
.cta-btn:hover {
  background: #fff;
}

/* MOBILE */
@media(max-width:768px){
  .cta {
    height: 200px;
    padding: 20px;
  }

  .cta-content h2 {
    font-size: 20px;
  }
}
/* FOOTER */
/* FOOTER MAIN */
.footer {
  background: linear-gradient(to right, #0a0a0a, #111);
  padding: 60px 40px 20px;
  color: #aaa;
  font-family: 'Poppins', sans-serif;
}

/* GRID */
.footer-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
}

/* BOX */
.footer-box {
  flex: 1;
  min-width: 220px;
}

/* LOGO */
.footer-logo {
  color: #d4af37;
  font-size: 18px;
  letter-spacing: 2px;
  margin-bottom: 15px;
}

/* DESCRIPTION */
.footer-desc {
  font-size: 13px;
  line-height: 1.6;
  color: #aaa;
}

/* HEADINGS */
.footer-box h4 {
  font-size: 12px;
  letter-spacing: 1px;
  color: #d4af37;
  margin-bottom: 15px;
}

/* LIST */
.footer-box ul {
  list-style: none;
  padding: 0;
}

.footer-box ul li {
  font-size: 13px;
  margin-bottom: 10px;
  cursor: pointer;
  color: #ccc;
  transition: 0.3s;
}

.footer-box ul li:hover {
  color: #d4af37;
}

/* SOCIAL */
.social {
  margin-top: 15px;
}

.social span {
  display: inline-block;
  margin-right: 10px;
  color: #d4af37;
  font-size: 14px;
}

/* BOTTOM */
.footer-bottom {
  text-align: center;
  border-top: 1px solid #222;
  margin-top: 30px;
  padding-top: 15px;
  font-size: 12px;
  color: #777;
}

/* MOBILE */
@media(max-width:768px){
  .footer-container {
    flex-direction: column;
  }
}
.copy {
  text-align:center;
  margin-top:20px;
}

/* MOBILE */
@media(max-width:768px){

  

  .about {
    flex-direction:column;
    padding:20px;
  }

  .features {
    flex-direction:column;
    text-align:center;
    gap:10px;
  }

  .footer-grid {
    flex-direction:column;
    gap:20px;
  }

}


/* whatsapp */
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 55px;
  height: 55px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  z-index: 999;
  cursor: pointer;
  transition: 0.3s;
}

.whatsapp-float img {
  width: 28px;
}

.whatsapp-float:hover {
  transform: scale(1.1);
}

/* DARK BG SAME */
.contact-wrapper {
  background: #050505;
  padding: 100px 6%;
}
/* 🔥 HERO SECTION */
.contact-hero {
  position: relative;
  height: 300px;

  background: url("../images/contact.png") center/cover no-repeat;

  display: flex;
  align-items: center;
  padding: 0 8%;
  color: white;
}

/* DARK OVERLAY */
.contact-hero .overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.65);
}

/* CONTENT */
.hero-content {
  position: relative;
  z-index: 2;
}

.hero-content span {
  color: #f5c518;
  font-size: 13px;
  letter-spacing: 2px;
}

.hero-content h1 {
  font-size: 40px;
  margin: 10px 0;
}

.hero-content p {
  color: #ddd;
  font-size: 14px;
}


/* 🔥 CONTACT WRAPPER */
.contact-wrapper {
  padding: 60px 8%;
  background: #111;
}

/* MAIN BOX */
.contact-box {
  background: #f8f8f8;
  border-radius: 20px;
  padding: 50px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.35);
}

/* FORM */
.contact-form h3 {
  font-size: 20px;
  margin-bottom: 25px;
}

.form-row {
  display: flex;
  gap: 15px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px;
  margin-bottom: 15px;
  border: 1px solid #e0e0e0;
  background: #fff;
  border-radius: 10px;
  font-size: 14px;
  box-shadow: inset 0 1px 2px rgba(0,0,0,0.05);
}

.contact-form textarea {
  height: 130px;
}

.contact-form button {
  background: #0b0b0b;
  color: #f5c518;
  padding: 12px 22px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
}

/* RIGHT PANEL */
.info-title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 18px;
  margin-bottom: 20px;
}

.icon-circle {
  color: #f5c518;
}

/* GRID FIX */
.info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px;
}

/* LEFT SIDE */
.info-left {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.info-item {
  display: flex;
  gap: 15px;
}

.icon-box {
  width: 40px;
  height: 40px;
  background: #0b0b0b;
  color: #f5c518;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
}

.info-item p {
  margin: 0;
  font-weight: 600;
}

.info-item span {
  font-size: 13px;
  color: #777;
}

/* MAP */
.map-card {
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
  padding: 8px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.map-card iframe {
  width: 100%;
  height: 220px;
  border-radius: 12px;
  border: none;
}

/* MOBILE */
@media(max-width: 768px) {
  .contact-box {
    grid-template-columns: 1fr;
    padding: 30px;
  }

  .form-row {
    flex-direction: column;
  }

  .info-grid {
    grid-template-columns: 1fr;
  }
}


/* About Page */
.about-hero {
  position: relative;
  height: 320px;
  background: url("../images/contact.png") center/cover no-repeat;
  display: flex;
  align-items: center;
  padding: 0 8%;
  color: #fff;
}

.about-hero .overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.7);
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-content span {
  color: #f5c518;
  font-size: 13px;
  letter-spacing: 2px;
}

.hero-content h1 {
  font-size: 42px;
  margin: 10px 0;
}

.hero-content p {
  color: #ddd;
}

.about-section {
  padding: 30px 2%;
  background: #f8f8f8;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.about-img img {
  width: 100%;
  border-radius: 20px;
}

.about-content span {
  color: #f5c518;
  font-size: 13px;
}

.about-content h2 {
  font-size: 32px;
  margin: 10px 0;
}

.about-content p {
  color: #555;
  margin-bottom: 20px;
}

.btn {
  background: #0b0b0b;
  color: #f5c518;
  padding: 10px 20px;
  border-radius: 6px;
  text-decoration: none;
}

/* SECTION */
.stats {
  background: linear-gradient(180deg, #0b0b0b, #050505);
  padding: 80px 0;
  display: flex;
  justify-content: center;
}

/* CONTAINER (🔥 IMPORTANT FIX) */
.stats-grid {
  width: 70%; /* thoda compact karo */
  max-width: 1100px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  text-align: center;
  align-items: center;
}

/* BOX */
.stat-box {
  position: relative;
  padding: 0 20px; /* spacing improve */
}

/* ICON */
.stat-icon {
  font-size: 26px;
  color: #f5c518;
  margin-bottom: 12px;
}

/* NUMBER */
.stat-box h2 {
  font-size: 36px;
  color: #f5c518;
  margin: 0;
}

/* TEXT */
.stat-box p {
  font-size: 13px;
  color: #bbb;
  margin-top: 6px;
}

/* 🔥 PERFECT DIVIDER */
.stat-box:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 20%;
  width: 1px;
  height: 60%;
  background: rgba(255,255,255,0.15);
}
@media(max-width:768px){
  .stats-grid {
    grid-template-columns: 1fr 1fr;
    width: 90%;
    gap: 40px;
  }

  .stat-box::after {
    display: none;
  }
}

/* SECTION */
.why {
  padding: 90px 8%;
  text-align: center;
  background: #fff;
}

/* SMALL TAG */
.section-tag {
  color: #f5c518;
  font-size: 12px;
  letter-spacing: 2px;
}

/* HEADING */
.why h2 {
  font-size: 32px;
  margin: 10px 0;
  color: #222;
}

/* GOLD UNDERLINE */
.underline {
  width: 60px;
  height: 3px;
  background: #f5c518;
  margin: 10px auto 40px;
  border-radius: 5px;
}

/* GRID */
.why-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

/* CARD */
.why-card {
  background: #f9f9f9;
  padding: 25px;
  border-radius: 15px;
  transition: 0.3s;
  border: 1px solid #eee;
}

/* HOVER */
.why-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

/* ICON */
.why-icon {
  font-size: 28px;
  color: #f5c518;
  margin-bottom: 10px;
}

/* TITLE */
.why-card h3 {
  font-size: 16px;
  margin-bottom: 8px;
}

/* TEXT */
.why-card p {
  font-size: 13px;
  color: #666;
}
@media(max-width:768px){
  .why-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.collection {
  background: #0b0b0b;
  color: #fff;
  padding: 80px 8%;
  text-align: center;
}

.collection-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 20px;
}

.card img {
  width: 100%;
  border-radius: 15px;
}

.cta {
  padding: 60px 8%;
  background: #111;
  color: #fff;
  text-align: center;
}

@media(max-width:768px){
  .about-grid,
  .stats-grid,
  .why-grid,
  .collection-grid {
    grid-template-columns: 1fr;
  }
}


/* Product Page */
.collection-hero{
  position: relative;
  height: 200px;
background: url("../images/pro-imf.png") center/cover no-repeat;  display: flex;
  align-items: center;
  padding: 0 8%;
  color: #fff;
}

.collection-hero .overlay{
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0,0,0,0.85), rgba(0,0,0,0.4));
}

.hero-content h1{
  font-size: 36px;
  font-weight: 600;
}
.hero-content span{
  color: #f5c518;
}
/* LAYOUT */
.products-page {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 30px;
  padding: 60px 8%;
  background: #0b0b0b;
  color: #fff;
}.filter{
  background: rgba(255,255,255,0.03);
  backdrop-filter: blur(10px);
  padding: 20px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.1);
}

.filter-group h4{
  display: flex;
  justify-content: space-between;
  cursor: pointer;
  color: #ddd;
}

.filter label{
  display: flex;
  gap: 8px;
  align-items: center;
}

.filter input[type="checkbox"]{
  accent-color: #f5c518;
}
/* PRODUCTS */
.products {
  width: 100%;
}

.top-bar {
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
}

.top-bar h2 {
  font-size: 24px;
}

.top-bar select {
  background: #111;
  color: #fff;
  padding: 8px;
  border: 1px solid #333;
}

/* GRID */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px,1fr));
  gap: 25px;
}
/* CARD */.card {
  border-radius: 14px;
  overflow: hidden;
  transition: 0.4s;
}

.card-img {
  position: relative;
  height: 260px;
}

.card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.5s;
}

/* DARK GRADIENT */
.card-img .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.9), rgba(0,0,0,0.2));
}

/* TEXT ON IMAGE *//* CARD TEXT AREA */
.card-info {
  position: absolute;
  bottom: 15px;
  left: 15px;
  right: 15px;
  color: #fff;
  z-index: 2; /* 🔥 IMPORTANT */
}

/* 🔥 NEW BUTTON */
.btn-enquiry {
  display: block;
  text-align: center;
  background: #f5c518;
  color: #000;
  padding: 8px;
  border-radius: 6px;
  font-size: 13px;
  text-decoration: none;
  font-weight: 600;
  margin-top: 8px;
}
.overlay {
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.8),
    rgba(0,0,0,0.2)
  );
}
/* HOVER */
.btn-enquiry:hover {
  background: #ffd700;
}

.card-info h3 {
  font-size: 15px;
}

.price {
  color: #f5c518;
  margin: 6px 0;
}

/* BUTTON */
.btn {
  border: 1px solid rgba(255,255,255,0.3);
  padding: 8px;
  display: block;
  text-align: center;
  color: #fff;
  font-size: 13px;
}

/* HOVER EFFECT */
.card:hover img {
  transform: scale(1.08);
}

.card:hover {
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

/* MOBILE */
@media(max-width:768px){
  .products-page {
    grid-template-columns: 1fr;
  }

  .product-grid {
    grid-template-columns: repeat(2,1fr);
  }
}


.fot-nav>li>a{
  color: #ebe1e1;
  text-decoration: none;
}

/* MAIN SECTION */
.custom-cta {
  position: relative;
  height: 320px;

  background: url("../images/cta-img.png") center/cover no-repeat;

  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
}

/* OVERLAY */
.custom-cta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(0,0,0,0.9),
    rgba(0,0,0,0.5)
  );
}

/* CONTENT */
.custom-cta-content {
  position: relative;
  z-index: 2;
  max-width: 650px;
  padding: 0 20px;
}

.custom-cta-content h2 {
  font-size: 32px;
  margin-bottom: 10px;
  font-weight: 600;
}

.custom-cta-content p {
  color: #ccc;
  margin-bottom: 20px;
  font-size: 14px;
}

/* BUTTON */
.custom-cta-btn {
  display: inline-block;
  background: #f5c518;
  color: #000;
  padding: 12px 28px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

.custom-cta-btn:hover {
  background: #ffd700;
  transform: translateY(-2px);
}
/* Default desktop */
.filter-btn {
  display: none;
}

/* MOBILE VIEW */
@media (max-width: 768px) {

  .filter {
    position: fixed;
    top: 0;
    left: -100%;
    width: 80%;
    height: 100%;
    background: #000000;
    z-index: 999;
    padding: 20px;
    overflow-y: auto;
    transition: 0.3s;
  }

  .filter.active {
    left: 0;
  }

  .filter-btn {
    display: inline-block;
    padding: 8px 12px;
    background: black;
    color: #fff;
    border: none;
    cursor: pointer;
  }
}
.filter button {
  border: none;
  background: #000;
  color: #fff;
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 14px;
}