
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  /* font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; */
  font-family: 'Poppins', sans-serif;
}

body {
  overflow-x: hidden;
  line-height: 1.6;
  font-family: 'Playfair Display', serif;
}
h1,h2,h3,h4{
  font-family: 'Playfair Display', serif;
  letter-spacing:1px;
}
p{
  font-family: 'Playfair Display', serif;
  letter-spacing:1px;
}

/* TOP BAR */
.top-bar {
  background: #e53935;
  color: white;
  text-align: center;
  padding: 10px 15px;
  font-size: 14px;
  position: relative;
  z-index: 1001;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
}

.top-bar span {
  cursor: pointer;
  transition: opacity 0.3s;
}

.top-bar span:hover {
  opacity: 0.8;
}

/* NAVBAR */
.navbar {
  width: 100%;
  padding: 17px 90px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: fixed;
  left: 0;
  z-index: 1000;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  background: rgba(0, 0, 0, 0.39);
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  top: 0;
  padding: 17px 30px;
}

.navbar.hide {
  transform: translateY(-100%);
}

.logo {
  font-weight: bold;
  color: white;
  letter-spacing: 1px;
  transition: color 0.3s;
  display: flex;
  flex-direction: row !important;
  align-items: center;
  gap: 10px;
}
.logo p{
  font-size: 28px
}

.navbar.scrolled .logo {
  color: #e53935;
}

/* Desktop Menu */
.nav-menu {
  list-style: none;
  display: flex;
  gap: 30px;
}

.nav-menu a {
  text-decoration: none;
  color: white;
  font-weight: 500;
  font-size: 16px;
  position: relative;
  padding: 5px 0;
  transition: color 0.3s;
}

.navbar.scrolled .nav-menu a {
  color: #333;
}

.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: #e53935;
  transition: width 0.3s;
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
  width: 100%;
}

.nav-menu a:hover {
  color: #ffcdd2;
}

.navbar.scrolled .nav-menu a:hover {
  color: #e53935;
}

/* Mobile Menu Button */
.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  color: white;
  font-size: 24px;
  cursor: pointer;
  z-index: 1002;
}

.navbar.scrolled .mobile-menu-btn {
  color: #333;
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 999;
  transform: translateX(100%);
  transition: transform 0.4s ease;
}

.mobile-menu.active {
  transform: translateX(0);
}

.mobile-menu ul {
  list-style: none;
  text-align: center;
}

.mobile-menu ul li {
  margin: 25px 0;
}

.mobile-menu ul li a {
  text-decoration: none;
  color: #333;
  font-size: 24px;
  font-weight: 500;
  transition: color 0.3s;
}

.mobile-menu ul li a:hover {
  color: #e53935;
}

.close-menu {
  position: absolute;
  top: 30px;
  right: 30px;
  background: none;
  border: none;
  font-size: 28px;
  color: #333;
  cursor: pointer;
}

/* HERO SECTION */
.hero {
  height: 100vh;
  min-height: 600px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  transition: background-image 1s ease-in-out;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.6));
}

.hero-content {
  position: absolute;
  bottom: 120px;
  left: 60px;
  color: white;
  z-index: 2;
  max-width: 800px;
  background-color: #0000004d;
    border-radius: 22px;
    /* margin: -41px; */
    padding: 20px;
}

.hero-content h1 {
  font-size: 48px;
  line-height: 1.2;
  margin-bottom: 25px;
  font-weight: 700;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-btn {
  margin-top: 20px;
  padding: 14px 32px;
  border: none;
  background: white;
  color: #e53935;
  border-radius: 0px 0px 25px 0px;
  cursor: pointer;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.hero-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
  background: #f5f5f5;
}

/* DOTS */
.dots {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 2;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: white;
  opacity: 0.5;
  cursor: pointer;
  transition: all 0.3s;
  border: 2px solid transparent;
}

.dot:hover {
  opacity: 0.8;
}

.dot.active {
  opacity: 1;
  transform: scale(1.2);
  border-color: white;
}

/* COLLECTION SECTION */
.rv-collection-area {
  padding: 80px 30px;
  background: #fafafa;
}

.rv-collection-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
  flex-wrap: wrap;
  gap: 20px;
}

