:root {
  --primary-beige: #f5f0e8;
  --accent-rose: #d4a5a5;
  --deep-plum: #6b4e71;
  --soft-cream: #fdfbf7;
  --gold-accent: #c9a155;
  --dusty-pink: #E0B0FF;
  --creamy-whole: #fdfbd4;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

h1 {
  font-size: 50px;
  line-height: 64px;
  color:#6b4e71;
}

h2 {
  font-size: 46px;
  line-height: 54px;
  color: #222;
}

h4 {
  font-size: 20px;
  color: #222;
}

h6 {
  font-weight: 700;
  font-size: 12px;
}

p {
  font-size: 16px;
  color: #465b53;
  margin: 15px 0 20px 0;
}

.section-p1 {
  padding: 40px 80px;
}

.section-m1 {
  margin: 40px 0;
}

button.normal {
  font-size: 14px;
  font-weight: 600;
  padding: 15px 30px;
  color: #000;
  background-color: #fff;
  border-radius: 4px;
  cursor: pointer;
  border: none;
  outline: none;
  transition: 0.2s;
}

button.white {
  font-size: 13px;
  font-weight: 600;
  padding: 11px 18px;
  color: #fff;
  background-color: transparent;
  cursor: pointer;
  border: 1px solid #fff;
  outline: none;
  transition: 0.2s;
}

body {
  width: 100%;
}


#loader {
    position: fixed;
    width: 100%;
    height: 100%;
    background: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

#loader.fade-out {
    opacity: 0;
    transition: opacity 0.5s ease;
}

/* Logo animation */
.logo-loader {
    width: 100px;
    animation: pulse 1.5s infinite;
}

/* Smooth pulse effect */
@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.7;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}


/* navbar....................................................................................... */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: #E0B0FF;
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(212, 165, 165, 0.2);
  z-index: 1000;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar.scrolled {
  background:#E0B0FF;
  box-shadow: 0 4px 20px rgba(107, 78, 113, 0.08);
}

.nav-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}
.logo img {
  width: 110px;
  height: 60px;
}
.logo:hover {
  transform: translateY(-2px);
}
.nav-links {
  display: flex;
  gap: 30px;
  list-style: none;
  align-items: center;
}

.nav-links li {
  position: relative;
}

.nav-links a {
  text-decoration: none;
  color: black;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  position: relative;
  padding: 8px 0;
  transition: color 0.3s ease;
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-links a .dropdown-icon {
  font-size: 14px;
  transition: transform 0.3s ease;
}

.nav-links li:hover .dropdown-icon {
  transform: rotate(180deg);
}

.nav-links a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent-rose), var(--gold-accent));
  transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-links a:hover {
  color: #c9a155;
}

.nav-links a:hover::after {
  width: 100%;
}
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: var(--soft-cream);
  min-width: 220px;
  padding: 20px 0;
  border-radius: 8px;
  box-shadow: 0 8px 30px rgba(107, 78, 113, 0.15);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  margin-top: 20px;
  z-index: 100;
}

.nav-links li:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  margin-top: 10px;
}

.dropdown-menu a {
  display: block;
  padding: 12px 24px;
  color: var(--charcoal);
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: capitalize;
  transition: all 0.3s ease;
}

.dropdown-menu a::after {
  display: none;
}

.dropdown-menu a:hover {
  background: var(--primary-beige);
  color: #c9a155;
  padding-left: 30px;
}
.nav-actions {
  margin-left: 20px;
  display: flex;
  gap: 24px;
  align-items: center;
}

.nav-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  background: transparent;
  border: 1px solid transparent;
}

.nav-icon i{
  display: flex;
  align-items: center;
  color: #c9a155;
  width: 20px;
  height: 20px;
  transition: stroke 0.3s ease;
}

.nav-icon:hover {
  background: var(--primary-beige);
  border-color: var(--accent-rose);
  transform: translateY(-2px);
}

