@charset "UTF-8";
@import url("https://cdn.jsdelivr.net/npm/bootstrap@5.0.2/dist/css/bootstrap.min.css");
@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@200..700&display=swap");
@import url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/css/all.min.css");
body {
  font-family: "Roboto", sans-serif;
  box-sizing: border-box;
}

.main-header {
  display: flex;
  align-items: center;
  padding: 10px 20px;
  background-color: #f7f8f9;
  border-bottom: 1px solid #ebeef0;
}
.main-header .logo {
  width: 100px;
  height: 40px;
  margin-right: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.main-header .logo img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
.main-header .location-selector {
  display: flex;
  align-items: center;
  border: 2px solid #00a49f;
  border-radius: 4px;
  padding: 8px 12px;
  margin-right: 16px;
  cursor: pointer;
  color: #002f34;
  background-color: white;
}
.main-header .location-selector input {
  margin: 0 8px;
  border: none;
  outline: none;
  width: 80px;
}
.main-header .location-selector i {
  color: #00a49f;
}
.main-header .search-container {
  display: flex;
  flex-grow: 1;
  margin-right: 16px;
}
.main-header .search-container .search-input {
  width: 100%;
  padding: 10px 12px;
  border: 2px solid #002f34;
  border-right: none;
  border-radius: 4px 0 0 4px;
  outline: none;
}
.main-header .search-container .search-button {
  background-color: #002f34;
  border: none;
  border-radius: 0 4px 4px 0;
  color: white;
  padding: 0 16px;
  cursor: pointer;
}
.main-header .search-container .search-button:hover {
  background-color: #00484e;
}
.main-header .user-actions {
  display: flex;
  align-items: center;
}
.main-header .user-actions > div {
  margin-right: 24px;
  cursor: pointer;
}
.main-header .user-actions .language-selector {
  display: flex;
  align-items: center;
  font-weight: bold;
  color: #002f34;
}
.main-header .user-actions .language-selector i {
  margin-left: 5px;
}
.main-header .user-actions .favorites {
  font-size: 20px;
  color: var(--primary-color);
}
.main-header a.login {
  text-decoration: none !important;
  color: var(--primary-color);
  font-size: 16px;
  font-weight: 500;
}

.categories-bar {
  display: flex;
  align-items: center;
  padding: 10px 0px;
  background-color: white;
  border-bottom: 1px solid #ebeef0;
}
.categories-bar .all-categories {
  font-size: 14px;
  font-weight: bold;
  color: #002f34;
  margin-left: 40px;
  cursor: pointer;
}
.categories-bar .all-categories i {
  margin-left: 5px;
}
.categories-bar nav ul {
  display: flex;
  list-style: none;
  margin-bottom: 0px;
}
.categories-bar nav ul li {
  margin-right: 24px;
  line-height: 20px;
}
.categories-bar nav ul li a {
  font-size: 14px;
  margin-top: 4px;
  text-decoration: none;
  color: #002f34;
  transition: color 0.2s;
}
.categories-bar nav ul li a:hover {
  color: #00a49f;
}

.banner,
.ad {
  margin: 16px 0;
  text-align: center;
}
.banner .full-width-banner,
.ad .full-width-banner {
  position: relative;
  width: 100%;
  height: auto;
  border-radius: 4px;
}
.banner .custom-nav,
.ad .custom-nav {
  position: absolute;
  width: 100%;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  display: flex;
  justify-content: space-between;
  padding: 0 20px;
}
.banner .custom-prev,
.banner .custom-next,
.ad .custom-prev,
.ad .custom-next {
  background: rgba(255, 255, 255, 0.7);
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}
.banner .custom-prev:hover,
.banner .custom-next:hover,
.ad .custom-prev:hover,
.ad .custom-next:hover {
  background: rgba(255, 255, 255, 0.9);
}
.banner .custom-prev i,
.banner .custom-next i,
.ad .custom-prev i,
.ad .custom-next i {
  font-size: 18px;
  color: #333;
}

.location-dropdown {
  border-radius: 8px;
  border: none;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  overflow: hidden;
  min-width: 200px;
}

.location-option {
  padding: 12px 16px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.location-option span {
  font-size: 15px;
  color: #002f34;
}
.location-option i {
  color: #00a49f;
  visibility: hidden;
}
.location-option:hover {
  background-color: #f8f9fa;
}
.location-option.selected i {
  visibility: visible;
}

.modal-dialog {
  margin-right: auto;
  margin-left: auto;
  max-width: 400px;
}

/* Login Modal Styling */
.login-modal {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}
.login-modal .modal-dialog {
  max-width: 400px;
}
.login-modal .modal-header {
  padding: 12px 15px;
  justify-content: space-between;
  background-color: white;
  border: none;
  position: relative;
}
.login-modal .modal-header .btn-close {
  font-size: 12px;
  opacity: 0.7;
  transition: opacity 0.2s ease;
  margin: 0;
  padding: 12px;
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 10;
}
.login-modal .modal-header .btn-close:hover {
  opacity: 1;
  transform: scale(1.1);
}
.login-modal .modal-body {
  padding: 0 30px 30px;
  background-color: white;
}
.login-modal .login-title {
  font-size: 20px;
  font-weight: 500;
  color: #002f34;
  margin-bottom: 25px;
  text-align: center;
  line-height: 1.4;
  padding-top: 15px;
}
.login-modal .login-form-container {
  padding: 0 10px;
}
.login-modal .btn-phone {
  background-color: #002f34;
  color: white;
  font-weight: 500;
  padding: 12px 16px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  transition: all 0.3s ease;
  font-size: 15px;
}
.login-modal .btn-phone i {
  margin-right: 10px;
  font-size: 16px;
}
.login-modal .btn-phone:hover {
  background-color: #00424a;
  transform: translateY(-1px);
  box-shadow: 0 4px 8px rgba(0, 47, 52, 0.2);
}
.login-modal .btn-phone:active {
  transform: translateY(0);
  box-shadow: none;
}
.login-modal .btn-google {
  background-color: white;
  color: #002f34;
  font-weight: 500;
  padding: 12px 16px;
  border-radius: 4px;
  border: 1px solid #e0e0e0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  font-size: 15px;
}
.login-modal .btn-google .google-icon {
  width: 18px;
  height: 18px;
  margin-right: 10px;
}
.login-modal .btn-google:hover {
  background-color: #f8f9f9;
  border-color: #c8c8c8;
  transform: translateY(-1px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
}
.login-modal .btn-google:active {
  transform: translateY(0);
  box-shadow: none;
}
.login-modal .or-divider {
  text-align: center;
  position: relative;
  margin: 24px 0;
}
.login-modal .or-divider::before, .login-modal .or-divider::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 45%;
  height: 1px;
  background-color: #e0e0e0;
}
.login-modal .or-divider::before {
  left: 0;
}
.login-modal .or-divider::after {
  right: 0;
}
.login-modal .or-divider span {
  display: inline-block;
  background-color: white;
  padding: 0 15px;
  position: relative;
  z-index: 1;
  color: #666;
  font-size: 14px;
  font-weight: 500;
}
.login-modal .login-form .form-control {
  padding: 12px 15px;
  height: auto;
  border-radius: 4px;
  border: 1px solid #e0e0e0;
  margin-bottom: 16px;
  font-size: 15px;
  transition: all 0.3s ease;
}
.login-modal .login-form .form-control:focus {
  border-color: #23e5db;
  box-shadow: 0 0 0 3px rgba(35, 229, 219, 0.15);
  outline: none;
}
.login-modal .login-form .form-control::-moz-placeholder {
  color: #999;
}
.login-modal .login-form .form-control::placeholder {
  color: #999;
}
.login-modal .btn-login {
  background-color: #002f34;
  color: white;
  font-weight: 500;
  padding: 12px 16px;
  border-radius: 4px;
  border: none;
  transition: all 0.3s ease;
  font-size: 15px;
}
.login-modal .btn-login:hover {
  background-color: #00424a;
  transform: translateY(-1px);
  box-shadow: 0 4px 8px rgba(0, 47, 52, 0.2);
}
.login-modal .btn-login:active {
  transform: translateY(0);
  box-shadow: none;
}
.login-modal .btn-login:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(0, 47, 52, 0.2);
}
.login-modal .login-footer {
  margin-top: 24px;
}
.login-modal .login-footer .text-muted {
  color: #777;
  margin-bottom: 10px;
  font-size: 13px;
}
.login-modal .login-footer .terms-text {
  color: #777;
  font-size: 12px;
  line-height: 1.5;
}
.login-modal .login-footer .terms-text a {
  color: #002f34;
  text-decoration: none;
  font-weight: 500;
}
.login-modal .login-footer .terms-text a:hover {
  text-decoration: underline;
}

@media screen and (max-width: 767px) {
  .homepage .categories .category {
    width: 33.33%;
    padding: 8px;
  }
  .homepage .categories .category .pic {
    width: 50px;
    height: 50px;
  }
  .homepage .section .header,
  .homepage .dynamic-container .header {
    padding: 0 10px;
  }
  .homepage .section .header h4,
  .homepage .dynamic-container .header h4 {
    font-size: 18px;
  }
  .homepage .slider .slider-wrapper {
    gap: 10px;
    padding: 0 5px;
  }
  .homepage .slider .card {
    width: calc(100vw - 40px);
  }
  .homepage .slider .card .card-link .card .card-image {
    height: 180px;
  }
  .homepage .slider .card .card-link .card .card-body {
    padding: 10px;
  }
  .homepage .slider .card .card-link .card .card-body h5 {
    font-size: 14px;
    margin-bottom: 5px;
  }
  .homepage .slider .card .card-link .card .card-body .price {
    font-size: 16px;
  }
  .homepage .slider .card .card-link .card .card-body .category {
    font-size: 11px;
  }
  .homepage .row-cols-4 {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    padding: 0 10px;
  }
  .homepage .row-cols-4 .card .card-link .card .card-image {
    height: 160px;
  }
  .image .image-container {
    height: 300px;
  }
  .image .navigation-arrows .nav-arrow {
    width: 40px;
    height: 40px;
  }
  .image .navigation-arrows .nav-arrow.left {
    margin-left: 5px;
  }
  .image .navigation-arrows .nav-arrow.right {
    margin-right: 5px;
  }
  .image .navigation-arrows .nav-arrow i {
    font-size: 24px;
  }
  .image .thumbnail-nav {
    overflow-x: auto;
    justify-content: flex-start;
    padding: 10px 5px;
  }
  .image .thumbnail-nav .thumbnail {
    flex: 0 0 70px;
    height: 50px;
    min-width: 70px;
  }
  .image .image-actions {
    top: 10px;
    right: 10px;
  }
  .image .image-actions .action-btn {
    width: 34px;
    height: 34px;
  }
  .image .image-actions .action-btn i {
    font-size: 16px;
  }
  .product-details {
    padding: 15px;
  }
  .product-details h1 {
    font-size: 20px;
    margin-bottom: 10px;
  }
  .product-details .badge {
    padding: 4px 8px;
    font-size: 12px;
  }
  .olx-header {
    padding: 8px 10px;
  }
  .olx-header .main-header {
    flex-wrap: wrap;
    gap: 10px;
  }
  .olx-header .logo h3 {
    font-size: 18px;
  }
  .olx-header .search-container {
    order: 3;
    width: 100%;
    margin-top: 10px;
  }
  .olx-header .sell-button {
    padding: 6px 12px;
    font-size: 14px;
  }
}
@media screen and (max-width: 575px) {
  .homepage .categories .category {
    width: 50%;
  }
  .homepage .slider .card {
    width: calc(100vw - 30px);
  }
  .homepage .row-cols-4 {
    grid-template-columns: 1fr;
  }
  .homepage .row-cols-4 .card .card-link .card .card-image {
    height: 180px;
  }
  .image .image-container {
    height: 250px;
  }
  .banner .custom-nav button {
    width: 30px;
    height: 30px;
  }
}
.homepage .card .card-link .card {
  box-shadow: none;
}
.homepage .card .card-link .card:hover {
  box-shadow: none;
}

html,
body {
  -webkit-overflow-scrolling: touch;
}

.slider-controls button,
.custom-nav button,
.card-link,
.category,
.thumbnail {
  touch-action: manipulation;
}

.homepage .categories {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.homepage .categories .category {
  width: 20%;
  padding: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  font-weight: 500;
  text-decoration: none !important;
  color: #002f34;
  cursor: pointer;
  transition: transform 0.2s ease;
}
.homepage .categories .category:hover {
  transform: translateY(-3px);
  color: #00a49f;
}
.homepage .categories .category .pic {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 8px;
  background-color: #f2f4f5;
  transition: all 0.2s ease;
}
.homepage .categories .category .pic img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.homepage .categories .category:hover .pic {
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transform: scale(1.05);
}
.homepage #banner {
  margin: 0;
}
.homepage #banner .slick-prev:before,
.homepage #banner .slick-next:before {
  display: none;
}
.homepage #banner .top-banner-slider {
  position: relative;
}
.homepage #banner .top-banner-slider i {
  display: inline-block;
}
.homepage #banner .top-banner-slider .custom-prev {
  border: none;
  height: 38px;
  width: 38px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  z-index: 99;
}
.homepage #banner .top-banner-slider .custom-next {
  border: none;
  height: 38px;
  width: 38px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  border-radius: 50%;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  z-index: 99;
}
.homepage .section {
  margin: 30px 0;
}
.homepage .section .header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}
.homepage .section .header h4 {
  font-size: 22px;
  font-weight: bold;
  color: #002f34;
  margin: 0;
}
.homepage .section .header .slider-controls {
  display: flex;
  gap: 10px;
}
.homepage .section .header .slider-controls button {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid #e0e0e0;
  background-color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
}
.homepage .section .header .slider-controls button:hover {
  background-color: #f2f4f5;
}
.homepage .section .header .slider-controls button i {
  color: #002f34;
  font-size: 14px;
}
.homepage .section .slider {
  position: relative;
  overflow: hidden;
}
.homepage .section .slider .slider-wrapper {
  display: flex;
  transition: transform 0.5s ease;
  gap: 16px;
}
.homepage .section .slider .card {
  flex: 0 0 auto;
  width: 300px;
  border-radius: 4px;
  overflow: hidden;
  background-color: white;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.05);
  margin-right: 16px;
  transition: all 0.3s ease;
}
.homepage .section .slider .card .card-link {
  text-decoration: none !important;
  display: block;
  height: 100%;
  width: 100%;
}
.homepage .section .slider .card .card-link .card {
  border: none;
  margin-bottom: 0;
}
.homepage .section .slider .card .card-link .card .card-image {
  position: relative;
  height: 200px;
  width: 100%;
  overflow: hidden;
}
.homepage .section .slider .card .card-link .card .card-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.homepage .section .slider .card .card-link .card .card-image .image-count {
  position: absolute;
  bottom: 8px;
  left: 8px;
  background-color: rgba(0, 0, 0, 0.5);
  color: white;
  padding: 2px 6px;
  border-radius: 4px;
  font-size: 12px;
}
.homepage .section .slider .card .card-link .card .card-body {
  padding: 12px;
}
.homepage .section .slider .card .card-link .card .card-body .category {
  font-size: 12px;
  color: #777;
  margin-bottom: 8px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.homepage .section .slider .card .card-link .card .card-body .category i {
  margin-right: 4px;
}
.homepage .section .slider .card .card-link .card .card-body h5 {
  font-size: 16px;
  font-weight: 500;
  color: #002f34;
  margin-bottom: 8px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.homepage .section .slider .card .card-link .card .card-body .price {
  font-size: 18px;
  font-weight: bold;
  color: #002f34;
}
.homepage .section .slider .card:hover {
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
.homepage .row-cols-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}
.homepage .row-cols-4 .col {
  width: 100%;
  padding: 0;
  flex: 0 0 auto;
  width: 100%;
  border-radius: 4px;
  overflow: hidden;
  background-color: white;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.05);
}
.homepage .row-cols-4 .col .card-link {
  text-decoration: none !important;
}
.homepage .row-cols-4 .col .card-link .card {
  border: none;
  margin-bottom: 0;
  width: 100%;
  box-shadow: none;
}
.homepage .row-cols-4 .col .card-link .card .card-image {
  position: relative;
  height: 200px;
}
.homepage .row-cols-4 .col .card-link .card .card-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.homepage .row-cols-4 .col .card-link .card .card-image .image-count {
  position: absolute;
  bottom: 8px;
  left: 8px;
  background-color: rgba(0, 0, 0, 0.5);
  color: white;
  padding: 2px 6px;
  border-radius: 4px;
  font-size: 12px;
}
.homepage .row-cols-4 .col .card-link .card .card-body {
  padding: 12px;
}
.homepage .row-cols-4 .col .card-link .card .card-body .category {
  font-size: 12px;
  color: #777;
  margin-bottom: 8px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.homepage .row-cols-4 .col .card-link .card .card-body .category i {
  margin-right: 4px;
}
.homepage .row-cols-4 .col .card-link .card .card-body h5 {
  font-size: 16px;
  font-weight: 500;
  color: #002f34;
  margin-bottom: 8px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.homepage .row-cols-4 .col .card-link .card .card-body .price {
  font-size: 18px;
  font-weight: bold;
  color: #002f34;
}
.homepage .row-cols-4 .col:hover {
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

body {
  overflow-x: hidden;
  width: 100%;
  max-width: 100%;
}

@media (max-width: 576px) {
  header {
    max-width: 100vw;
    overflow-x: hidden;
  }
  header .main-header {
    flex-direction: column;
    padding: 10px;
  }
  header .main-header .logo {
    margin-bottom: 10px;
    width: 100%;
    text-align: center;
  }
  header .main-header .search-container {
    width: 100%;
    margin: 10px 0;
  }
  header .main-header .user-actions {
    display: flex;
    justify-content: space-between;
    width: 100%;
  }
  header .main-header .user-actions .login {
    margin-right: 0;
  }
  header .main-header .user-actions .location {
    margin-left: 0;
  }
  header .categories-bar {
    display: none;
  }
  header .categories-bar nav {
    width: 100%;
    overflow-x: auto;
  }
  header .categories-bar nav ul {
    flex-wrap: nowrap;
    width: auto;
    white-space: nowrap;
  }
  header .categories-bar nav ul li {
    flex: 0 0 auto;
  }
  .homepage .categories {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    padding: 0;
  }
  .homepage .categories .category {
    width: 25%;
    padding: 5px;
    box-sizing: border-box;
  }
  .homepage .categories .category .pic {
    width: 40px;
    height: 40px;
  }
  .homepage .section .header {
    flex-direction: column;
    align-items: flex-start;
  }
  .homepage .section .header h4 {
    margin-bottom: 10px;
  }
  .homepage .section .slider .card {
    width: 200px;
  }
  .homepage .row-cols-4 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
    padding: 0;
    margin: 0 auto;
  }
  .homepage .row-cols-4 .col {
    padding: 0;
    margin: 0;
    width: 100%;
    box-sizing: border-box;
  }
  .homepage .row-cols-4 .card {
    margin-bottom: 8px;
  }
  .homepage .row-cols-4 .card .card-header {
    padding: 5px;
  }
  .homepage .row-cols-4 .card .card-header .user-info .avatar {
    width: 24px;
    height: 24px;
  }
  .homepage .row-cols-4 .card .card-header .user-info .details .username {
    font-size: 12px;
  }
  .homepage .row-cols-4 .card .card-header .user-info .details .time {
    font-size: 10px;
  }
  .homepage .row-cols-4 .card .card-link .card .card-image {
    height: 120px !important;
  }
  .homepage .row-cols-4 .card .card-link .card .card-body {
    padding: 6px !important;
  }
  .homepage .row-cols-4 .card .card-link .card .card-body .category {
    font-size: 10px;
    margin-bottom: 4px;
  }
  .homepage .row-cols-4 .card .card-link .card .card-body h5 {
    font-size: 12px !important;
    margin-bottom: 4px;
  }
  .homepage .row-cols-4 .card .card-link .card .card-body .price {
    font-size: 14px !important;
  }
  .container {
    padding-left: 10px !important;
    padding-right: 10px !important;
    max-width: 100%;
    width: 100%;
  }
  footer .footer-top {
    flex-direction: column;
  }
  footer .footer-top .footer-column {
    width: 100%;
    margin-bottom: 20px;
  }
  footer .footer-bottom .brand-logos {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
  }
  footer .footer-bottom .brand-logos .logo-item {
    width: 100%;
    height: 30px;
    display: flex;
    justify-content: center;
  }
  footer .footer-bottom .copyright {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }
}
@media (min-width: 577px) and (max-width: 768px) {
  header .main-header {
    padding: 10px;
  }
  header .main-header .logo {
    flex: 0 0 auto;
  }
  header .main-header .search-container {
    flex: 1;
    margin: 0 15px;
  }
  header .categories-bar nav {
    overflow-x: auto;
  }
  header .categories-bar nav ul {
    flex-wrap: nowrap;
    width: auto;
    white-space: nowrap;
  }
  .homepage .categories {
    display: flex;
    justify-content: space-between;
    padding: 0;
  }
  .homepage .categories .category {
    width: 20%;
    box-sizing: border-box;
  }
  .homepage .row-cols-4 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    padding: 0;
    margin: 0 auto;
  }
  footer .footer-top {
    flex-wrap: wrap;
  }
  footer .footer-top .footer-column {
    flex: 0 0 50%;
    min-width: 0;
  }
}
@media (min-width: 769px) and (max-width: 992px) {
  .homepage .categories {
    justify-content: space-between;
    padding: 0;
  }
  .homepage .categories .category {
    width: 20%;
    box-sizing: border-box;
  }
  .homepage .row-cols-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    padding: 0;
    margin: 0 auto;
  }
  footer .footer-top .footer-column {
    flex: 1;
    min-width: 140px;
  }
}
@media (max-width: 992px) {
  html, body {
    overflow-x: hidden;
    width: 100%;
  }
  .row, .container {
    max-width: 100%;
    box-sizing: border-box;
  }
  h4 {
    padding-left: 0;
    margin-left: 0;
  }
  .banner img {
    height: auto;
    max-width: 100%;
  }
  .card {
    margin: 0;
  }
  .card .card-header {
    padding: 8px;
  }
  .card .card-image {
    height: 180px !important;
  }
  .card .card-body {
    padding: 10px !important;
  }
  .card .card-body h5 {
    font-size: 14px !important;
  }
  .card .card-body .price {
    font-size: 16px !important;
  }
  .card-link .card {
    width: 100% !important;
    margin: 0;
  }
  .modal-dialog {
    margin: 0.5rem;
  }
}
:root {
  --bg-light: #f7f8f9;
  --border-light: #ebeef0;
  --accent: #00a49f;
  --text-primary: #002f34;
  --btn-bg: #002f34;
  --btn-hover: #00484e;
  --gradient-start: #16bdca;
  --gradient-end: #02a5a5;
  --gradient-hover-start: #15b0bc;
  --gradient-hover-end: #029595;
  --white: #fff;
  --primary-color: $text-primary;
  --hover-color: $accent;
  --light-gray: $bg-light;
  --border-color: $border-light;
  --shadow-light: 0 1px 4px rgba(0, 0, 0, 0.05);
  --shadow-hover: 0 8px 20px rgba(0, 0, 0, 0.12);
}

footer {
  width: 100%;
  color: #333;
  background-color: #ebeeef;
}
footer .footer-content {
  max-width: 1280px;
  margin: 0 auto;
  padding: 40px 15px;
}
footer .footer-top {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
footer .footer-column {
  flex: 1;
  min-width: 180px;
  margin-bottom: 20px;
}
footer .footer-column h5 {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 16px;
  color: #002f34;
}
footer .footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
footer .footer-column ul li {
  margin-bottom: 8px;
}
footer .footer-column ul li a {
  font-size: 14px;
  color: #002f34;
  text-decoration: none;
}
footer .footer-column ul li a:hover {
  text-decoration: underline;
}
footer .footer-column .social-icons {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
}
footer .footer-column .social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background-color: #fff;
  border-radius: 50%;
  color: #002f34;
  text-decoration: none;
}
footer .footer-column .social-icons a:hover {
  background-color: #f2f4f5;
}
footer .footer-column .app-downloads {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
footer .footer-column .app-downloads img {
  height: 40px;
  width: auto;
}
footer .footer-bottom {
  background-color: #002f34;
  color: white;
  padding: 20px 0;
}
footer .footer-bottom .brand-logos {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 15px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 30px;
  margin-bottom: 20px;
}
footer .footer-bottom .brand-logos .logo-item {
  height: 40px;
  display: flex;
  align-items: center;
}
footer .footer-bottom .brand-logos .logo-item img {
  height: 100%;
  max-width: 120px;
  -o-object-fit: contain;
     object-fit: contain;
}
footer .footer-bottom .copyright {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 15px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
}
footer .footer-bottom .copyright a {
  color: white;
  text-decoration: none;
}
footer .footer-bottom .copyright a:hover {
  text-decoration: underline;
}
@media (max-width: 768px) {
  footer .footer-top {
    flex-direction: column;
  }
  footer .footer-column {
    width: 100%;
    margin-bottom: 30px;
  }
  footer .footer-bottom .copyright {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }
}

#page-login {
  min-height: 40vh;
  max-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #f7f9fc;
}

#page-login .holder {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  width: 85%;
  max-width: 1200px;
  background: white;
  position: relative;
  display: flex;
  border-radius: 12px;
  overflow: hidden;
}

