* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

body {
  background-color: #fff;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 40px;
  border-bottom: 1.5px solid black;
}

.nav-left {
  display: flex;
  align-items: center;
  gap: 50px;
}
.nav-left  li a {
  text-decoration: none;
  color: #111;
  font-size: 15px;
  font-weight: 500;
}



.logo {
  width: 13vh;
  cursor: pointer;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 25px;
}

.nav-links a {
  text-decoration: none;
  color: #111;
  font-size: 17px;
  font-weight: 500;
  transition: color 0.3s;
}

.nav-links a:hover {
  color: #796060;
}

.nav-center {
  flex: 1;
  display: flex;
  justify-content: center;
}

.search-box {
  display: flex;
  align-items: center;
  background: #f7f7f7;
  padding: 8px 14px;
  border-radius: 6px;
  width: 490px;
  border: 1.5px solid black;
}

.search-box input {
  border: none;
  outline: none;
  background: none;
  width: 100%;
  font-size: 15px;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 22px;
}

.nav-right a {
  text-decoration: none;
  color: #111;
  font-size: 15px;
  font-weight: 500;
}

.bags-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
}

.bags-header h1 {
    padding: 20px;
  font-size: 3rem;
  font-weight: 500;
  letter-spacing: 2px;
}

.bags-nav {
  display: flex;
  gap: 1rem;
}

.nav-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid #ccc;
  background: none;
  cursor: pointer;
  font-size: 1.1rem;
  transition: all 0.3s ease;
}

.nav-btn:hover {
  background-color: #111;
  color: #fff;
}


.bags-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}


.bag-card {
  position: relative;
  overflow: hidden;
  border-radius: 6px;
}

.bag-card img {
  width: 100%;
  height: 60vh;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.bag-card:hover img {
  transform: scale(1.05);
}

.bag-overlay {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: white;
}

.bag-overlay p {
  font-size: 1.3rem;
  font-weight: 500;
  text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

.circle {
  width: 38px;
  height: 38px;
  border: 1px solid white;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease;
}

.circle:hover {
  background-color: white;
  color: #111;
}

.filter-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  border-bottom: 1px solid #e5e5e5;
  padding-bottom: 1rem;
  margin-bottom: 2rem;
  margin: 4vh;
}

.filters-left {
  display: flex;
  align-items: center;
  gap: 1.8rem;
  flex-wrap: wrap;
}

.filter-item {
  font-size: 0.9rem;
  font-weight: 500;
  color: #111;
  display: flex;
  align-items: center;
  gap: 4px;
  cursor: pointer;
  transition: color 0.2s ease;
}

.filter-item i {
  font-size: 0.7rem;
}

.filter-item:hover {
  color: #555;
}

.switch {
  position: relative;
  display: inline-block;
  width: 38px;
  height: 20px;
  margin-left: 6px;
}

.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #e6e6e6;
  border-radius: 20px;
  transition: 0.3s;
}

.slider:before {
  position: absolute;
  content: "";
  height: 14px;
  width: 14px;
  left: 3px;
  bottom: 3px;
  background-color: white;
  border-radius: 50%;
  transition: 0.3s;
  box-shadow: 0 1px 2px rgba(0,0,0,0.2);
}

input:checked + .slider {
  background-color: #111;
}

input:checked + .slider:before {
  transform: translateX(18px);
}

.filters-right {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.item-count {
  font-size: 0.9rem;
  color: #555;
}

.filter-sort {
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 5px;
}

.filter-sort i {
  font-size: 0.7rem;
}

.duffel-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1.5rem;
  padding: 15px;
}

.duffel-card {
  display: flex;
  flex-direction: column;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.duffel-card:hover {
  transform: translateY(-5px);
}

.duffel-img {
  position: relative;
  background-color: #f8f8f8;
  border-radius: 4px;
  overflow: hidden;
}

.duffel-img img {
  width: 100%;
  height: auto;
  display: block;
}


.duffel-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background-color: #444;
  color: #fff;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 20px;
}

.duffel-info {
  margin-top: 10px;
}

.duffel-info h3 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 4px;
}