.cart-badge {
  position: absolute;
  top: 6px;
  right: 6px;
  background: black;
  color: white;
  font-size: 10px;
  font-weight: 600;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 6px rgba(212, 165, 165, 0.4);
}
.mobile-toggle {
  display: none;
  cursor: pointer;
  padding: 8px;
  font-size: 24px;
  color: var(--charcoal);
  transition: all 0.3s ease;
}

.mobile-toggle:hover {
  color: #c9a155;
}

.mobile-toggle .fa-times {
  display: none;
}

.mobile-toggle.active .fa-bars {
  display: none;
}

.mobile-toggle.active .fa-times {
  display: block;
}

#searchInput {
  padding: 7px 28px 7px 12px;
  border-radius: 20px;
  border: 1px solid rgba(107, 78, 113, 0.3);
  background: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  width: 120px;
  outline: none;
  color: #333;
  transition: width 0.3s ease, border-color 0.3s ease;
}

#searchInput:focus {
  border-color: var(--gold-accent);
  background: rgba(255, 255, 255, 0.95);
}

#searchIcon {
  border: none;
  background: none;
  cursor: pointer;
  color: var(--gold-accent);
  font-size: 18px;
  padding: 8px;
  transition: color 0.3s ease;
}

#searchIcon:hover {
  color: var(--deep-plum);
}
/* hero............................................................................................. */
.hero-spacer {
  height: 80px;
}

.hero::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(
    circle,
    rgba(212, 165, 165, 0.25) 0%,  
    transparent 70%
  );
  border-radius: 50%;
  pointer-events: none;
  z-index: 2;               
}

.hero-content {
  text-align: center;
  z-index: 1;
  padding: 40px;
}

.hero-content h1 {
  font-size: 74px;
  font-weight: 400;
  color: var(--deep-plum);
  margin-bottom: 20px;
  letter-spacing: 2px;
}

.hero-content p {
  font-size: 18px;
  color: var(--charcoal);
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 300;
}

/* hero2............................................................................................... */
.hero {
  min-height: 100vh;
  position: relative;
  overflow: hidden;
}

.carousel {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.carousel-track {
  display: flex;
  width: 500%;
  height: 100%;
  transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.carousel-slide {
  width: 20%;
  height: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}



.slide-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0; 
}


.slide-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 40px;
  color: #E0B0FF;
  margin-top: 50px;
}

.slide-content h1 {
  font-size: 72px;
  font-weight: 500;
  color: #fff;
  /* color: var(--deep-plum); */
  margin-bottom: 20px;
  letter-spacing: 3px;
  animation: fadeInUp 0.8s ease-out;
  line-height: 1;
}

.slide-content p {
  font-size: 20px;
  color: white;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 400;
  animation: fadeInUp 1s ease-out;
}

.slide-content .cta-button {
  display: inline-block;
  margin-top: 30px;
  padding: 15px 40px;
  background: #c9a155;
  color: white;
  text-decoration: none;
  border-radius: 50px;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 500;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(107, 78, 113, 0.3);
  animation: fadeInUp 1.2s ease-out;
}

.slide-content .cta-button:hover {
  background:  #E0B0FF;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(212, 165, 165, 0.4);
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.carousel-dots {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 15px;
  z-index: 10;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  border: 2px solid var(--deep-plum);
  cursor: pointer;
  transition: all 0.3s ease;
}

.dot:hover {
  background: rgba(212, 165, 165, 0.8);
  transform: scale(1.2);
}

.dot.active {
  background: black;
  width: 30px;
  border-radius: 10px;
}
.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  background: rgba(253, 251, 247, 0.9);
  border: 2px solid #E0B0FF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s ease;
  opacity: 0.7;
}

.carousel-arrow:hover {
  background: var(--deep-plum);
  opacity: 1;
}

.carousel-arrow:hover i {
  color: white;
}