#page-login .holder.join {
  width: 70%;
  max-width: 900px;
}

#page-login .holder .overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  display: none;
  z-index: 10;
  -webkit-backdrop-filter: blur(3px);
  backdrop-filter: blur(3px);
}

#page-login .holder .overlay.active {
  display: flex;
  align-items: center;
  justify-content: center;
}

#page-login .holder .overlay .img {
  height: 80px;
  width: 80px;
  animation: pulse 1.5s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}
#page-login .holder .image {
  background-image: url("/front/auth/login.jpg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  flex: 3;
  position: relative;
}

#page-login .holder .image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0) 100%);
}

#page-login .holder .login-form {
  background: white;
  padding-top: 3rem;
  flex: 2;
  max-width: 100%;
  transition: all 0.3s ease;
}

#page-login .holder .login-form.join {
  padding: 2rem;
}

#page-login .holder .login-form.step {
  padding: 2rem;
}

#page-login .holder .login-form .heading-logo {
  text-align: center;
  margin-bottom: 1.5rem;
}

#page-login .holder .login-form .heading-logo img {
  width: 180px;
  transition: all 0.3s ease;
}

#page-login .holder .login-form .header {
  display: flex;
  text-align: center;
  margin: 1.5rem 0;
  font-size: 16px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

#page-login .holder .login-form .header span {
  flex: 1;
  font-weight: 500;
  padding: 1rem;
  cursor: pointer;
  transition: all 0.2s ease;
}

