/* General Styles */
body {
  margin: 0;
  padding: 0;
  font-family: Arial, Helvetica, sans-serif;
  width: 100%;   /* not 100vw */
  overflow-x: hidden;
}


/* ================= NAVBAR ================= */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: 70px;
  background: #fff;
  padding: 0 25px;
  box-shadow: 0 2px 10px rgba(91, 69, 94, 0.1); /* soft shadow */
  border-bottom: 1px solid #eee;
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

/* Hamburger Toggle (Mobile Only) */
.menu-toggle {
  font-size: 26px;
  color: #5B455E;
  cursor: pointer;
  display: none;
  z-index: 1100;
  transition: transform 0.3s ease;
}

.menu-toggle:hover {
  transform: rotate(90deg);
  color: #b78d65;
}

/* Logo Centered */
.navbar-logo {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  height: 52px;
  display: flex;
  align-items: center;
  cursor: pointer;
}

.navbar-logo img {
  height: 100%;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.navbar-logo img:hover {
  transform: scale(1.05);
}

/* Navigation Links (Desktop Only) */
.nav-links {
  display: flex;
  gap: 24px;
  margin-top: 12px;
}

.nav-links a {
  font-size: 15px;
  font-weight: 500;
  color: #5B455E;
  text-decoration: none;
  padding: 5px 0;
  position: relative;
  transition: color 0.3s ease;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0%;
  height: 2px;
  background: #b78d65;
  transition: width 0.3s ease;
}

.nav-links a:hover {
  color: #b78d65;
}

.nav-links a:hover::after {
  width: 100%;
}

/* Right Icons */
.right-icons {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 8px;
}

.nav-icon {
  width: 24px;
  height: 24px;
  transition: 0.3s ease;
  cursor: pointer;
}

.nav-icon:hover {
  transform: scale(1.15);
  color: #b78d65;
}

.cart-count-badge {
  background: transparent;
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  border-radius: 50%;
  min-width: 18px;
  height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: -6px;
  right: -10px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}

/* ================= SIDEBAR ================= */
.sidebar {
  height: 100%;
  width: 0;
  position: fixed;
  z-index: 2000;
  top: 0;
  left: 0;
  background-color: #fff;
  overflow-x: hidden;
  transition: width 0.4s ease;
  padding-top: 90px;
  box-shadow: 4px 0 20px rgba(0, 0, 0, 0.1);
  border-right: 1px solid #eee;
}

.sidebar a {
  padding: 18px 35px;
  display: block;
  font-size: 17px;
  font-weight: 500;
  color: #5B455E;
  text-decoration: none;
  border-bottom: 1px solid #f7f7f7;
  transition: all 0.3s ease;
}

.sidebar a:hover {
  background-color: #f9f9f9;
  color: #b78d65;
  padding-left: 45px;
}

/* Close Button */
.closebtn {
  position: absolute;
  top: 20px;
  right: 25px;
  font-size: 30px;
  color: #5B455E;
  cursor: pointer;
  transition: transform 0.3s ease, color 0.3s ease;
}

.closebtn:hover {
  transform: rotate(90deg) scale(1.2);
  color: #b78d65;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 1200px) {
  .nav-links {
    display: none;
  }

  .menu-toggle {
    display: block;
  }
}

/* ================= CARD SPACING ================= */
.card-container {
  margin-top: 85px; /* adjust for fixed navbar */
  padding: 20px;
}

.perfume-card {
    width: 100%;
    max-width: 700px; /* Max width to maintain good look on large screens */
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    font-family: Arial, Helvetica, sans-serif;
   
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
  }
  
  .perfume-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
  }
  
  .card-image {
    position: relative;
    width: 100%;
    height: 0;
    padding-top: 75%; /* Aspect ratio for height based on width */
    overflow: hidden;
  }
  
  .card-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensure the image fills the container */
    transition: transform 0.5s ease;
  }
  
  .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.4) 100%);
  }
  
  .card-content {
    padding: 25px;
    text-align: center;
    width: 100%;
  }
  
  .card-content h3 {
    color: #333;
    font-size: 26px;
    margin-bottom: 12px;
    font-weight: 600;
  }
  
  .card-content p {
    color: #666;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 25px;
  }
  
  .perfume-btn {
    background: #5B455E;
    color: white;
    border: none;
    padding: 20px 75px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(183, 141, 101, 0.3);
    text-transform: uppercase;
    width: 250PX;
  }
  
  .perfume-btn:hover {
    background: linear-gradient(45deg, #b087f1, #7f89e0);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(183, 141, 101, 0.4);
  }
  
  /* Responsive Design for Different Screen Sizes */
  
  /* Phones in Portrait */
  @media (max-width: 11600px) {
    .perfume-card {
      width: 100%;
      margin: 10px;
      padding: 10px;
    }
  
    .card-image {
      padding-top: 100%; /* Adjust to 100% for full square image */
    }
  
    .card-content h3 {
      font-size: 22px;
    }
  
    .card-content p {
      font-size: 14px;
      margin-bottom: 15px;
    }
  
    .perfume-btn {
      font-size: 14px;
      padding: 12px 30px;
    }
  }
  
  /* Phones in Landscape */
  @media (max-width: 11768px) {
    .perfume-card {
      width: 100%;
      max-width: 480px;
      margin: 15px auto;
    }
  
    .card-image {
      padding-top: 100%; /* Maintain full cover on landscape mode */
    }
  
    .card-content h3 {
      font-size: 24px;
    }
  
    .card-content p {
      font-size: 15px;
    }
  
    .perfume-btn {
      font-size: 15px;
      padding: 14px 35px;
    }
  }
  
  /* Tablets */
  @media (max-width: 11024px) {
    .perfume-card {
      width: 80%;
      max-width: 600px;
    }
  
    .card-content h3 {
      font-size: 28px;
    }
  
    .card-content p {
      font-size: 16px;
    }
  
    .perfume-btn {
      font-size: 16px;
    }
  }
  

  /* Search Overlay Styles */
.search-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: white;
    z-index: 1000;
    padding: 20px;
    box-sizing: border-box;
}