.carousel-arrow i {
  font-size: 20px;
  color: var(--deep-plum);
  transition: color 0.3s ease;
}

.arrow-left {
  left: 30px;
}

.arrow-right {
  right: 30px;
}

.slide-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:
    linear-gradient(
      to top,
      rgba(30, 10, 25, 0.80) 0%,
      rgba(30, 10, 25, 0.35) 40%,
      transparent 65%
    ),
    linear-gradient(
      to bottom,
      rgba(0, 0, 0, 0.30) 0%,
      transparent 35%
    ),
    linear-gradient(
      135deg,
      rgba(212, 165, 165, 0.08) 0%,
      transparent 50%
    );
    }
    
    .slide-overlay {
     z-index: 1;    
    }


/* feature........................................................................................ */
#feature .fe-box {
  width: 180px;
  text-align: center;
  padding: 15px 25px;
  box-shadow: 20px 20px 34px rgba(0, 0, 0, 0.03);
  border: 1px solid #cce7d0;
  border-radius: 4px;
  margin: 15px 0;
}
#feature .fe-box:hover {
  box-shadow: 10px 10px 54px rgba(70, 62, 221, 0.2);
}
#feature .fe-box img {
  width: 100%;
  height: 150px;
  margin-bottom: 10px;
}
#feature .fe-box h6 {
  display: inline-block;
  padding: 9px 8px 6px 8px;
  line-height: 1;
  border-radius: 4px;
  color: black;
  background-color: #E0B0FF;
  text-decoration:none;
  /*background-color: #c9a155;*/
  width: 100%;
  transition: all 0.3s ease;
}
#feature .fe-box h6 a{
    color:black;
    text-decoration:none;
}
#feature .fe-box h6:hover {
  color: #ffcc00;
  transform: scale(1.2);
  text-shadow: 0 0 8px rgba(255, 204, 0, 0.8);
}
#feature {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

/* new arival.............................................................................. */
#product1,
#product11{
  background-color: black;
  text-align: center;
}
#product1 .pro-container,
#product11 .pro-container{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding-top: 20px;
}
#product1 .pro,
#product11 .pro{
  width: 23%;
  min-width: 200px;
  padding: 10px 12px;
  border: 1px solid #E0B0FF;
  box-shadow: 20px 20px 30px rgba(0, 0, 0, 0.02);
  margin: 15px 0;
  transition: 0.2s ease;
  position: relative;
}
#product1 .pro:hover,
#product11 .pro:hover{
  box-shadow: 20px 20px 30px rgba(0, 0, 0, 0.06);
}
#product1 .pro img,
#product11 .pro img{
  max-height: 200px;
  width: 100%;
  border-radius: 20px;
   transition: filter 0.35s ease, transform 0.35s ease;
}
#product1 .pro img:hover,
#product11 .pro img:hover{
  filter: blur(4px);
  transform: scale(1.05);
}
#product1 .pro .des,
#product11 .pro .des{
  text-align: start;
  padding: 10px 0;
}
#product1 .pro .des span,
#product11 .pro .des span{
  color: #c9a155;
  font-size: 12px;
}
#product1 h2,
#product11 h2{
  color: white;
}
#product1 p,
#product11 p{
  color: #c9a155;
}
#product1 .pro .des h5,
#product11 .pro .des h5{
  padding-top: 7px;
  color: white;
  font-size: 14px;
}
#product1 .pro .des i,
#product11 .pro .des i{
  font-size: 12px;
  color: rgb(243, 181, 25);
}
#product1 .pro .des h4,
#product11 .pro .des h4{
  padding-top: 7px;
  font-size: 15px;
  font-weight: 700;
  color:#E0B0FF;
}
#product1 .pro .cart,
#product11 .pro .cart{
  width: 40px;
  height: 40px;
  line-height: 40px;
  border-radius: 40px;
  background-color: #eaf6ea;
  font-weight: 600;
  color: #E0B0FF;
  border: 1px solid #cce7d0;
  bottom: 20px;
  position: absolute;
  right: 10px;
  transition: all 0.3s ease;
}
#product1 .pro .cart:hover,
#product11 .pro .cart:hover{
  color: #ffcc00;
  transform: scale(1.2);
  text-shadow: 0 0 8px rgba(255, 204, 0, 0.8);
}