#page-login .holder .login-form .header span:hover {
  background-color: rgba(255, 90, 95, 0.08);
}

#page-login .holder .login-form .header span.active {
  color: white;
  background-color: var(--red-primary);
  font-weight: 600;
}

#page-login .holder .login-form .header span .normal {
  font-size: 13px;
  opacity: 0.8;
}

#page-login .holder .login-form .controls {
  margin-bottom: 1.5rem;
}

#page-login .holder .login-form .controls.join {
  padding: 0 2rem;
}

#page-login .holder .login-form .controls .control {
  border: 1px solid rgba(183, 183, 183, 0.2);
  display: flex;
  height: 48px;
  border-radius: 8px;
  overflow: hidden;
  color: var(--black-secondary);
  margin-bottom: 1rem;
  transition: all 0.2s ease;
}

#page-login .holder .login-form .controls .control:focus-within {
  border-color: var(--red-primary);
  box-shadow: 0 0 0 2px rgba(255, 90, 95, 0.1);
}

#page-login .holder .login-form .controls .control .icon {
  width: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #9c9ea3;
}

#page-login .holder .login-form .controls .control .icon .material-icons {
  font-size: 18px;
}

#page-login .holder .login-form .controls .control.join {
  display: block;
  border: none;
  height: auto;
}

