.page-item.active .page-link {
    z-index: 3;
    color: #fff;
    background-color: #b89146;
    border-color: #b89146;
}

.page-link {
    position: relative;
    display: block;
    color: #b89146;
    text-decoration: none;
    background-color: #fff;
    border: 1px solid #dee2e6;
    transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}

/* Ensure consistent dimensions for the image container */
.deluxe__two-item-image {
    position: relative;
    overflow: hidden; /* Hide any overflowing parts of the image */
    width: 100%; /* Full width of the parent container */
    height: 200px; /* Fixed height for all images */
}

/* Style the image to cover the container */
.deluxe__two-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensures the image fills the container while maintaining aspect ratio */
    object-position: center; /* Centers the image within the container */
}

/* Ensure consistent dimensions for the image containers */
.img__full_show {
    position: relative;
    overflow: hidden; /* Hide any overflowing parts of the image */
    width: 100%; /* Full width of the parent container */
    height: 300px; /* Fixed height for all images */
}

/* Style the images to cover the container */
.img__full_show img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensures the image fills the container while maintaining aspect ratio */
    object-position: center; /* Centers the image within the container */
}



/* The Modal (background) */
.modal {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 1000; /* Sit on top */
    padding-top: 60px; /* Location of the box */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgb(0, 0, 0); /* Fallback color */
    background-color: rgba(0, 0, 0, 0.9); /* Black w/ opacity */
}

/* Modal Content (image) */
.modal-content {
    margin: auto;
    display: block;
    max-width: 80%;
    max-height: 80%;
}

/* Caption of Modal Image */
#caption {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 700px;
    text-align: center;
    color: #ccc;
    padding: 10px 0;
    height: 150px;
}

/* Add Animation */
.modal-content,
#caption {
    animation-name: zoom;
    animation-duration: 0.6s;
}

@keyframes zoom {
    from {
        transform: scale(0);
    }
    to {
        transform: scale(1);
    }
}

/* The Close Button */
.close {
    position: absolute;
    top: 15px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
}

.close:hover,
.close:focus {
    color: #bbb;
    text-decoration: none;
    cursor: pointer;
}

/*TAB BUTTON*/
/* Tabs Navigation */
.tabs-navigation {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.tab-button {
    padding: 10px 20px;
    background-color: #f1f1f1;
    /*border: none;*/
    cursor: pointer;
    font-size: 16px;
    color: #000;
    transition: background-color 0.3s ease;
    border: 1px solid #897347;
    border-radius: 15px;
    min-width: 150px;
}

.tab-button.active {
    background-color: #897347;
    color: white;
}

.tab-button:hover {
    background-color: #ddd;
}

/* Tab Content */
.tab-content {
    display: none;
    animation: fadeIn 0.5s ease-in-out;
}

.tab-content.active {
    display: block;
}

/* Fade-In Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}
/*TAB BUTTON*/
