.list-card .card-item.visa-payment {
  display: flex;
  align-items: center;
}

.content-slider .heading, .content-slider .sub {
  color: white !important;
}

/* Make the highlighted menu stand out */
.box-nav-menu {
  display: flex;
  flex-wrap: wrap;
  padding: 0;
  list-style: none;
  margin: 0 auto;
  gap: 1rem;
}

.box-nav-menu .menu-item {
  text-align: center;
}

.highlighted-menu {
  background: #fff0f5; /* soft light background for attention */
  padding: 30px 24px;
  border-radius: 12px;
  box-shadow: 0 0 10px rgba(255, 0, 100, 0.2);
}

.highlighted-menu .item-link {
  background: linear-gradient(135deg, #8F4A57, #ff4b2b); /* vibrant gradient */
  color: #fff !important;
  padding: 12px 24px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  animation: pulse 2s infinite;
}

.highlighted-menu .item-link:hover {
  transform: scale(1.05);
  box-shadow: 0 0 20px rgba(255, 75, 43, 0.6);
}

/* Optional: Add a glowing border or shimmer effect */
.highlighted-menu .item-link::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255,255,255,0.15) 20%, transparent 70%);
  animation: rotateGlow 5s linear infinite;
  z-index: 0;
}

.highlighted-menu .item-link span,
.highlighted-menu .item-link {
  position: relative;
  z-index: 1;
}

/* Pulse animation */
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(255, 75, 43, 0.4); }
  70% { box-shadow: 0 0 0 15px rgba(255, 75, 43, 0); }
  100% { box-shadow: 0 0 0 0 rgba(255, 75, 43, 0); }
}

/* Glow rotation animation */
@keyframes rotateGlow {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.card-get-in-touch {
  background-color: #f6f1ed; /* matches the beige container */
}

.card-get-in-touch .form-control:focus {
  border-color: #ff4b2b;
  box-shadow: 0 0 0 0.2rem rgba(255, 75, 43, 0.25);
}

.card-get-in-touch .btn-danger {
  background-image: linear-gradient(to right, #ff416c, #ff4b2b);
  border: none;
  transition: transform 0.2s ease-in-out;
}

.card-get-in-touch .btn-danger:hover {
  transform: scale(1.03);
}

#page-loader {
  position: fixed;
  inset: 0;
  background-color: #302727b0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 0.5s ease-in-out, visibility 0.5s ease-in-out;
}

.loader-content {
  text-align: center;
  animation: fadeIn 0.6s ease;
}

.loader-logo {
  width: 90px;
  animation: pulseLogo 1.6s ease-in-out infinite;
  margin-bottom: 20px;
}

.loader-ring {
  width: 40px;
  height: 40px;
  border: 4px solid #f0f0f0;
  border-top-color: #ff3b3f;
  border-radius: 50%;
  animation: rotate 1s linear infinite;
  margin: 0 auto;
}

.loader-text {
  margin-top: 16px;
  font-size: 14px;
  color: #ffffff;
  font-family: 'Poppins', sans-serif;
}

@keyframes rotate {
  to {
    transform: rotate(360deg);
  }
}

@keyframes pulseLogo {
  0%, 100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.07);
    opacity: 0.75;
  }
}

@keyframes fadeIn {
  from { opacity: 0; transform: scale(0.95); }
  to { opacity: 1; transform: scale(1); }
}

.text-gradient {
  background: linear-gradient(to right, #ff416c, #ff4b2b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.text-highlight {
  color: #222;
  position: relative;
}

.text-highlight::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -5px;
  height: 4px;
  width: 100%;
  background: #ff4b2b;
  border-radius: 2px;
  animation: underlineSlide 1.2s ease-in-out;
}

@keyframes underlineSlide {
  from {
    width: 0;
    opacity: 0;
  }
  to {
    width: 100%;
    opacity: 1;
  }
}

.sale-banner {
  background: linear-gradient(90deg, #FF416C, #FF4B2B);
  font-size: 1.1rem;
  position: relative;
  z-index: 1050;
  padding: 10px 24px;
  text-align: center;
}

/* Responsive adjustments */

@media (max-width: 576px) {
  .header-default .header-bottom .menu-item {
    padding: 4px 0px !important;
  }

  .highlighted-menu .item-link span {
    font-size: 13px !important;
  }
}

.product-demo-section {
    margin-top: 50px;
    padding: 20px 0;
    text-align: center;
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
    max-width: 100%;
    border-radius: 8px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}
.video-wrapper iframe {
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 8px;
}

.no-products svg {
    animation: bounce 1.5s infinite;
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-8px);
    }
}

/* Loader Container */
.loader-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    width: 100%;
    background: #050505a1;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
}

/* Loader Spinner */
.loader {
    width: 60px;
    height: 60px;
    border: 6px solid #ddd;
    border-top: 6px solid #3498db;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

/* Animation */
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.plan-container {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 15px 0;
  justify-content: center;
}

.plan-card {
  flex: 1 1 calc(33.33% - 10px); /* Default 3 per row */
  min-width: 100px;
  max-width: 140px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
  overflow: hidden;
  text-align: center;
  font-family: 'Poppins', sans-serif;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.plan-card:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 8px 16px rgba(0,0,0,0.2);
}

.plan-card.active {
  border: 2px solid #ff6f61;
  box-shadow: 0 6px 14px rgba(255,111,97,0.4);
}

.plan-header {
  background: linear-gradient(270deg, #ff6f61, #ff4b2b, #ff6f61);
  background-size: 300% 300%;
  color: white;
  padding: 6px;
  font-weight: 600;
  font-size: 13px;
  animation: gradientMove 3s ease infinite;
}

.plan-price {
  padding: 8px;
  font-size: 14px;
  font-weight: 500;
  color: #222;
}

@keyframes gradientMove {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* 📱 Mobile Adjustments */
@media (max-width: 576px) {
  .plan-card {
    flex: 1 1 calc(45% - 10px); /* 2 per row on very small screens */
    max-width: 130px;
  }
}