#page-login .holder .login-form .controls .control.join label {
  font-weight: 600;
  padding-bottom: 0.5rem;
  font-size: 0.9rem;
  color: #333;
  display: block;
}

#page-login .holder .login-form .controls .control.join label.required::after {
  content: "*";
  color: var(--red-primary);
  margin-left: 2px;
}

#page-login .holder .login-form .controls .control.join label .text-danger {
  font-size: 0.85rem;
  color: var(--red-primary);
}

#page-login .holder .login-form .controls .control.join select,
#page-login .holder .login-form .controls .control.join input {
  border: 1px solid rgba(183, 183, 183, 0.2);
  border-radius: 8px;
  width: 100%;
  height: 48px;
  padding: 0.75rem 1rem;
  transition: all 0.2s ease;
}

#page-login .holder .login-form .controls .control.join select:focus,
#page-login .holder .login-form .controls .control.join input:focus {
  border-color: var(--red-primary);
  box-shadow: 0 0 0 2px rgba(255, 90, 95, 0.1);
  outline: none;
}

#page-login .holder .login-form .controls .control select,
#page-login .holder .login-form .controls .control input {
  flex-grow: 1;
  width: calc(100% - 48px);
  border: none;
  outline: transparent;
  font-size: 15px;
  padding: 0 1rem;
}