.rv-collection-head h3 {
  font-size: 32px;
  color: #333;
  font-weight: 700;
}

.rv-collection-head a {
  color: #e53935;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: gap 0.3s;
}

.rv-collection-head a:hover {
  gap: 12px;
}

/* SLIDER CONTAINER */
.rv-slider-box {
  position: relative;
  display: flex;
  align-items: center;
  padding: 0 10px;
}

.rv-slider-window {
  width: 100%;
  overflow: hidden;
  padding: 10px 0;
}

.rv-slider-row {
  display: flex;
  gap: 25px;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* CARD STYLES */
.rv-slide-card {
  min-width: 280px;
  height: 380px;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  flex-shrink: 0;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  transition: all 0.4s ease;
  cursor: pointer;
}

.rv-slide-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.rv-slide-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.rv-slide-card:hover img {
  transform: scale(1.08);
}

.rv-slide-card span {
  position: absolute;
  top: 15px;
  left: 15px;
  background: rgba(229, 57, 53, 0.9);
  color: white;
  padding: 8px 18px;
  border-radius: 25px;
  font-size: 14px;
  font-weight: 600;
  z-index: 1;
}

/* SLIDER BUTTONS */
.rv-btn {
  width: 50px;
  height: 50px;
  background: white;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
  font-size: 22px;
  position: absolute;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  color: #333;
}

.rv-btn:hover:not(:disabled) {
  background: #e53935;
  color: white;
  transform: scale(1.1);
  box-shadow: 0 8px 25px rgba(229, 57, 53, 0.3);
}

.rv-btn-left {
  left: -20px;
}

.rv-btn-right {
  right: -20px;
}

.rv-btn:disabled {
  opacity: 0.3;
  cursor: not-allowed;
  box-shadow: none;
}


/* RESPONSIVE DESIGN */

/* Large Tablets (992px - 1199px) */
@media (max-width: 1199px) {
  .hero-content h1 {
    font-size: 42px;
  }
  
  .rv-slide-card {
    min-width: 240px;
    height: 340px;
  }
}

/* Tablets (768px - 991px) */
@media (max-width: 991px) {
  .navbar {
    padding: 12px 20px;
  }
  
  .nav-menu {
    display: none;
  }
  
  .mobile-menu-btn {
    display: block;
  }
  
  .hero-content {
    left: 30px;
    right: 30px;
    bottom: 100px;
  }
  
  .hero-content h1 {
    font-size: 36px;
  }
  
  .rv-slider-box {
    padding: 0;
  }
  
  .rv-btn-left {
    left: 10px;
  }
  
  .rv-btn-right {
    right: 10px;
  }
  
  .rv-slide-card {
    min-width: 220px;
    height: 320px;
  }
  
  .footer-content {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile Landscape (576px - 767px) */
@media (max-width: 767px) {
  .top-bar {
    font-size: 12px;
    padding: 8px 10px;
    gap: 15px;
  }
  
  .navbar {
    padding: 10px 15px;
  }
  
  .navbar.scrolled {
    padding: 8px 15px;
  }
  
  .logo {
    font-size: 24px;
  }
  
  .hero {
    min-height: 500px;
  }
  
  .hero-content {
    left: 20px;
    right: 20px;
    bottom: 80px;
    text-align: center;
  }
  
  .hero-content h1 {
    font-size: 28px;
    margin-bottom: 20px;
  }
  
  .hero-btn {
    padding: 12px 28px;
    font-size: 15px;
  }
  
  .rv-collection-area {
    padding: 50px 15px;
  }
  
  .rv-collection-head {
    margin-bottom: 30px;
  }
  
  .rv-collection-head h3 {
    font-size: 26px;
  }
  
  .rv-slide-card {
    min-width: 200px;
    height: 280px;
  }
  
  .rv-btn {
    width: 40px;
    height: 40px;
    font-size: 18px;
  }
  
  .footer {
    padding: 40px 20px 20px;
  }
}

/* Small Mobile (320px - 575px) */
@media (max-width: 575px) {
  .hero {
    min-height: 450px;
  }
  
  .hero-content {
    bottom: 60px;
  }
  
  .hero-content h1 {
    font-size: 24px;
  }
  
  .hero-btn {
    padding: 10px 24px;
    font-size: 14px;
  }
  
  .dots {
    bottom: 25px;
  }
  
  .dot {
    width: 10px;
    height: 10px;
  }
  
  .rv-collection-area {
    padding: 40px 10px;
  }
  
  .rv-collection-head {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  
  .rv-collection-head h3 {
    font-size: 22px;
  }
  
  .rv-slide-card {
    min-width: 180px;
    height: 250px;
  }
  
  .rv-slide-card span {
    font-size: 12px;
    padding: 6px 14px;
  }
  
  .rv-btn-left {
    left: 5px;
  }
  
  .rv-btn-right {
    right: 5px;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

/* Extra Small Mobile (max-width: 374px) */
@media (max-width: 374px) {
  .top-bar {
    font-size: 11px;
    flex-direction: column;
    gap: 5px;
    padding: 6px 10px;
  }
  
  .navbar {
    top: 40px;
  }
  
  .hero-content h1 {
    font-size: 20px;
  }
  
  .rv-slide-card {
    min-width: 160px;
    height: 230px;
  }
  
  .rv-btn {
    width: 35px;
    height: 35px;
    font-size: 16px;
  }
}


/* Section Style */
.text-section{
    background:#f3f3f3;
    padding:80px 5%;
}

.text-section p{
    font-size:28px;
    line-height:1.6;
    color:#222;
    font-weight:500;
}

/* Light Text */
.text-section span{
    color:#777;
    font-weight:400;
}

/* Responsive */
@media(max-width:768px){

    .text-section{
        padding:50px 8%;
    }

    .text-section p{
        font-size:20px;
    }

}

/* Section */
.feature-section{
    padding:60px 6%;
    background-color: #89917d;
}

/* Top */
.feature-top{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:40px;
}

.feature-top h1{
    font-size:42px;
    color:#fff;
    max-width:700px;
    line-height:1.2;
}

.feature-btn{
    padding:12px 22px;
    background:#1f1b18;
    color:#fff;
    border:none;
    border-radius:0px 0px 25px 0px;
    cursor:pointer;
}

/* Grid */
.feature-grid{
    display:grid;
    grid-template-columns: 2fr 1fr 1fr;
    grid-template-rows: repeat(2, 250px);
    gap:20px;
}

/* Card */
.card{
    position:relative;
    border-radius:18px;
    overflow:hidden;
    cursor:pointer;
}

/* Image */
.card img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:0.5s;
}

/* Overlay */
.overlay{
    position:absolute;
    inset:0;
    background:rgba(0,0,0,0.65);
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    text-align:center;
    padding:20px;

    opacity:0;
    transition:0.4s;
}

/* Text */
.overlay h3{
    color:#fff;
    font-size:22px;
    margin-bottom:10px;
}

.overlay p{
    color:#ddd;
    font-size:14px;
    line-height:1.4;
}

/* Hover Effect */
.card:hover img{
    transform:scale(1.1);
}

.card:hover .overlay{
    opacity:1;
}

/* Big */
.big-card{
    grid-row: span 2;
}

/* Responsive */
@media(max-width:900px){

    .feature-top{
        flex-direction:column;
        gap:20px;
        text-align:center;
    }

    .feature-grid{
        grid-template-columns:1fr;
    }

    .big-card{
        grid-row:auto;
        height:300px;
    }

    .card{
        height:220px;
    }
}


/* Section */
.slider-section{
    background:#211918;
    padding:80px 6%;
    color:#fff;
}

/* Layout */
.slider-wrap{
    display:flex;
    align-items:center;
    gap:60px;
    
}

/* Left */
.slider-left{
    flex:1;
}

.slider-left small{
    color:#ddd;
    letter-spacing:1px;
}

.slider-left h1{
    margin:20px 0;
    font-size:42px;
    line-height:1.2;
}

.slider-left h1 span{
    display:block;
    color:#777;
    font-weight:400;
}

.slider-left p{
    color:#ccc;
    line-height:1.6;
    /* max-width:450px; */
    margin-bottom:25px;
}

/* Button */
.slider-btn{
    background:#e63946;
    color:#fff;
    padding:12px 26px;
    border:none;
    border-radius:0px 0px 25px 0px;
    cursor:pointer;
}

/* Right */
.slider-right{
    flex:1;
    position:relative;
}

.slider-img{
    width:100%;
    height:480px;
    border-radius:0px 0px 125px 0px;
    overflow:hidden;
    position:relative;
}

.slider-img img{
    width:100%;
    height:100%;
    object-fit:cover;
    position:absolute;
    top:0;
    left:0;
    opacity:0;
    transition:opacity 1s ease-in-out;
}

.slider-img img.active{
    opacity:1;
}

/* Responsive */
@media(max-width:900px){

    .slider-wrap{
        flex-direction:column;
        text-align:center;
    }

    .slider-left p{
        margin:auto;
    }

    .slider-img{
        height:280px;
    }

}

/* Scroll Space */
.scroll-space{
  height:100vh;
}

/* Section */
.agio-hero{
  position:relative;
  height:100vh;
  overflow:hidden;
}

/* Background */
.agio-bg{
  position:absolute;
  inset:0;
  background:url("img/2.png")
  center/cover no-repeat;

  /* Start Closed */
  clip-path:inset(0 50% 0 50%);
  transition:0.1s;
}

/* Overlay */
.agio-overlay{
  position:absolute;
  inset:0;
  background:rgba(0,0,0,0.35);
}

/* Content */
.agio-content{
  position:relative;
  z-index:5;

  height:100%;
  padding:80px 8%;

  display:flex;
  flex-direction:column;
  justify-content:flex-end;

  opacity:0;
  transform:translateY(80px);
  transition:0.6s ease;
}

/* Text */
.agio-content h1{
  color:#fff;
  font-size:56px;
  margin-bottom:15px;
}

.agio-content p{
  color:#ffffff;
  max-width:520px;
  line-height:1.6;
  margin-bottom:25px;
  font-weight: bold;
}

.agio-btn{
  width:160px;
  padding:12px;
  border:none;
  border-radius:0px 0px 25px 0px;
  background:#fff;
  font-weight:600;
  cursor:pointer;
}

/* Responsive */
@media(max-width:900px){

  .agio-content h1{
    font-size:34px;
  }

  .agio-content{
    padding:50px 6%;
  }

}


/* Section Wrapper */
.cta-wrapper{
  padding:35px 2%;
}

/* Card */
.cta-card{
  background:#4f5b3f;
  border-radius:40px;
  padding:80px 70px;
  min-height:420px;

  position:relative;
  overflow:hidden;

  display:flex;
  align-items:center;
}

/* Left Content */
.cta-left{
  max-width:520px;
  color:#fff;
  z-index:5;
}

.cta-left h1{
  font-size:54px;
  line-height:1.2;
  margin-bottom:25px;
  font-weight:400;
}

.cta-left p{
  font-size:14px;
  line-height:1.6;
  margin-bottom:30px;
  color:#eee;
}

/* Button */
.cta-btn{
  background:#111;
  color:#fff;
  padding:12px 22px;
  border:none;
  border-radius:0px 0px 20px 0px;
  cursor:pointer;
  font-weight:600;
}

/* Watermark Text */
.cta-watermark{
  position:absolute;
  right:-5px;
  bottom:-30px;

  font-size:220px;
  font-weight:700;

  color:rgba(0,0,0,0.15);
  user-select:none;
  pointer-events:none;
}

/* Small Circle */
.cta-dot{
  position:absolute;
  right:120px;
  top:120px;

  width:40px;
  height:40px;
  border-radius:50%;

  background:rgba(0,0,0,0.15);
}

/* Responsive */
@media(max-width:900px){

  .cta-card{
    flex-direction:column;
    padding:50px 30px;
    min-height:auto;
  }

  .cta-left h1{
    font-size:36px;
  }

  .cta-watermark{
    font-size:140px;
    right:-40px;
  }

}


/* Footer */
.agio-footer{
  background:linear-gradient(to right,#0c0706,#1a1210);
  color:#fff;
  padding:85px 6% 60px;
  position:relative;
  overflow:hidden;
}

/* Top */
.footer-main{
  display:flex;
  justify-content:center;
  gap:50px;
  flex-wrap:wrap;
}

/* Left Links */
.footer-links{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  /* gap:50px; */
  flex:2;
}

/* Column */
.footer-col h4{
  margin-bottom:18px;
  font-size:16px;
}

.footer-col ul{
  list-style:none;
}

.footer-col ul li{
  margin-bottom:10px;
}

.footer-col ul li a{
  text-decoration:none;
  color:#ccc;
  font-size:14px;
  transition:0.3s;
}

.footer-col ul li a:hover{
  color:#fff;
}

/* Right Newsletter */
.footer-news{
  flex:1;
  min-width:280px;
}

.footer-news h2{
  font-size:30px;
  margin-bottom:12px;
}

.footer-news p{
  color:#ccc;
  font-size:14px;
  margin-bottom:20px;
  line-height:1.5;
}
.contact-info p{
  color: rgb(255, 255, 255);
  margin-top: 20px;
}

/* Form */
.news-form{
  display:flex;
  gap:10px;
}

.news-form input{
  flex:1;
  padding:12px;
  border:none;
  border-radius:5px;
  outline:none;
}

.news-form button{
  background:#e63946;
  color:#fff;
  border:none;
  padding:12px 18px;
  border-radius:0px 0px 20px 0px;
  cursor:pointer;
  font-weight:600;
}

/* Watermark */
.footer-watermark{
  position:absolute;
  right:1px;
  bottom:-5rem;

  font-size:240px;
  font-weight:700;

  color:rgba(255,255,255,0.08);
  user-select:none;
}
.logo img{
  width: 60px;
  /*height: 50px;*/
}
/* Dot */
.footer-dot{
  position:absolute;
  right:300px;
  top:200px;

  width:35px;
  height:35px;
  border-radius:50%;
  background:rgba(255,255,255,0.12);
}

/* Bottom */
.footer-bottom{
  margin-top:60px;
  display:flex;
  justify-content:center;
  align-items:center;
  flex-wrap:wrap;
  gap:20px;
}

/* Social */
.footer-social a{
  color:#fff;
  margin-right:15px;
  font-size:18px;
  transition:0.3s;
}

.footer-social a:hover{
  color:#e63946;
}

/* Copyright */
.footer-copy{
  font-size:13px;
  color:#ccc;
}

/* Responsive */
@media(max-width:900px){

  .footer-links{
    grid-template-columns:repeat(2,1fr);
    gap:30px;
  }

  .footer-news h2{
    font-size:24px;
  }

  .footer-watermark{
    font-size:150px;
  }

}

@media(max-width:500px){

  .footer-links{
    grid-template-columns:1fr;
  }

  .news-form{
    flex-direction:column;
  }

  .news-form button{
    width:100%;
  }

}


/* ===== DROPDOWN DESKTOP ===== */
.nav-dropdown {
  position: relative;
}
/* REMOVE BULLET POINTS COMPLETELY */
.dropdown-menu,
.dropdown-menu ul,
.dropdown-menu li {
  list-style: none !important;
  margin: 0;
  padding: 0;
}

.dropdown-menu {
  position: absolute;
  top: 130%;
  left: 0;
  background: white;
  min-width: 260px;
  padding: 12px 0;
  border-radius: 10px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.15);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
  z-index: 999;
}

.dropdown-menu li {
  padding: 0;
}

.dropdown-menu li a {
  display: block;
  padding: 10px 22px;
  font-size: 14px;
  color: #333 !important;
  white-space: nowrap;
}

.dropdown-menu li a:hover {
  background: #f5f5f5;
  color: #e53935 !important;
}

/* Hover open (Desktop) */
.nav-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* ===== MOBILE DROPDOWN ===== */
.mobile-dropdown {
  position: static;
  box-shadow: none;
  background: transparent;
  padding: 0;
  max-height: 0;
  overflow: hidden;
  opacity: 1;
  visibility: visible;
  transform: none;
  transition: max-height 0.4s ease;
}

.mobile-dropdown li a {
  font-size: 18px;
  padding: 8px 0;
}

.nav-dropdown.active .mobile-dropdown {
  max-height: 500px;
}

.arrow {
  margin-left: 6px;
  font-size: 14px;
}
/* ===== MOBILE PRODUCTS DROPDOWN (CLEAN FIX) ===== */
@media (max-width: 768px) {

  .mobile-menu ul {
    padding: 0;
  }

  .nav-dropdown {
    width: 100%;
  }

  .dropdown-toggle-mobile {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6px;
  }

  .mobile-dropdown {
    margin-top: 12px;
    padding-left: 18px;
    border-left: 2px solid #e53935;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
  }

  .nav-dropdown.active .mobile-dropdown {
    max-height: 360px;
  }

  .mobile-dropdown li {
    margin: 12px 0;
  }

  .mobile-dropdown li a {
    font-size: 16px;
    font-weight: 500;
    color: #555;
    line-height: 1.4;
    text-align: left;
  }

  .mobile-dropdown li a:hover {
    color: #e53935;
  }
}
/* ===== FIX MOBILE MENU SCROLL & LAYOUT ===== */
@media (max-width: 768px) {

  .mobile-menu {
    justify-content: flex-start;   /* NOT center */
    padding-top: 100px;            /* space for close button */
    overflow-y: auto;              /* ENABLE SCROLL */
    -webkit-overflow-scrolling: touch;
  }

  .mobile-menu ul {
    width: 100%;
    padding: 0 24px;
  }

  .mobile-menu ul li {
    margin: 18px 0;
  }

  .mobile-menu ul li > a {
    font-size: 20px;
    font-weight: 600;
    color: #222;
    display: block;
    text-align: center;
  }
}
@media (max-width: 768px) {

  /* Products parent */
  .nav-dropdown {
    width: 100%;
    text-align: center;
  }

  .dropdown-toggle-mobile {
    display: inline-flex;
    align-items: center;
    gap: 6px;
  }

  /* Products list */
  .mobile-dropdown {
    margin-top: 14px;
    padding: 12px 18px;
    border-left: 3px solid #e53935;
    background: #f9f9f9;
    border-radius: 10px;

    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
  }

  .nav-dropdown.active .mobile-dropdown {
    max-height: 420px;
    padding: 14px 18px;
  }

  .mobile-dropdown li {
    margin: 10px 0;
  }

  .mobile-dropdown li a {
    font-size: 16px;
    font-weight: 500;
    color: #444;
    text-align: left;
    line-height: 1.4;
  }
}

a{
  text-decoration: none;
  color: inherit;
}