.search-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.search-input {
    flex-grow: 1;
    padding: 12px 15px;
    font-size: 16px;
    border: 1px solid #ddd;
    border-radius: 4px;
    outline: none;
}

.cancel-search {
    margin-left: 15px;
    background: none;
    border: none;
    font-size: 16px;
    color: #333;
    cursor: pointer;
}

.search-results {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.search-product {
    display: flex;
    align-items: center;
    width: 100%;
    max-width: 500px;
    padding: 15px;
    border-bottom: 1px solid #eee;
    cursor: pointer;
}

.search-results {
    max-height: 550px;
    overflow-y: auto;
    padding: 0; /* Remove padding from container */
    background-color: #fff;
    border-top: 1px solid #ccc;
    width: 100%; /* Ensure container takes full width */
}

.search-item {
    display: flex;
    align-items: center;
    padding: 12px; /* Increased padding for better spacing */
    margin-bottom: 0; /* Remove bottom margin */
    border-bottom: 1px solid #eee;
    cursor: pointer;
    transition: background-color 0.2s ease;
    width: 100%; /* Make items take full width */
    box-sizing: border-box; /* Include padding in width calculation */
}

.search-item:hover {
    background-color: #f2f2f2;
}

.search-img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 6px;
    margin-right: 12px;
    flex-shrink: 0; /* Prevent image from shrinking */
}

.search-info {
    font-size: 14px;
    line-height: 1.3;
    flex-grow: 1; /* Allow text to take remaining space */
}

.search-info strong {
    display: block;
    font-size: 15px;
    color: #222;
}

.search-info p {
    margin: 3px 0 0;
    color: #555;
    font-size: 13px;
}
  
.logo-slider {
  overflow: hidden;
  background-color: #fff;
  padding: 20px 0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  border-radius: 12px;
  
}

.slider-track {
  display: flex;
  width: calc(250px * 32); /* Adjust if logos change in number/size */
  animation: scrollLogos 60s linear infinite;
}

.logo-slider img {
  height: 60px;
  width: auto;
  margin: 0 25px;
  filter: grayscale(100%);
  opacity: 0.8;
  transition: all 0.3s ease;
}

.logo-slider img:hover {
  filter: grayscale(0%);
  opacity: 1;
  transform: scale(1.1);
}

@keyframes scrollLogos {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-35%);
  }
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .logo-slider img {
    height: 40px;
    margin: 0 15px;
  }

  .slider-track {
    animation-duration: 80s;
  }
}