#page-login .holder .login-form .controls .control select::-moz-placeholder, #page-login .holder .login-form .controls .control input::-moz-placeholder {
  color: #9c9ea3;
  font-weight: 500;
  font-family: "Lato", sans-serif;
}

#page-login .holder .login-form .controls .control select::placeholder,
#page-login .holder .login-form .controls .control input::placeholder {
  color: #9c9ea3;
  font-weight: 500;
  font-family: "Lato", sans-serif;
}

#page-login .holder .login-form .controls .control select::-webkit-outer-spin-button,
#page-login .holder .login-form .controls .control select::-webkit-inner-spin-button,
#page-login .holder .login-form .controls .control input::-webkit-outer-spin-button,
#page-login .holder .login-form .controls .control input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

#page-login .holder .login-form .controls .control select[type=number],
#page-login .holder .login-form .controls .control input[type=number] {
  -moz-appearance: textfield;
}

/* Step form styling */
#page-login .holder .login-form.step #first-selector {
  cursor: pointer;
  padding: 0 2rem;
}

#page-login .holder .login-form.step #first-selector span {
  display: block;
  height: 300px;
  background-color: #f8f9fa;
  text-align: center;
  color: #7a7a7a;
  border-radius: 10px;
  border: 2px dashed #dde0e4;
  transition: all 0.2s ease;
}

#page-login .holder .login-form.step #first-selector span:hover {
  background-color: #f1f3f5;
  border-color: #c2c7d0;
}

#page-login .holder .login-form.step #first-selector span h6 {
  font-size: 28px;
  padding-top: 70px;
}

#page-login .holder .login-form.step #first-selector span h6 img {
  width: 70px;
  height: 70px;
  margin-top: 15px;
  opacity: 0.7;
  transition: all 0.2s ease;
}

#page-login .holder .login-form.step #first-selector span:hover h6 img {
  opacity: 0.9;
}

#page-login .holder .login-form.step .img-loader {
  width: 60px;
  height: 60px;
  margin: 1rem auto;
}

#page-login .holder .login-form.step .img-loader label {
  padding: 10px;
  display: block;
  height: 100%;
  width: 100%;
  border-radius: 50%;
  background: #f1f3f5;
  cursor: pointer;
  transition: all 0.2s ease;
}

#page-login .holder .login-form.step .img-loader label:hover {
  background: #e9ecef;
}

#page-login .holder .login-form.step .img-loader label.loaded {
  padding: 0;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--red-primary);
}

#page-login .holder .login-form.step .img-loader label img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

#page-login .holder .login-form.step #image-holder {
  padding: 0 2rem;
}

#page-login .holder .login-form.step .link {
  color: var(--red-primary);
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s ease;
}

#page-login .holder .login-form.step .link:hover {
  color: #e63e44;
  text-decoration: underline;
}

#page-login .holder .login-form .loading {
  pointer-events: none;
  opacity: 0.7;
}

/* Error messaging */
#page-login .holder .login-form #errors {
  display: none;
  background: rgba(255, 90, 95, 0.1);
  padding: 1rem;
  border-radius: 8px;
  margin-bottom: 1rem;
}

#page-login .holder .login-form #errors.active {
  display: block;
}

#page-login .holder .login-form #errors .col-md-4 {
  color: var(--red-primary);
  font-weight: 500;
  font-size: 0.9rem;
  padding: 0.25rem 0;
}

#page-login .holder .login-form #errors .col-md-4::before {
  content: "•";
  margin-right: 5px;
}

/* Links styling */
#page-login .holder .login-form .link {
  color: #6c757d;
  text-decoration: none;
  font-size: 0.9rem;
  transition: all 0.2s ease;
}

#page-login .holder .login-form .link:hover {
  color: var(--red-primary);
}

#page-login .holder .login-form a.where {
  display: block;
  padding: 0.9rem;
  text-align: center;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  margin-bottom: 1rem;
  text-decoration: none;
  font-weight: 500;
  color: #5f6368;
  transition: all 0.2s ease;
}

#page-login .holder .login-form a.where:hover {
  color: var(--red-primary);
  border-color: rgba(255, 90, 95, 0.3);
  background-color: rgba(255, 90, 95, 0.03);
}

/* Button styling - to be added to your existing buttons */
.btn-primary {
  background-color: var(--red-primary);
  border: none;
  border-radius: 8px;
  padding: 0.85rem 1.5rem;
  margin-top: 20px;
  color: black;
  font-weight: 600;
  transition: all 0.2s ease;
  box-shadow: 0 4px 10px rgba(255, 90, 95, 0.2);
}

.btn-primary:hover {
  background-color: #e63e44;
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(255, 90, 95, 0.3);
}

.btn-primary:active {
  transform: translateY(0);
  box-shadow: 0 2px 5px rgba(255, 90, 95, 0.2);
}

.btn-outline {
  background-color: transparent;
  border: 1px solid #dee2e6;
  border-radius: 8px;
  padding: 0.85rem 1.5rem;
  font-weight: 600;
  color: #495057;
  transition: all 0.2s ease;
}

.btn-outline:hover {
  background-color: #f8f9fa;
  border-color: #ced4da;
}