/* banner...................................................................................... */
#banner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  background-image: url("/static/images/banner9.jpeg");
  width: 100%;
  height: 40vh;
  background-size: cover;
  background-position: center;
}
#banner h4 {
  color: white;
  font-size: 16px;
}
#banner h2 {
  color: white;
  line-height: 1;
  max-width: 700px;
  font-size: 30px;
  padding: 10px 0;
}
#banner h2 span {
  color: #E0B0FF;
}
#banner button {
  background-color: #c9a155;
  border-radius: 50px;
  color: #fff;
}
#banner button:hover {
  background: #E0B0FF;
  color: #fff;
}
#banner3 {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 0 80px;
}
#banner3 a{
  width: 30%;
  text-decoration: none;

}
#banner3 .banner-box{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  text-align: center;
  background-image: url("/static/images/IMG_9999.JPG.jpeg");
  height: 30vh;
  background-size: cover;
  background-position: center;
  padding: 16px;
  margin-bottom: 20px;
  transition: all 0.5s ease;
}

#banner3 .banner-box {
  position: relative;
  overflow: hidden;
}

#banner3 .banner-box::before {
  content: "";
  position: absolute;
  inset: 0;
  background: inherit;
  background-size: cover;
  background-position: center;
  transition: 0.5s ease;
  z-index: 0;
}

#banner3 .banner-box:hover::before {
  filter: blur(4px);
  transform: scale(1.1);
}

#banner3 .banner-box * {
  position: relative;
  z-index: 1;
}

#banner3 .banner-box2 {
  background-image: url("/static/images/IMG_0668.JPG.jpeg");
}

#banner3 .banner-box3 {
  background-image: url("/static/images/IMG_9334.JPG.jpeg");
}
#banner3 h2 {
  color: white;
  font-weight: 900;
  font-size: 20px;
  line-height: 1.3;
}
#banner3 h3 {
  color: #E0B0FF;
}

/* customer review.............................................................................. */
.reviews-section {
  padding: 60px 20px;
  text-align: center;
  background: #fff;
  overflow: hidden;
}

.reviews-section h2 {
  font-size: 24px;
  letter-spacing: 2px;
  margin-bottom: 10px;
}

.overall-rating {
  font-size: 18px;
  margin-bottom: 40px;
  color: rgb(243, 181, 25);
}

.overall-rating span {
  font-size: 14px;
  color: #777;
}

.reviews-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.reviews-track {
  display: flex;
  transition: transform 0.6s ease;
}

.review-card {
  flex: 0 0 33.333%;
  padding: 20px;
  box-sizing: border-box;
}

.review-card .stars {
  font-size: 18px;
  margin-bottom: 10px;
  color: rgb(243, 181, 25);
}

.review-card h3 {
  font-size: 18px;
  margin-bottom: 10px;
}

.review-card p {
  font-size: 15px;
  color: #555;
  line-height: 1.6;
  margin-bottom: 20px;
}

.reviewer {
  font-size: 14px;
  color: #888;
}

/* Arrows */
.arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #c9a155;
  color: #E0B0FF;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 22px;
  cursor: pointer;
  z-index: 10;
  opacity: 0.7;
}

.arrow:hover {
  opacity: 1;
}

.arrow.left {
  left: 10px;
}

.arrow.right {
  right: 10px;
}

/* Tablet */
@media (max-width: 992px) {
  .review-card {
    flex: 0 0 50%;
  }
}

