.archive-container {
    max-width: 1100px;
    padding: 5px;
    margin: 0 auto;
    box-sizing: border-box;
}
.archive-title {
    font-size: 32px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 30px;
    color: var(--text-color);
}
.archive-intro {
    text-align: center;
    margin-bottom: 40px;
}
.archive-intro h6 {
    font-size: 1.2rem;
    font-weight: normal;
    margin-bottom: 15px;
}
.archive-layout {
    display: flex;
    gap: 20px;
    width: 100%;
}
.archive-aside {
    flex: 0 0 25%;
    background: #004aad14;
    padding: 5px;
    border-radius: 8px;
    height: fit-content;
    border: 1px solid #ddd;
    margin-right: 20px;
    position: -webkit-sticky;
    position: sticky;
    top: 20px;
    margin-top: -20px;
}
.archive-aside h3 {
    font-size: 20px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: bold;
    color: #333;
}
.archive-aside i {
    font-size: 18px;
    color: var(--primary-color);
}
.archive-search-form {
    margin-bottom: 20px;
}
.archive-search-input {
    width: 100%;
    padding: 8px;
    margin-bottom: 10px;
    font-size: 16px;
}
#filter-form label {
    display: block;
}
#filter-form input[type="checkbox"] {
    margin-right: 5px;
}
.destination-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    padding-bottom: 20px;
}
.destination-item {
    display: block;
    text-align: left;
    text-decoration: none;
    color: inherit;
    margin-top: 10px;
    padding: 10px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.destination-tour-image {
        position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
    pointer-events: none;
    user-select: none;
}
.destination-tour-image img {
   width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease-in-out;
}
.tour-type-ribbon {
    position: absolute;
    top: 10px;
    left: 10px;
    background-color: var(--primary-color);
    color: white;
    padding: 5px 10px;
    font-size: 14px;
    border-radius: 5px;
}
.destination-rating {
    margin: 10px 0;
    font-size: 14px;
}
.destination-rating span {
    font-weight: bold;
}
.destination-name {
    font-size: 20px;
    font-weight: bold;
    color: #000000;
    margin: 10px 0;
}
.destination-duration-and-price {
    display: flex;
    justify-content: space-between;
    color: #008000;
    margin-top: 10px;
}
.destination-duration-and-price .left,
.destination-duration-and-price .right {
    display: flex;
    align-items: center;
}
.destination-duration-and-price .left i {
    margin-right: 5px;
}
.destination-item:hover .destination-name {
    color: var(--primary-color);
}
.destination-item:hover .destination-tour-image img {
    transform: scale(1.1);
}
@media (max-width: 992px) {
    .archive-aside {
        display: none;
    }
    .destination-grid {
        grid-template-columns: 1fr;
    }
    .archive-layout {
        flex-direction: column;
    }
}
.destination-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.destination-flag {
    width: 20px;
    height: auto;
    pointer-events: none;
    user-select: none;
}
.destination-title {
    font-size: 20px;
    font-weight: bold;
    color: #000000;
    margin: 10px 0;
    flex-grow: 1;
    margin-left: 10px;
    text-align: -webkit-auto;
}
.apply-filters-button {
    padding: 10px 20px;
    border: 2px solid var(--primary-color);
    background-color: white;
    color: var(--text-color);
    font-weight: bold;
    border-radius: 8px;
    cursor: pointer;
    text-align: center;
    transition: background-color 0.3s ease, color 0.3s ease;
    display: block;
    margin: 20px auto;
}
.apply-filters-button:hover {
    background-color: var(--primary-color);
    color: white;
}