/* Responsive design improvements */
@media (max-width: 768px) {
  #page-login .holder {
    width: 90%;
    flex-direction: column;
  }
  #page-login .holder.join {
    width: 90%;
  }
  #page-login .holder .image {
    height: 180px;
    flex: none;
  }
  #page-login .holder .login-form {
    padding: 2rem 1.5rem;
  }
  #page-login .holder .login-form.join {
    padding: 1.5rem 1rem;
  }
  #page-login .holder .login-form .controls.join {
    padding: 0;
  }
  #page-login .holder .login-form .heading-logo img {
    width: 150px;
  }
}
@media (max-width: 426px) {
  #page-login {
    padding: 1rem;
  }
  #page-login .holder {
    width: 100%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  }
  #page-login .holder .image {
    height: 150px;
  }
  #page-login .holder .login-form.step #image-holder,
  #page-login .holder .login-form.step #first-selector {
    padding: 0;
  }
  #page-login .holder .login-form.step #first-selector span h6 {
    font-size: 22px;
  }
  #page-login .holder .login-form.step #first-selector span {
    height: 200px;
  }
  #page-login .holder .login-form.step #first-selector span h6 {
    padding-top: 40px;
  }
  #page-login .holder .login-form .header span {
    padding: 0.75rem 0.5rem;
    font-size: 14px;
  }
}
.main-aa {
  padding: 30px;
}
.main-aa .heading .breadcrumb .breadcrumb-item a {
  color: #82A7AB;
  text-decoration: none;
}
.main-aa .heading .breadcrumb .breadcrumb-item a:hover {
  color: #000;
  text-decoration: none;
}
.main-aa .heading .breadcrumb .breadcrumb-item.active {
  color: #000;
}
.main-aa .heading h1 {
  margin-top: -15px;
  font-size: 40px;
  font-weight: 600;
}
.main-aa .categories-wrapper {
  margin-top: 20px;
}
.main-aa .categories-wrapper .category-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #002f34;
  font-weight: 600;
  margin-bottom: 15px;
  padding-bottom: 10px;
  border-bottom: 1px solid #ebeef0;
  cursor: pointer;
}
.main-aa .categories-wrapper .category-title i {
  font-size: 14px;
  cursor: pointer;
  transition: transform 0.3s ease;
}
.main-aa .categories-wrapper .category-title i.collapsed {
  transform: rotate(180deg);
}
.main-aa .categories-wrapper .category-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: none;
}
.main-aa .categories-wrapper .category-list.show {
  display: block;
}
.main-aa .categories-wrapper .category-list li {
  margin: 8px 0;
}
.main-aa .categories-wrapper .category-list li a {
  color: #002f34;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 12px;
  font-size: 14px;
  transition: all 0.2s ease;
  border-radius: 4px;
}
.main-aa .categories-wrapper .category-list li a:hover {
  background-color: #f8f9fa;
}
.main-aa .categories-wrapper .category-list li a.active-category {
  background-color: #e8f7f7;
  color: #00a49f;
}
.main-aa .categories-wrapper .category-list li a i {
  font-size: 12px;
  transition: transform 0.3s ease;
}
.main-aa .categories-wrapper .category-list li a i.collapsed {
  transform: rotate(180deg);
}
.main-aa .categories-wrapper .category-list li .sub-categories {
  list-style: none;
  padding-left: 20px;
  margin: 5px 0;
  display: none;
}
.main-aa .categories-wrapper .category-list li .sub-categories.show {
  display: block;
}
.main-aa .categories-wrapper .category-list li .sub-categories li {
  margin: 5px 0;
}
.main-aa .categories-wrapper .category-list li .sub-categories li a {
  color: #666;
  padding: 6px 12px;
  font-size: 13px;
}
.main-aa .categories-wrapper .category-list li .sub-categories li a:hover {
  background-color: #f8f9fa;
}
.main-aa .categories-wrapper .category-list li .sub-categories li a.active-category {
  background-color: #e8f7f7;
  color: #00a49f;
}
.main-aa .locations-wrapper {
  margin-top: 30px;
}
.main-aa .locations-wrapper .location-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #002f34;
  font-weight: 600;
  margin-bottom: 15px;
  padding-bottom: 10px;
  border-bottom: 1px solid #ebeef0;
  cursor: pointer;
}
.main-aa .locations-wrapper .location-title i {
  font-size: 14px;
  cursor: pointer;
  transition: transform 0.3s ease;
}
.main-aa .locations-wrapper .location-title i.collapsed {
  transform: rotate(180deg);
}
.main-aa .locations-wrapper .location-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: none;
}
.main-aa .locations-wrapper .location-list.show {
  display: block;
}
.main-aa .locations-wrapper .location-list li {
  margin: 8px 0;
}
.main-aa .locations-wrapper .location-list li a {
  color: #002f34;
  text-decoration: none;
  display: flex;
  align-items: center;
  padding: 8px 12px;
  font-size: 14px;
  transition: all 0.2s ease;
}
.main-aa .locations-wrapper .location-list li a:hover {
  background-color: #f8f9fa;
  border-radius: 4px;
}
.main-aa .locations-wrapper .location-list li a.active {
  background-color: #e8f7f7;
  color: #00a49f;
  border-radius: 4px;
}
.main-aa .locations-wrapper .location-list li a .location-check {
  margin-left: auto;
  color: #00a49f;
  display: none;
}
.main-aa .locations-wrapper .location-list li a.active .location-check {
  display: block;
}
.main-aa .filters-wrapper {
  margin-top: 30px;
}
.main-aa .filters-wrapper .filters-title {
  color: #002f34;
  font-weight: 600;
  margin-bottom: 15px;
  padding-bottom: 10px;
  border-bottom: 1px solid #ebeef0;
}
.main-aa .filters-wrapper .price-filter {
  padding: 15px;
}
.main-aa .filters-wrapper .price-filter .price-label {
  font-size: 14px;
  color: #002f34;
  margin-bottom: 10px;
  font-weight: 500;
}
.main-aa .filters-wrapper .price-filter .price-range {
  display: flex;
  justify-content: center;
  margin: 15px 0;
  font-size: 16px;
  color: #002f34;
  font-weight: 500;
}
.main-aa .filters-wrapper .price-filter .price-range #currentRange {
  background: #e8f7f7;
  padding: 8px 15px;
  border-radius: 4px;
  color: #00a49f;
  transition: all 0.2s ease;
}
.main-aa .filters-wrapper .price-filter .range-slider {
  width: 100%;
  margin: 15px 0;
  padding: 0 10px;
}
.main-aa .filters-wrapper .price-filter .range-slider .slider {
  -webkit-appearance: none;
  width: 100%;
  height: 4px;
  border-radius: 5px;
  background: #ddd;
  outline: none;
  opacity: 0.7;
  transition: all 0.2s ease;
}
.main-aa .filters-wrapper .price-filter .range-slider .slider:hover {
  opacity: 1;
}
.main-aa .filters-wrapper .price-filter .range-slider .slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #00a49f;
  cursor: pointer;
  border: 2px solid white;
  box-shadow: 0 0 0 2px #00a49f;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.main-aa .filters-wrapper .price-filter .range-slider .slider::-webkit-slider-thumb:hover {
  transform: scale(1.1);
}
.main-aa .filters-wrapper .price-filter .range-slider .slider::-moz-range-thumb {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #00a49f;
  cursor: pointer;
  border: 2px solid white;
  box-shadow: 0 0 0 2px #00a49f;
  -moz-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.main-aa .filters-wrapper .price-filter .range-slider .slider::-moz-range-thumb:hover {
  transform: scale(1.1);
}
.main-aa .filters-wrapper .price-filter .price-inputs {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 15px;
}
.main-aa .filters-wrapper .price-filter .price-inputs .price-input {
  width: 45%;
  padding: 8px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 14px;
  color: #002f34;
  text-align: center;
  transition: all 0.2s ease;
}
.main-aa .filters-wrapper .price-filter .price-inputs .price-input:focus {
  border-color: #00a49f;
  outline: none;
  box-shadow: 0 0 0 2px rgba(0, 164, 159, 0.1);
}
.main-aa .filters-wrapper .price-filter .price-inputs .price-input::-moz-placeholder {
  color: #999;
}
.main-aa .filters-wrapper .price-filter .price-inputs .price-input::placeholder {
  color: #999;
}
.main-aa .filters-wrapper .price-filter .price-inputs .separator {
  color: #666;
  margin: 0 10px;
}
.main-aa .content {
  padding: 20px 0;
}
.main-aa .content .col {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .main-aa .content .col {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 576px) {
  .main-aa .content .col {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 400px) {
  .main-aa .content .col {
    grid-template-columns: 1fr;
  }
}
.main-aa .content .col .card {
  width: 100%;
  border-radius: 4px;
  overflow: hidden;
  background-color: white;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.05);
  transition: all 0.2s ease;
}
.main-aa .content .col .card .card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px;
  border-bottom: 1px solid #ebeef0;
}
.main-aa .content .col .card .card-header .user-info {
  display: flex;
  align-items: center;
}
.main-aa .content .col .card .card-header .user-info .avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  overflow: hidden;
  margin-right: 8px;
}
.main-aa .content .col .card .card-header .user-info .avatar img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.main-aa .content .col .card .card-header .user-info .details .username {
  font-weight: 500;
  font-size: 14px;
  color: #002f34;
}
.main-aa .content .col .card .card-header .user-info .details .time {
  font-size: 12px;
  color: #777;
}
.main-aa .content .col .card .card-link {
  text-decoration: none;
  color: inherit;
  display: block;
}
.main-aa .content .col .card .card-link .card {
  border: none;
  margin: 0;
  box-shadow: none;
  width: 100%;
}
.main-aa .content .col .card .card-link .card .card-image {
  position: relative;
  height: 220px;
  width: 100%;
  overflow: hidden;
}
.main-aa .content .col .card .card-link .card .card-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  display: block;
}
.main-aa .content .col .card .card-link .card .card-image .image-count {
  position: absolute;
  bottom: 8px;
  left: 8px;
  background-color: rgba(0, 0, 0, 0.5);
  color: white;
  padding: 2px 6px;
  border-radius: 4px;
  font-size: 12px;
}
.main-aa .content .col .card .card-link .card .card-body {
  padding: 12px;
}
.main-aa .content .col .card .card-link .card .card-body .category {
  font-size: 12px;
  color: #777;
  margin-bottom: 8px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.main-aa .content .col .card .card-link .card .card-body .category i {
  margin-right: 4px;
}
.main-aa .content .col .card .card-link .card .card-body h5 {
  font-size: 16px;
  font-weight: 500;
  color: #002f34;
  margin-bottom: 8px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.main-aa .content .col .card .card-link .card .card-body .price {
  font-size: 18px;
  font-weight: bold;
  color: #002f34;
  margin: 0;
}
.main-aa .content .col .card:hover {
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
}

.image-slider {
  position: relative;
}
.image-slider .product-image {
  max-height: 450px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #635542;
}
.image-slider .product-image img {
  max-height: 450px;
}

.thumbnail-nav .thumbnail {
  width: 75px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #F2F1F6;
}
.thumbnail-nav .thumbnail img {
  height: 75px;
  -o-object-fit: cover;
     object-fit: cover;
}

.image {
  width: 100%;
  height: auto;
}
.image .image-gallery {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  background-color: #000;
  overflow: hidden;
}
.image .image-container {
  position: relative;
  background-color: #000;
  width: 100%;
  margin: 0 auto;
  height: 450px;
  overflow: hidden;
}
.image .navigation-arrows {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 10;
  pointer-events: none;
}
.image .navigation-arrows .nav-arrow {
  background-color: var(--white);
  border: none;
  font-size: 24px;
  cursor: pointer;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: auto;
  opacity: 0.8;
  transition: opacity 0.3s ease;
}
.image .navigation-arrows .nav-arrow:hover {
  opacity: 1;
}
.image .navigation-arrows .nav-arrow.left {
  margin-left: 20px;
}
.image .navigation-arrows .nav-arrow.right {
  margin-right: 20px;
}
.image .navigation-arrows .nav-arrow i {
  background-color: var(--white);
  font-size: 36px;
}
.image .image-actions {
  position: absolute;
  top: 15px;
  right: 15px;
  display: flex;
  gap: 10px;
  z-index: 10;
}
.image .image-actions .action-btn {
  background-color: rgba(0, 0, 0, 0.5);
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
.image .image-actions .action-btn:hover {
  background-color: rgba(0, 0, 0, 0.7);
}
.image .image-actions .action-btn i {
  font-size: 18px;
  background-color: var(--white);
}
.image .watermark {
  position: absolute;
  bottom: 15px;
  right: 15px;
  z-index: 5;
}
.image .watermark img.olx-watermark,
.image .watermark img.sulav-watermark {
  width: 60px;
  height: auto;
  opacity: 0.7;
}

.view-container {
  background-color: var(--white);
  min-height: 100vh;
  padding-top: 20px;
}

.product-details {
  padding: 40px;
  margin-top: 20px;
  border-radius: 4px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}
.product-details h1,
.product-details h2,
.product-details h3,
.product-details h4,
.product-details h5,
.product-details h6 {
  color: #333;
}
.product-details h1 {
  font-size: 28px;
  font-weight: bold;
}
.product-details .btn-dark {
  background-color: #002f34;
  border-color: #002f34;
}
.product-details .btn-dark:hover {
  background-color: #00181b;
}
.product-details .badge {
  font-weight: 600;
  padding: 5px 10px;
}
.product-details .badge.bg-warning {
  background-color: #ffce32 !important;
}
.product-details .badge.bg-primary {
  background-color: #3a77ff !important;
}
.product-details .text-success {
  color: #23e5db !important;
}
.product-details .btn-outline-dark {
  border-color: #002f34;
  color: #002f34;
}
.product-details .btn-outline-dark:hover {
  background-color: #002f34;
  color: var(--white);
}
.product-details .text-primary {
  color: #3a77ff !important;
}
.product-details .bg-primary {
  background-color: #3a77ff !important;
}
.product-details .blockquote-footer {
  background-color: var(--white);
  margin-top: 5px;
}
.product-details .blockquote-footer i {
  margin-right: 5px;
}
.product-details .blockquote-footer i:not(:first-child) {
  margin-left: 15px;
}

hr {
  margin: 0;
  border-top: 1px solid #eee;
}

@media (max-width: 768px) {
  .image-container {
    width: 80%;
    height: 350px;
  }
  .dark-overlay {
    width: 10%;
  }
}
@media (max-width: 576px) {
  .image-container {
    width: 100%;
    height: 300px;
  }
  .dark-overlay {
    display: none;
  }
}
.olx-header {
  background-color: var(--white);
  padding: 10px 20px;
  box-shadow: 0 1px 5px rgba(0, 0, 0, 0.1);
}

.main-header {
  display: flex;
  align-items: center;
  gap: 15px;
}

.logo h3 {
  margin: 0;
  font-weight: bold;
  color: #3a77ff;
}

.location-selector .btn {
  border: 1px solid #ccc;
  background-color: var(--white);
  font-weight: normal;
}

.search-container {
  display: flex;
  flex: 1;
  border: 2px solid #3a77ff;
  border-radius: 4px;
  overflow: hidden;
}
.search-container .search-input {
  flex: 1;
  border: none;
  padding: 8px 15px;
  outline: none;
}
.search-container .search-category {
  display: flex;
  align-items: center;
  padding: 0 10px;
  background-color: var(--white);
  border-left: 1px solid #ddd;
  font-size: 14px;
}
.search-container .search-category i {
  margin-left: 5px;
  color: #3a77ff;
}
.search-container .search-button {
  background-color: #002f34;
  color: white;
  border: none;
  padding: 0 15px;
  cursor: pointer;
}

.language-dropdown .btn {
  border: none;
  color: #002f34;
  font-weight: bold;
}

.favorites {
  font-size: 22px;
  color: #002f34;
}

.login {
  text-decoration: none;
  color: #002f34;
  font-weight: bold;
}

.sell-button {
  background-color: #3a77ff;
  color: white;
  text-decoration: none;
  padding: 8px 16px;
  border-radius: 25px;
  font-weight: bold;
  display: flex;
  align-items: center;
  gap: 5px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.route-page .container {
  max-width: 1000px;
  margin: 0 auto;
}
.route-page .container .no-routes-message {
  text-align: center;
  font-size: 18px;
  color: #666;
  margin-top: 50px;
  margin-bottom: 100px;
}
.route-page .bus-card {
  background-color: #fff;
  border-radius: 8px;
  padding: 20px;
  margin-top: 10px;
  margin-bottom: 20px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  display: flex;
  justify-content: space-between;
}
.route-page .bus-card .bus-details {
  flex-grow: 1;
}
.route-page .bus-card .bus-details .bus-title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 5px;
  display: flex;
  align-items: center;
}
.route-page .bus-card .bus-details .bus-title .night-badge {
  background-color: #333;
  color: white;
  font-size: 12px;
  padding: 2px 8px;
  border-radius: 4px;
  margin-left: 10px;
}
.route-page .bus-card .bus-details .bus-subtype {
  color: #666;
  font-size: 14px;
  margin-bottom: 15px;
}
.route-page .bus-card .bus-details .journey-details {
  display: flex;
  align-items: center;
  margin-top: 15px;
}
.route-page .bus-card .bus-details .journey-details .departure,
.route-page .bus-card .bus-details .journey-details .arrival {
  text-align: center;
}
.route-page .bus-card .bus-details .journey-details .departure.departure,
.route-page .bus-card .bus-details .journey-details .arrival.departure {
  text-align: left;
}
.route-page .bus-card .bus-details .journey-details .departure.arrival,
.route-page .bus-card .bus-details .journey-details .arrival.arrival {
  text-align: right;
}
.route-page .bus-card .bus-details .journey-details .departure .location,
.route-page .bus-card .bus-details .journey-details .arrival .location {
  font-size: 24px;
  font-weight: 600;
  color: #333;
}
.route-page .bus-card .bus-details .journey-details .departure .path,
.route-page .bus-card .bus-details .journey-details .arrival .path {
  color: #666;
  font-size: 14px;
  margin-top: 5px;
}
.route-page .bus-card .bus-details .journey-details .journey-middle {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 15px;
  margin: 0 20px;
}
.route-page .bus-card .bus-details .journey-details .journey-middle .journey-duration {
  font-size: 14px;
  color: #666;
  margin-bottom: 5px;
}
.route-page .bus-card .bus-details .journey-details .journey-middle .journey-line {
  width: 100%;
  height: 1px;
  background-color: #ddd;
  position: relative;
  margin: 10px 0;
}
.route-page .bus-card .bus-details .journey-details .journey-middle .bus-number {
  font-size: 13px;
  color: #666;
  margin-top: 5px;
}
.route-page .bus-card .price-section {
  text-align: right;
  min-width: 150px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-end;
}
.route-page .bus-card .price-section .price {
  font-size: 24px;
  font-weight: 600;
  color: #333;
}
.route-page .bus-card .price-section .seats-available {
  font-size: 14px;
  color: #666;
  margin-top: 5px;
  margin-bottom: 15px;
}
.route-page .bus-card .price-section .view-seats-btn {
  background-color: #1a73e8;
  color: white;
  border: none;
  padding: 8px 16px;
  border-radius: 4px;
  font-weight: 500;
  cursor: pointer;
  margin-top: 10px;
}
.route-page .bus-card .price-section .view-seats-btn:hover {
  background-color: #1557b0;
}
.route-page .bus-card .bus-features {
  margin-top: 20px;
  display: flex;
  gap: 10px;
}
.route-page .bus-card .bus-features .feature-icon {
  display: flex;
  align-items: center;
  gap: 3px;
  color: #666;
  font-size: 14px;
}
.route-page .tabs {
  display: flex;
  gap: 15px;
  margin-top: 20px;
  font-size: 14px;
  color: #666;
}
.route-page .tabs .tab {
  cursor: pointer;
  padding: 3px 0;
}
.route-page .tabs .tab:hover {
  color: #1a73e8;
}
.route-page .tabs .tab-separator {
  color: #ddd;
}
.route-page .back-to-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #333;
  color: white;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}
.route-page .modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 1000;
  overflow: auto;
  justify-content: center;
  align-items: center;
}
.route-page .modal .modal-content {
  background-color: white;
  width: 80%;
  max-width: 800px;
  border-radius: 8px;
  position: relative;
  animation: modalFadeIn 0.3s;
}
.route-page .modal .modal-header {
  padding: 15px;
  border-bottom: 1px solid #ddd;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.route-page .modal .modal-header .modal-title {
  font-size: 18px;
  font-weight: 600;
}
.route-page .modal .modal-header .close-modal {
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: #666;
}
.route-page .modal .modal-body {
  padding: 20px;
}
.route-page .modal .modal-body .gallery-container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 15px;
}
.route-page .modal .modal-body .gallery-container .gallery-image {
  width: 100%;
  height: 150px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 4px;
  cursor: pointer;
  transition: transform 0.2s;
}
.route-page .modal .modal-body .gallery-container .gallery-image:hover {
  transform: scale(1.05);
}
.route-page .image-preview-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  z-index: 1100;
  justify-content: center;
  align-items: center;
}
.route-page .image-preview-modal .preview-image {
  max-width: 90%;
  max-height: 90%;
  -o-object-fit: contain;
     object-fit: contain;
}
.route-page .image-preview-modal .close-preview {
  position: absolute;
  top: 20px;
  right: 30px;
  color: white;
  font-size: 30px;
  cursor: pointer;
}
.route-page .image-preview-modal .nav-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: white;
  font-size: 30px;
  background: rgba(0, 0, 0, 0.5);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}
