      .navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #ffffff;
  padding: 1rem 1.5rem;
  color: #333333;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  
}

.logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  color: #ff6f61;
  animation: slideInLeft 1s ease-out;
  height:50px;
  width: auto; /* Maintain aspect ratio */
  display: block;
}


.nav-links {
  display: flex;
  gap: 2rem;
}

.nav-links a {
  color: #333;
  text-decoration: none;
  font-weight: 600;
  position: relative;
  transition: color 0.3s;
}

.nav-links a::after {
  content: '';
  position: absolute;
  width: 0%;
  height: 2px;
  background: #ff6f61;
  left: 0;
  bottom: -5px;
  transition: width 0.3s;
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-links a:hover {
  color: #ff6f61;
}

/* ========== Hamburger (Mobile Nav) ========== */
.hamburger {
  display: none;
  font-size: 1.8rem;
  cursor: pointer;
  color: #ff6f61;
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    flex-direction: column;
    background-color: #ffffff;
    position: absolute;
    top: 100%;
    right: 0;
    width: 100%;
    text-align: center;
    padding: 1rem 0;
    animation: slideDown 0.5s ease-out;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  }

  .nav-links.active {
    display: flex;
  }

  .hamburger {
    display: block;
  }
}

.logo-img {
  height: 60px;
  width: auto;
  animation: slideInLeft 1s ease-out;
}


.site-footer {
  background-color: #2c3e50;
  color: #ecf0f1;
  padding: 40px 20px 20px;
  font-family: 'Segoe UI', sans-serif;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-container > div {
  flex: 1 1 250px;
}

.site-footer h3 {
  font-size: 18px;
  margin-bottom: 12px;
  color: #ffffff;
}

.site-footer p, .site-footer a {
  font-size: 14px;
  color: #bdc3c7;
  line-height: 1.6;
  text-decoration: none;
}

.site-footer a:hover {
  color: #ffffff;
  text-decoration: underline;
}

.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 8px;
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid #445b6d;
  font-size: 13px;
  color: #95a5a6;
}



 .popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 999;
  }

  .popup-content {
    background: #fff;
    padding: 30px 40px;
    border-radius: 12px;
    width: 90%;
    max-width: 400px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
    position: relative;
    animation: popupFadeIn 0.3s ease-out;
  }

  @keyframes popupFadeIn {
    from { opacity: 0; transform: scale(0.95); }
    to { opacity: 1; transform: scale(1); }
  }

  .popup-content h3 {
    margin-top: 0;
    font-size: 1.4rem;
    color: #333;
  }

  .popup-content input {
    width: 100%;
    margin-top: 15px;
    padding: 10px 12px;
    border-radius: 8px;
    border: 1px solid #ccc;
    font-size: 1rem;
  }

  .popup-content button {
    margin-top: 20px;
    width: 100%;
    padding: 12px;
    background: #007bff;
    color: white;
    font-size: 1rem;
    font-weight: bold;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.3s;
  }

  .popup-content button:hover {
    background: #0056b3;
  }

  .close-btn {
    position: absolute;
    top: 12px;
    right: 16px;
    font-size: 1.5rem;
    cursor: pointer;
    color: #aaa;
  }

  .close-btn:hover {
    color: #000;
  }
 
 
/* Modal background overlay */
/* Modal overlay */
.modal {
  display: none;
  position: fixed;
  z-index: 9999;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.6);
  animation: fadeIn 0.3s ease-in-out;
}

/* Modal content box */
.modal-content {
  position: relative;
  margin: 5vh auto;
  padding: 40px;
  width: 90%;
  max-width: 900px;
  height: 80vh;
  background: linear-gradient(to bottom right, #ffffff, #f8f8f8);
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
  overflow-y: auto;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  animation: slideUp 0.4s ease;
}

/* Close icon */
.close {
  position: absolute;
  top: 20px;
  right: 25px;
  font-size: 28px;
  font-weight: bold;
  color: #666;
  cursor: pointer;
  transition: color 0.3s ease;
}
.close:hover {
  color: #000;
}

/* Typography */
.modal-content h2 {
  margin-top: 0;
  font-size: 28px;
  color: #2c3e50;
  border-bottom: 2px solid #e0e0e0;
  padding-bottom: 10px;
}

.modal-content h3 {
  color: #34495e;
  margin-top: 20px;
}

.modal-content p, 
.modal-content li {
  line-height: 1.7;
  color: #555;
  margin-bottom: 12px;
}

.modal-content ul {
  padding-left: 20px;
}

/* Scrollbar styling (optional) */
.modal-content::-webkit-scrollbar {
  width: 8px;
}
.modal-content::-webkit-scrollbar-thumb {
  background-color: #ccc;
  border-radius: 4px;
}

/* Animations */
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes slideUp {
  from { transform: translateY(40px); opacity: 0; }
  to   { transform: translateY(0); opacity: 1; }
}

/* Responsive adjustments */
@media screen and (max-width: 600px) {
  .modal-content {
    width: 85%;
    height: 80vh;
    padding: 25px;
  }
}


 .saddlery-header {
      text-align: center;
      padding: 60px 20px 30px;
      background: linear-gradient(to right, #e3f2fd, #fce4ec);
      animation: fadeInDown 0.8s ease-out;
    }

    @keyframes fadeInDown {
      from { opacity: 0; transform: translateY(-30px); }
      to { opacity: 1; transform: translateY(0); }
    }

    .saddlery-header h1 {
      font-family: 'Playfair Display', serif;
      font-size: 2.8rem;
      color: #222;
    }

    .saddlery-header p {
      font-size: 1.2rem;
      color: #555;
      margin-top: 10px;
    }

    .saddlery-tabs {
      margin-top: 30px;
    }

    .tab-btn {
      padding: 12px 30px;
      margin: 0 10px;
      border: none;
      background-color: #ddd;
      cursor: pointer;
      font-weight: 600;
      border-radius: 30px;
      transition: background 0.3s, transform 0.2s;
    }

    .tab-btn.active {
      background-color: #007bff;
      color: white;
      transform: scale(1.05);
    }

   

    footer.site-footer {
      background: #222;
      color: white;
      text-align: center;
      padding: 30px 20px;
      margin-top: 60px;
    }

    footer.site-footer p {
      font-size: 0.95rem;
      color: #ccc;
    }

   @media (max-width: 768px) {
  header.navbar {
    flex-direction: row;
    align-items: center;
  }

  .nav-links {
    margin-top: 10px;
  }

  .saddlery-header h1 {
    font-size: 2rem;
  }

  .tab-btn {
    padding: 10px 20px;
    margin: 5px;
  }
}