/* Mobile */
@media (max-width: 600px) {
  .review-card {
    flex: 0 0 100%;
  }

  .arrow {
    display: none;
  }
}

/* newsletter.................................................................................... */
#newsletter {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  background: #a27ebd;
}
#newsletter h4 {
  font-size: 22px;
  font-weight: 700;
  color: #fff;
}
#newsletter p {
  font-size: 14px;
  font-weight: 600;
  color: white;
}
#newsletter p span {
  color: #c9a155;
}
#newsletter .form {
  display: flex;
  width: 40%;
}
#newsletter input {
  height: 3.125rem;
  padding: 0 1.25em;
  font-size: 14px;
  width: 100%;
  border: 1px solid transparent;
  border-radius: 4px;
  outline: none;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
#newsletter button {
  color: #fff;
  background-color: #c9a155;
  white-space: nowrap;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}
footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
footer .col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 20px;
}
footer .logo2 {
  width: 70px;
  height: 40px;
  margin-bottom: 0;
}
footer h4 {
  font-size: 18px;
  padding-bottom: 10px;
}
footer p {
  font-size: 16px;
  margin: 0 0 8px 0;
}
footer a {
  font-size: 16px;
  text-decoration: none;
  color: #222;
  margin-bottom: 10px;
}
footer .follow {
  margin-top: 20px;
}
footer .follow i {
  color: #465b52;
  padding-right: 4px;
  cursor: pointer;
}
footer .follow i:hover,
footer a:hover {
  color: #c9a155;
}
footer .copyright {
  width: 100%;
  text-align: center;
  margin-bottom: 40px;
}

.modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.6);
    z-index: 9999;
    justify-content: center;
    align-items: center;
}

.modal h2{
  color: #a27ebd;
}

.modal-content {
    background: #fff;
    width: 360px;
    padding: 30px;
    border-radius: 8px;
    position: relative;
    text-align: center;
    margin: 0;
}

.close {
    position: absolute;
    top: 12px;
    right: 15px;
    font-size: 22px;
    cursor: pointer;
}