/* ========== Perfume Scroll Container ========== */
.scroll-container {
  width: 100%;
  overflow-x: auto; /* Enables horizontal scrolling */
  -webkit-overflow-scrolling: touch; /* Smooth iOS scrolling */
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE/Edge */
  margin: 20px 0;
  padding: 10px 0;
}

.scroll-container::-webkit-scrollbar {
  display: none; /* Chrome/Safari/Opera */
}

/* ========== Inner Content Flex Row ========== */
.scroll-content {
  display: flex;
  gap: 30px;
  padding: 0 20px;
  margin: 0;
}

/* ========== Perfume Item Card ========== */
.perfume-item {
  flex: 0 0 auto;  /* Prevent shrinking/growing */
  width: 180px;
  transition: transform 0.3s ease;
}

.perfume-item:hover {
  transform: translateY(-15px);
}

/* ========== Perfume Image Styling ========== */
.perfume-image {
  width: 100%;
  height: 240px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 12px;
}




.perfume-item:hover {
    transform: translateY(-5px);
}

.perfume-image {
    width: 100%;
    height: 190px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 10px;
}

.perfume-info {
    text-align: center;
    font-size: 10px;
}

.perfume-name {
    font-size: 16px;
    margin: 5px 0;
}

.perfume-price {
    font-size: 14px;
    color: #666;
}

.hr,.hrh2,.hrh1{
   
    color: #2a2a2a; /* Dark gray for better readability */
    text-align: center;
    margin: 30px 0 20px;
    position: relative;
    padding-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin: 50px;
}

.hrh::after {
   
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
  
}
.als{
   
    color: #2a2a2a; /* Dark gray for better readability */
    text-align: center;
    margin: 30px 0 20px;
    position: relative;
    padding-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.als::after {
   
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
  
}
/* For mobile responsiveness */
@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
        margin: 20px 0 15px;
    }
}

.perfume-name {
    font-size: 16px;
    margin: 5px 0;
    white-space: nowrap; /* Keep name on one line */
    overflow: hidden; /* Hide overflow */
    text-overflow: ellipsis; /* Show ... if too long */
    max-width: 100%; /* Constrain to container */
}

/* Discount perfumes horizontal scroll - exact match with summer perfumes */
#discount-perfumes-scroll {
    width: 100%;
    overflow-x: auto;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE/Edge */
    margin: 20px 0;
    padding: 10px 0;
}

#discount-perfumes-scroll::-webkit-scrollbar {
    display: none; /* Chrome/Safari */
}

#discount-perfumes-content {
    display: flex;
    gap: 50px;
    padding: 0 20px;
    margin: 20px;
}

.discount-item {
    min-width: 180px;
    cursor: pointer;
    transition: transform 0.2s;
    margin: 20px;
    position: relative; /* For discount badge */
}

.discount-item:hover {
    transform: translateY(-5px);
}

.discount-image {
    width: 100%;
    height: 190px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 10px;
}

.discount-info {
    text-align: center;
    font-size: 10px;
}

.discount-name {
    font-size: 16px;
    margin: 5px 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
}

/* Additional discount-specific styling */


.price-container {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 5px;
}

.original-price {
    font-size: 14px;
    color: #999;
    text-decoration: line-through;
}

.discount-price {
    font-size: 14px;
    color: #ff4444;
    font-weight: bold;
}

/* Mobile responsiveness - matches summer perfumes */
@media (max-width: 768px) {
    #discount-perfumes-content {
        gap: 30px;
    }
    
    .discount-item {
        min-width: 150px;
        margin: 10px;
    }
    
    .discount-image {
        height: 160px;
    }
}

.discount-ribbon, .discount-badge {
    position: absolute;
    background-color: #ff4b5c;
    color: white;
    padding: 3px 8px;
    border-radius: 3px;
    font-size: 12px;
    font-weight: bold;
    z-index: 1;
}

.original-price {
    text-decoration: line-through;
    color: #888;
    font-size: 0.9em;
}

.discount-price {
    color: #ff4b5c;
    font-weight: bold;
}

.price-container {
    display: flex;
    flex-direction: column;
}