.route-page .image-preview-modal .nav-arrow.prev-image {
  left: 20px;
}
.route-page .image-preview-modal .nav-arrow.next-image {
  right: 20px;
}
@keyframes modalFadeIn {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 768px) {
  .route-page .container {
    padding: 0 10px;
  }
  .route-page .bus-card {
    flex-direction: column;
  }
  .route-page .bus-card .price-section {
    width: 100%;
    align-items: flex-start;
    margin-top: 15px;
  }
  .route-page .bus-card .bus-details .journey-details {
    flex-direction: column;
  }
  .route-page .bus-card .bus-details .journey-details .journey-middle {
    margin: 15px 0;
    padding: 0;
  }
  .route-page .bus-card .bus-details .journey-details .departure,
  .route-page .bus-card .bus-details .journey-details .arrival {
    text-align: center;
  }
  .route-page .bus-card .bus-features {
    flex-wrap: wrap;
  }
  .route-page .modal-content {
    width: 95%;
  }
  .route-page .modal-header {
    flex-direction: column;
    align-items: flex-start;
  }
  .route-page .modal-header .close-modal {
    align-self: flex-end;
  }
  .route-page .tabs {
    flex-wrap: wrap;
    gap: 10px;
  }
}/*# sourceMappingURL=index.css.map */