.modal-content input {
    width: 100%;
    padding: 14px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.primary-btn {
    width: 100%;
    padding: 14px;
    background: #c9a155;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.link-text {
    margin-top: 15px;
    font-size: 14px;
}

.link-text a {
    color: #c9a155;
    text-decoration: none;
    font-weight: 600;
}

.tab-content { display: none; }
.tab-content.active { display: block; }
.switch-text { margin-top: 10px; font-size: 0.9rem; text-align: center; }
.switch-text a { color: #a27ebd; cursor: pointer; text-decoration: underline; }

.flashMessage {
  margin-top: 15px;
  border-radius: 8px;
  overflow: hidden;
}

.flashMessage p {
  margin: 6px 0;
  padding: 10px 16px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
}

.flashMessage p.success {
  background-color: #e6f4ea;
  color: #2d6a4f;
  border-left: 4px solid #52b788;
}

.flashMessage p.success::before {
  content: "✓";
  font-weight: 800;
  color: #52b788;
}

.flashMessage p.error {
  background-color: #fdecea;
  color: #a02020;
  border-left: 4px solid #e05252;
}

.flashMessage p.error::before {
  content: "✕";
  font-weight: 800;
  color: #e05252;
}

.flashMessage p.warning {
  background-color: #fff8e1;
  color: #7d5a00;
  border-left: 4px solid #f0b429;
}

.flashMessage p.warning::before {
  content: "⚠";
  font-weight: 800;
  color: #f0b429;
}
.flashMessage p {
  transition: opacity 0.3s ease;
}

.flashMessage p span:hover {
  opacity: 1 !important;
}

/*admin note...............................................................*/
.top-banner {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: #ff4d6d;
    color: white;
    text-align: center;
    padding: 12px 40px;
    font-weight: 500;
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: slideDown 0.4s ease-in-out;
}

.top-banner button {
    position: absolute;
    right: 15px;
    background: transparent;
    border: none;
    color: white;
    font-size: 18px;
    cursor: pointer;
}

@keyframes slideDown {
    from { transform: translateY(-100%); }
    to { transform: translateY(0); }
}



/* Responsive Design */
@media (max-width: 968px) {
  .nav-container {
    padding: 0 24px;
  }

  .nav-links {
    position: fixed;
    top: 80px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 80px);
    background: var(--soft-cream);
    flex-direction: column;
    gap: 0;
    padding: 40px 40px;
    transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  }

  .nav-links.active {
    left: 0;
  }

  .nav-links li {
    width: 100%;
    text-align: center;
    padding: 20px 0;
    border-bottom: 1px solid rgba(212, 165, 165, 0.1);
  }

  .nav-links a::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .dropdown-menu {
    position: static;
    transform: none;
    box-shadow: none;
    background: transparent;
    padding: 0;
    margin-top: 0;
    max-height: 0;
    overflow: hidden;
    opacity: 1;
    visibility: visible;
    transition: max-height 0.3s ease;
  }

  .nav-links li.dropdown-active .dropdown-menu {
    max-height: 400px;
    padding: 10px 0;
  }

  .dropdown-menu a {
    padding: 10px 40px;
    font-size: 12px;
  }

  .dropdown-menu a:hover {
    padding-left: 45px;
  }

  .mobile-toggle {
    display: flex;
  }

}

@media (max-width: 480px) {
  .nav-links {
    padding: 40px 20px;
  }

  .nav-container {
    height: 70px;
    padding: 0 16px;
  }

  .logo {
    font-size: 22px;
  }

  .logo-icon {
    width: 36px;
    height: 36px;
    font-size: 18px;
  }

  .nav-actions {
    gap: 12px;
  }

  .nav-icon {
    width: 40px;
    height: 40px;
  }

  .nav-icon svg {
    width: 18px;
    height: 18px;
  }
}

/* Responsive */
@media (max-width: 768px) {
  .carousel {
    height: 70vh;
  }

  .hero {
    min-height: 70vh;
  }

  .slide-content h1 {
    font-size: 48px;
  }

  .slide-content p {
    font-size: 14px;
    letter-spacing: 2px;
  }

  .slide-content .cta-button {
    padding: 12px 30px;
    font-size: 12px;
  }

  .carousel-arrow {
    width: 40px;
    height: 40px;
  }

  .carousel-arrow i {
    font-size: 16px;
  }

  .arrow-left {
    left: 15px;
  }

  .arrow-right {
    right: 15px;
  }

  .carousel-dots {
    bottom: 25px;
    gap: 10px;
  }

  .dot {
    width: 10px;
    height: 10px;
  }

  .dot.active {
    width: 25px;
  }
  #banner3 {
    padding: 0 40px;
  }
  .section-p1 {
    padding: 40px 40px;
}

}

@media (max-width: 480px) {
  .slide-content h1 {
    font-size: 36px;
  }

  .slide-content p {
    font-size: 12px;
  }

  .carousel-dots {
    bottom: 20px;
  }

  .section-p1 {
  padding: 0px 0px;
}
  #feature .fe-box {
    padding: 15px 15px;
}
 #product1,
 #product11{
   padding: 30px 0;
 }
 #product1 .pro,
 #product11 .pro{
    width: 100%;
    margin: 35px 40px;
    }
    #product1 .pro .des,
     #product11 .pro .des{
    padding: 10px 20px;
}
#banner3 {
    flex-direction: column;
}

#banner3 .banner-box {
    width: 100%;
}
#banner3 {
    padding: 25px;
}
#banner3 a {
    width: 100%;
}
#newsletter {
    padding: 10px;
}
#newsletter .form {
    width: 100%;
}
footer {
    flex-direction: column;
}
footer .col {
    align-items: center;
}

}