.item, .perfume-item, .search-item {
    position: relative;
}
.original-price {
    text-decoration: line-through;
    color: #888;
    font-size: 0.9em;
    font-size: 15px;
}

.discount-price {
    color: #ff4b5c;
    font-weight: bold;
    font-size: 25px;
}

.price-container {
    display: flex;
    flex-direction: column;
}

.price-container {
    font-size: 1.5em; /* Or try 24px, 2rem, etc. */
    font-weight: bold;
}

.footer {
  background-color: #5B455E;
  color: #ffffff;
  padding: 50px 20px 30px;
font-family: Arial, Helvetica, sans-serif;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-top {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 30px;
}

.footer-title {
  font-size: 26px;
  color: #ffffff;
  margin-bottom: 15px;
}

.footer-about p {
  max-width: 350px;
  font-size: 14px;
  line-height: 1.6;
  color: #f0f0f0;
}

.follow-label {
  margin-top: 20px;
  font-weight: bold;
  font-size: 16px;
  color: #ffffff;
}

.footer-social {
  display: flex;
  gap: 15px;
  margin-top: 10px;
}

.footer-social .social-icon svg {
  width: 24px;
  height: 24px;
  fill: #ffffff;
  transition: transform 0.3s ease;
}

.footer-social .social-icon:hover svg {
  transform: scale(1.1);
  fill: #e2d4ec;
}

.footer-links-group h3,
.footer-contact h3 {
  color: #ffffff;
  margin-bottom: 10px;
  font-size: 18px;
}

.footer-links-group ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links-group ul li {
  margin-bottom: 8px;
}

.footer-links-group ul li a {
  text-decoration: none;
  color: #ffffff;
  font-size: 14px;
  transition: color 0.3s ease;
}

.footer-links-group ul li a:hover {
  color: #e2d4ec;
}

.footer-contact p {
  font-size: 14px;
  color: #f0f0f0;
  margin: 10px 0;
  display: flex;
  align-items: center;
}

.footer-contact svg {
  width: 18px;
  height: 18px;
  fill: #ffffff;
  margin-right: 10px;
}

.footer-separator {
  border: none;
  border-top: 1px solid #ffffff33;
  margin: 30px 0;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  font-size: 13px;
  color: #e2e2e2;
}

.footer-bottom a.footer-credit {
  color: #ffffff;
  text-decoration: none;
}

.footer-bottom a.footer-credit:hover {
  text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
  .footer-top {
    flex-direction: column;
    gap: 30px;
  }

  .footer-bottom {
    flex-direction: column;   
    gap: 5px;
    text-align: center;
  }

  .footer-about,
  .footer-links-group,
  .footer-contact {
    max-width: 100%;
  }
}
.contact-link {
  color: inherit; /* Maintains the same color as other text */
  text-decoration: none;
  transition: color 0.2s ease;
}

.contact-link:hover {
  color: #b78d65; /* Your brand's accent color */
  text-decoration: underline;
}

.icon1 {
  width: 16px;
  height: 16px;
}

  
.decant-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background-color: #6d4c41;
  color: white;
  padding: 5px 10px;
  border-radius: 4px;
  font-size: 14px;
  z-index: 1;
}

.decant-original-info {
  font-size: 0.9em;
  color: #666;
  margin-top: 5px;
}






.card-slider {
  overflow: hidden;
}

.card-slide {
  display: none;
  animation: fade 1s ease-in-out;
}

.card-slide.active {
  display: block;
}

@keyframes fade {
  from { opacity: 0; }
  to { opacity: 1; }
}

.card-dots {
  text-align: center;
  margin-top: 15px;
}

.card-dots .dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  background: #5B455E;
  border-radius: 50%;
  margin: 0 5px;
  opacity: 0.4;
  cursor: pointer;
}

.card-dots .dot.active {
  opacity: 1;
}




/* Loading Screen Style */
#loading-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  transition: opacity 0.6s ease, visibility 0.6s;
}

/* Progress Bar (New) */
#loading-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: 3px;
  background-color: #5B455E; /* Blue bar (change color as needed) */
  z-index: 10000;
  transition: width 0.5s ease;
}

#loading-screen.hidden {
  opacity: 0;
  visibility: hidden;
}

/* Logo Animation (Kept Your Existing Styles) */
.loading-logo {
  width: 150px;
  height: auto;
  animation: pulse 1.5s infinite ease-in-out;
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.05);
    opacity: 0.8;
  }
}