.duffel-info p {
  font-size: 0.85rem;
  color: #555;
  margin-bottom: 4px;
}

.duffel-price {
  font-size: 0.95rem;
  font-weight: 500;
}

.duffel-img img:hover {
  transform: scale(1.03);
  transition: transform 0.3s ease;
}


.footer {
  background-color: #fff;
  padding: 3rem 5%;
  border-top: 1px solid #e5e5e5;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3rem;
  margin-bottom: 2rem;
}

.footer-column h3 {
  font-size: 0.9rem;
  letter-spacing: 2px;
  font-weight: 600;
  margin-bottom: 1rem;
}

.footer-column ul {
  list-style: none;
}

.footer-column ul li {
  margin-bottom: 0.6rem;
}

.footer-column ul li a {
  text-decoration: none;
  color: #222;
  font-size: 0.95rem;
  transition: color 0.3s ease;
}

.footer-column ul li a:hover {
  color: #555;
}

.footer-column.wide {
  grid-column: span 1;
}

.store-section {
  margin-bottom: 2rem;
}

.store-links {
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 2px;
}

.newsletter h3 {
  font-size: 0.9rem;
  letter-spacing: 2px;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.newsletter p {
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

.newsletter-input {
  display: flex;
  gap: 0.5rem;
}

.newsletter-input input {
  flex: 1;
  padding: 0.8rem;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 0.9rem;
}

.newsletter-input button {
  padding: 0.8rem 1.2rem;
  background-color: #111;
  color: #fff;
  border: none;
  border-radius: 4px;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s ease;
  width: 20vh;
}

.newsletter-input button:hover {
  background-color: #333;
}

.footer-bottom {
  border-top: 1px solid #e5e5e5;
  padding-top: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.social-icons a {
  color: #111;
  font-size: 1.2rem;
  margin-right: 1.5rem;
  transition: color 0.3s ease;
}

.social-icons a:hover {
  color: #555;
}

.currency {
  font-size: 1.2rem;
}
@media (max-width: 1024px) {
  .navbar {
    padding: 10px 25px;
  }

  .nav-left {
    gap: 30px;
  }

  .search-box {
    width: 350px;
  }

  .bag-card img {
    height: 50vh;
  }

  .footer-container {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .navbar {
    flex-direction: column;
    align-items: flex-start;
    padding: 15px 20px;
    gap: 15px;
  }

  .nav-left {
    display: none;
  }

  .nav-right {
    display: none;
  }

  .nav-center {
    width: 100%;
    justify-content: center;
  }

  .logo {
    width: 12vh;
  }

  .search-box {
    width: 100%;
  }

  .bags-header {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
  }

  .bags-header h1 {
    font-size: 2.2rem;
    padding: 10px 0;
  }

  .bags-container {
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
  }

  .bag-card img {
    height: 45vh;
  }

  .filter-bar {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    margin: 2vh 20px;
  }

  .duffel-grid {
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  }

  .footer-container {
    grid-template-columns: repeat(2, 1fr);
  }

  .newsletter-input {
    flex-direction: column;
  }

  .newsletter-input button {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .navbar {
    flex-direction: column;
    align-items: flex-start;
    padding: 10px 15px;
    gap: 10px;
  }

  .logo {
    width: 10vh;
  }

  .nav-left,
  .nav-right {
    display: none;
  }

  .nav-center {
    width: 100%;
  }

  .search-box {
    width: 100%;
    padding: 6px 10px;
    border-radius: 5px;
  }

  .bags-header {
    flex-direction: column;
    align-items: flex-start;
    padding: 0 10px;
  }

  .bags-header h1 {
    font-size: 1.8rem;
  }

  .bags-container {
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 1rem;
    padding: 10px;
  }

  .bag-card img {
    width: 100%;
    height: auto;
  }

  .filter-bar {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    margin: 2vh 10px;
  }

  .filters-left,
  .filters-right {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .duffel-grid {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
  }

  .footer-container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }

  .newsletter-input {
    flex-direction: column;
  }

  .newsletter-input button {
    width: 100%;
  }

  .social-icons a {
    margin-right: 10px;
  }
}


