@charset "utf-8";
/* CSS Document */
/*Vertex*/

.hero {
      width: 100%;
      text-align: center;
      margin-bottom: 20px;
    }

    .hero img {
      width: 100%;
      height: auto;
    }

    .product-card {
      border: 1px solid #eee;
      padding: 10px;
      border-radius: 8px;
      transition: 0.3s;
    }

    .product-card:hover {
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    }

    footer {
      background-color: #000;
      color: #fff;
      padding: 20px 0;
    }

    .sticky-header {
      position: sticky;
      top: 0;
      z-index: 1030;
      background-color: #fff;
      box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
    }

    .btn-sell {
      background: linear-gradient(90deg, #23e5db, #0fdb76, #ffce32, #3a77ff);
      border-radius: 20px;
      padding: 6px 18px;
      font-weight: bold;
      color: #002f34;
    }

    .search-box,
    .location-box {
      border: 1px solid #ccc;
      border-radius: 6px;
      padding: 6px 8px;
      display: flex;
      align-items: center;
      gap: 6px;
    }

    .search-box input {
      border: none;
      flex: 1;
    }

    .search-box input:focus {
      outline: none;
      box-shadow: none;
    }

    .main-content-wrapper {
      margin: auto;
      display: flex;
      gap: 15px;
      position: relative;
    }

    .ad-container {
      padding: 0 10px;
    }

    .ad-left,
    .ad-right {
      width: 120px;
      position: fixed;
      top: 100px;
      height: auto;
      z-index: 100;
    }

    .ad-left {
      left: 0;
    }

    .ad-right {
      right: 0;
    }

    .main-content {
      flex: 1;
      margin-left: 140px;
      margin-right: 140px;
    }

    @media (max-width: 991.98px) {
      .main-content-wrapper {
        flex-direction: column;
      }

      .ad-left,
      .ad-right {
        display: none;
      }

      .main-content {
        margin: 0;
      }

      .mobile-top {
        display: flex;
        justify-content: space-between;
        align-items: center;
      }

      .mobile-location-search {
        display: flex;
        flex-direction: row;
        gap: 10px;
        margin-top: 10px;
      }
    }

    .language-dropdown .btn:focus,
    .language-dropdown .btn:active,
    .language-dropdown .btn:hover,
    .language-dropdown .btn {
      border: none !important;
      box-shadow: none !important;
      background-color: transparent !important;
    }
	   @media (max-width: 576px) {
    .category-box {
      padding: 0.5rem !important;
      gap: 0.5rem !important;
    }
  }
#locationDropdown,
#locationDropdownMobile,
#locationDropdownDesktop {
  display: none;
  position: absolute;
  z-index: 1000;
}

#locationDropdown.show,
#locationDropdownMobile.show,
#locationDropdownDesktop.show {
  display: block;
}
	  
	.custom-know-more {
    color: #000;
    border: 1px solid #000;
    background-color: transparent;
  }

  .custom-know-more:hover {
    background-color: red;
    color: white;
    border-color: red;
  }

	 .event-img-wrapper {
  position: relative;
  width: 100%;
  padding-top: 66.66%; /* 200/300 = 0.6666 → 3:2 aspect ratio */
}

.event-img-wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card-body {
  flex-grow: 1;
}

.pagination .page-link {
  color: black;
  border: 1px solid black;
}

/* Active pagination button: red background, white text, red border */
.pagination .page-item.active .page-link {
  background-color: red;
  border-color: red;
  color: white;
}

/* Optional: keep hover/focus consistent for better UX */
.pagination .page-link:hover {
  background-color: #f8f9fa;
  color: black;
  border-color: black;
}

.location-box input:focus {
  outline: none;
  box-shadow: none;
  border: none !important;
}

.category-box-link {
  text-decoration: none !important;
  color: inherit;
}

.category-box-link:hover {
  color: red; /* Optional hover color */
  text-decoration: none !important;
}