.summer-btn {
  background-color: #5B455E; /* deep purple */
  color: #fff;
  border: none;
  border-radius: 1px;
  font-size: 1rem;
  cursor: pointer;
  margin: 30px auto;
  display: block;
  transition: background-color 0.3s ease, transform 0.2s ease;
  height: 45px;
  width: 200px;
  font-size: 17px;
}

.summer-btn{
    background-color: #5B455E; /* deep purple */
  color: #fff;
  border: none;
  border-radius: 1px;
  font-size: 1rem;
  cursor: pointer;
  margin: 30px auto;
  display: block;
  transition: background-color 0.3s ease, transform 0.2s ease;
  height: 45px;
  width: 200px;
  font-size: 17px;
}
.summer-btn:hover {
  background-color: #46324A;
  transform: scale(1.05);
}


.location-container {
  background-color: #fefefe;
  width: 100%;
  max-width: 500px; /* Max width to maintain good look on large screens */
  margin: 55px auto;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
 
}

.location-container h3 {
  color: #5B455E;
  font-size: 1.6rem;
  margin-bottom: 8px;
}

.location-container p {
  font-size: 1rem;
  color: #fff;
  margin-bottom: 20px;
}

.map-embed iframe {
  width: 100%;
  height: 300px;
  border-radius: 10px;
  border: none;
}

.location{
  margin: auto;
}


.nav-cart-wrapper {
  position: relative;
  display: inline-block;
}

.cart-count-badge {
  position: absolute;
  top: -10px;
  right: -4px;
  font-size: 17px;
  color: #333; /* Deep purple from your theme */
  font-family: Arial, Helvetica, sans-serif;
}


/* HERO SLIDER BASE */
#search-overlay.hero-slider {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

/* INDIVIDUAL SLIDE */
.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  z-index: 0;
  transition: opacity 0.8s ease-in-out;
}

.hero-slide.active {
  opacity: 1;
  z-index: 1;
}

/* BACKGROUND IMAGE */
.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(60%);
}

/* TEXT OVERLAY */
.hero-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  text-align: center;
  max-width: 700px;
  padding: 20px 30px;
  background: rgba(0, 0, 0, 0.5); /* dark translucent background */
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
}

.hero-text h1 {
  font-size: 48px;
  font-family: 'Playfair Display', serif;
  margin-bottom: 20px;
  color: #fff;
}

.hero-text p {
  font-size: 18px;
  color: #eee;
  margin-bottom: 30px;
}


/* BUTTON */
.hero-btn {
  padding: 12px 38px;
  font-size: 15px;
  background-color: #5B455E;
  color: white;
  border: none;
  cursor: pointer;
  transition: background 0.3s ease;
}

.hero-btn:hover {
  background-color: #b78d65;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .hero-text h1 {
    font-size: 32px;
  }
  .hero-text p {
    font-size: 16px;
  }
  .hero-btn {
    font-size: 14px;
    padding: 10px 24px;
  }
}



/* Language toggle container */
.language-toggle {
  margin-top: 25px;
  padding: 20px;
  border-top: 1px solid #eee;
  display: flex;
  justify-content: center;
  gap: 14px;
}

/* Language buttons */
.lang-btn {
  padding: 12px 22px;
  border: none;
  background: linear-gradient(135deg, #ffffff, #f9f6fa);
  color: #5B455E;
  border-radius: 30px;
  cursor: pointer;
  font-family: 'Montserrat', sans-serif;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.6px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

/* Shine effect on hover */
.lang-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 200%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(255,255,255,0.5),
    transparent
  );
  transition: all 0.6s ease;
}

.lang-btn:hover::before {
  left: 100%;
}

/* Hover glow */
.lang-btn:hover {
  background: linear-gradient(135deg, #5B455E, #7a5f7d);
  color: #fff;
  box-shadow: 0 6px 18px rgba(91,69,94,0.4);
  transform: translateY(-3px) scale(1.03);
}

/* Active / selected state */
.lang-btn.active {
  background: linear-gradient(135deg, #5B455E, #b67c72);
  color: #fff;
  box-shadow: 0 6px 20px rgba(91,69,94,0.5);
  transform: translateY(-2px);
}
