/**
Theme Name: Ouest Location
Theme URI: https://ouestlocationhome.fr/
Author: Jobayer
Author URI: https://jobayerhossan.com
Description: Ouest Location is custom based website
Version: 1.0
Requires at least: 5.3
Tested up to: 5.7.2
Requires PHP: 5.3
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: ouestlocationhome
Tags: custom-menu, custom-logo, entertainment, one-column, two-columns
 **/


:root {
    --primary-color: #FF5A5F;
    --secondary-color: #00A699;
    --accent-color: #FC642D;
    --text-color: #484848;
    --bg-color: #FFFFFF;
}
html {
  scroll-behavior: smooth;
}
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
body {
    font-family: 'Airbnb Cereal', 'Arial', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--bg-color);
}

img {
  max-width: 100%;
  width: auto;
  height: auto;
}
.container {
    width: 100%;
    max-width: 1200px;
    padding: 0 24px;
    margin: 0 auto;
}
header {
    background-color: #fff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}
.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 7px 16px;
    position: relative;
}
.logo-link {
    flex-shrink: 0;
    margin-right: auto;
}
.logo {
    height: 50px;
    max-width: 180px;
    object-fit: contain;
      object-position: left center;
}
/* Desktop/Tablet Navigation */
.desktop-nav {
    display: flex;
    align-items: center;
    gap: 2rem;
}
.desktop-nav ul {
    display: flex;
    gap: 2rem;
    list-style: none;
}
.desktop-nav a {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
}
/* Remove nav-icons class since search is removed */
.nav-icons {
    display: none;
}
.mobile-menu {
    display: none;
    border: none;
    background: none;
    padding: 8px;
    cursor: pointer;
    font-size: 1.5rem;
      color: var(--primary-color);
    margin-left: auto;
}
/* Mobile Navigation */
.mobile-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: white;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    padding: 1rem;
      animation: slideDown 0.3s ease-out;
}
@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.mobile-nav ul {
    list-style: none;
}
.mobile-nav li {
    margin: 1rem 0;
}
.mobile-nav a {
    color: var(--text-color);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.1rem;
}
/* Responsive Design */
@media (max-width: 768px) {
    .desktop-nav {
        display: none;
    }
    .mobile-menu {
        display: block;
    }
    .mobile-nav.active {
        display: block;
    }
    .logo {
        height: 45px;
        display: block;
    }
}
@media (max-width: 768px) {
    .header-content {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        padding:7px 16px;
    }
    .logo {
        height: 45px;
        margin: 0;
    }
    .mobile-menu {
        margin: 0;
        padding: 8px;
        display: flex;
        align-items: center;
    }
}
.hero {
    background-image: url('amazonie-nature.jpg');
    background-size: cover;
    background-position: center;
    min-height: 70vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(2px);
}
.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: #fff;
    max-width: 950px;
    padding: 2rem;
    animation: fadeIn 1s ease-out;
}
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.hero h1 {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    font-family: 'Airbnb Cereal', sans-serif;
    white-space: nowrap;
}
.hero .subtitle {
    font-size: 1.3rem;
    margin-bottom: 0;
}
.search-container {
    background: white;
    border-radius: 32px;
    padding: 8px;
    margin-top: 24px;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.15);
    max-width: 950px;
    margin-left: auto;
    margin-right: auto;
}
.search-form {
    display: flex;
    align-items: center;
    gap: 8px;
}
.search-group {
    flex: 1;
    padding: 8px 16px;
    border-right: 1px solid #e5e5e5;
    position: relative;
}
.search-group:last-of-type {
    border-right: none;
}
.search-group label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    color: #222;
    margin-bottom: 4px;
}
.search-group input,
.search-group select {
    width: 100%;
    border: none;
    background: none;
    font-size: 14px;
    color: #222;
    padding: 4px 0;
}
.search-group input:focus,
.search-group select:focus {
    outline: none;
}
.search-submit {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 16px 24px;
    border-radius: 24px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: background-color 0.2s;
}
.search-submit:hover {
    background: var(--accent-color);
}
@media (max-width: 768px) {
    .search-form {
        flex-direction: column;
        gap: 16px;
    }
    .search-group {
        width: 100%;
        border-right: none;
        border-bottom: 1px solid #e5e5e5;
        padding: 12px;
    }
    .search-group:last-of-type {
        border-bottom: none;
    }
    .search-submit {
        width: 100%;
        justify-content: center;
    }
    .search-container {
        border-radius: 16px;
        margin: 24px 16px;
    }
}
.booking-platforms {
    display: none;
}
@media (max-width: 768px) {
    .hero {
        min-height: 40vh;
    }
    .hero h1 {
        font-size: 2rem;
    }
    .hero .subtitle {
        font-size: 1rem;
    }
}
@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.6rem;
    }
    .hero .subtitle {
        font-size: 0.9rem;
    }
}
.popular-destinations {
    padding: 2rem 0;
}
.destination-icons {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 1rem;
    padding: 1rem 0;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
}
.destination-icons::-webkit-scrollbar {
    display: none;
}
.destination-icon {
    flex: 0 0 auto;
    width: 100px;
    scroll-snap-align: center;
    text-align: center;
    padding: 0.5rem;
    cursor: pointer;
}
.destination-icon img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    transition: transform 0.3s ease;
    margin: 0 auto;
}
.destination-icon p {
    margin-top: 0.5rem;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-color);
    text-align: center;
}
.carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1rem;
}
.indicator {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #ddd;
    transition: background-color 0.3s ease;
}
.indicator.active {
    background-color: var(--primary-color);
}
@media (min-width: 768px) {
    .destination-icons {
        display: grid;
        grid-template-columns: repeat(7, minmax(150px, 1fr));
        overflow-x: visible;
        scroll-snap-type: none;
    }
    .destination-icon {
        width: auto;
    }
    .destination-icon img {
        width: 100px;
        height: 100px;
    }
    .destination-icon p {
        font-size: 16px;
    }
    .carousel-indicators {
        display: none;
    }
}
@media (hover: none) {
    .destination-icons {
        cursor: grab;
    }
    .destination-icons:active {
        cursor: grabbing;
    }
}
.how-it-works {
    background-color: #fff;
    padding: 2rem 0;
}
.steps {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}
.step {
    text-align: center;
    max-width: 300px;
    margin: 1rem;
}
.how-it-works .step-icon {
    font-size: 3rem;
    color: var(--primary-color);
}
.featured-listings {
    padding: 2rem 0;
}
.listings-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}
@media (max-width: 992px) {
    .listings-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 576px) {
    .listings-grid {
        grid-template-columns: 1fr;
    }
}
.listing-card {
    background-color: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s ease;
    position: relative;
}
.listing-card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}
.image-carousel {
    position: relative;
    overflow: hidden;
}
.image-carousel img {
    display: none;
}
.image-carousel img:first-child {
    display: block;
}
.carousel-prev,
.carousel-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: #fff;
    border: none;
    padding: 10px;
    cursor: pointer;
}
.carousel-prev {
    left: 10px;
}
.carousel-next {
    right: 10px;
}
.listing-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}
.listing-details {
    padding: 1rem 1rem 1rem;
}
.listing-title {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}
.listing-location {
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}
.listing-features {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
}
.listing-price {
    font-weight: bold;
    color: var(--primary-color);
}
.listing-button {
    display: block;
    width: 100%;
    padding: 0.5rem;
    background-color: var(--primary-color);
    color: #fff;
    text-align: center;
    text-decoration: none;
    border-radius: 8px;
    font-weight: bold;
    transition: background-color 0.3s ease;
    margin-top: 0.5rem;
    margin-bottom: 0;
}
.listing-button:hover {
    background-color: var(--accent-color);
}

.airbnb-button {
    display: none;
}
.booking-com-button {
    display: none;
}
/* Ensure responsiveness */
@media (max-width: 768px) {
    .listing-details {
        padding: 1rem 1rem 1.25rem;
    }
    .booking-button {
        padding: 0.4rem;
        font-size: 0.9rem;
    }
}
footer {
    background-color: var(--bg-color);
    color: var(--text-color);
    border-top: 1px solid #EBEBEB;
    padding: 2rem 0;
}
.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
	 max-width: 800px;
  	margin: auto;
}
.footer-section {
    margin-bottom: 1rem;
}
.footer-section h3 {
    margin-bottom: 0.5rem;
}
.footer-section ul {
    list-style-type: none;
}
.footer-section ul li {
    margin-bottom: 0.5rem;
}
.footer-section ul li a {
    color: var(--text-color);
    text-decoration: none;
}
.social-icons {
    display: flex;
    gap: 1rem;
}
.social-icons a {
    color: var(--primary-color);
    font-size: 1.5rem;
}
.advantages {
    background-image: url('nature-blur.jpg');
    background-size: cover;
    background-position: center;
    padding: 4rem 0;
    position: relative;
}
.advantages::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(255, 255, 255, 0.8);
}
.advantages .container {
    position: relative;
    z-index: 1;
}
.advantages h2 {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 2rem;
    color: var(--text-color);
}
.advantages-grid {
    display: flex;
    justify-content: space-between;
    gap: 2rem;
}
.advantage-card {
    background-color: #fff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    flex: 1;
    text-align: center;
}
.advantage-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 1rem;
    background-color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.advantage-icon svg {
    width: 32px;
    height: 32px;
    color: #fff;
}
.advantage-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--text-color);
}
.advantage-card p {
    font-size: 0.9rem;
    color: var(--text-color);
}
@media (max-width: 768px) {
    .header-content {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        padding: 7px 0px;
    }
    .steps {
        flex-direction: column;
        align-items: center;
    }
    .footer-content {
        flex-direction: column;
    }
    .advantages-grid {
        flex-direction: column;
    }
}
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.4);
}
.modal-content {
    background-color: #fefefe;
    margin: 15% auto;
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
    max-width: 500px;
}
.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}
.close:hover,
.close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}
.form-group {
    margin-bottom: 15px;
}
.form-group label {
    display: block;
    margin-bottom: 5px;
}
.form-group input,
.form-group select {
    width: 100%;
    padding: 8px;
    border: 1px solid #ddd;
    border-radius: 4px;
}
@media (max-width: 768px) {
    .modal-content {
        width: 95%;
        margin: 10% auto;
    }
}

.page_content {
  padding: 40px 0px;
}



/**** Booking CSS ***/

.mphb-recommendation-details-list {
  margin: 0 0 1.45em 1.25em;
  list-style: none;
  margin-left: 0;
}
.mphb-recommendation-details-list > span {
  font-size: 18px;
}
.mphb-recommendation-details-list .mphb-price {
  font-weight: 700;
}
.mphb-recommendation-details-list .mphb-recommendation-item-link {
  color: #851c1f;
  font-size: 18px;
}
.mphb-recommendation-item-guests {
  margin-top: 5px;
}
.mphb-recommendation-total span {
  font-size: 18px;
  font-weight: 800;
}
.mphb_sc_search_results-wrapper .mphb-recommendation .mphb-recommendation-reserve-button {
  background: var(--primary-color);
  color: white;
  padding: 1rem 2rem;
  border: none;
  border-radius: 8px;
  font-size: 1.1rem;
  cursor: pointer;
  transition: background 0.3s;
}
.mphb_sc_search_results-wrapper {
}
.mphb_sc_search_results-wrapper .mphb-recommendation-title {
  margin-top: 15px;
}
.mphb_sc_search_results-wrapper #mphb-recommendation {
  margin-bottom:  15px;
}
.mphb_sc_search_results-wrapper .mphb-reservation-cart {
  margin-bottom: 10px;
}
.mphb-empty-cart-message {
  font-size: 18px;
}
.mphb-loop-room-type-attributes {
  list-style: none;
  border-top: 1px solid #e0e1e5;
  display: table;
  width: 100%;
  margin: 1.5625em 0 1.25em;
}
.mphb-loop-room-type-attributes li {
  display: table-row;
  width: 100%;
}
.mphb-loop-room-type-attributes li span {
  display: table-cell;
  border-bottom: 1px solid #e0e1e5;
  padding: .8125em .8125em .8125em 0;
  color: #666;
}
.mphb-loop-room-type-attributes li span.mphb-attribute-title {
  width: 150px;
}
.mphb-loop-room-type-attributes li .mphb-attribute-value span {
  display: inline-block;
  color: #74181a;
  border-bottom: 0px;
}
.mphb-loop-room-type-attributes li .mphb-attribute-value span a {
  color: #74181a;
}
.button.mphb-button.mphb-book-button {
  background: var(--primary-color);
  color: white;
  width: auto;
  padding: 1rem 2rem;
  border: none;
  border-radius: 8px;
  font-size: 1.1rem;
  cursor: pointer;
  transition: background 0.3s;
}
.mphb-view-details-button-wrapper {
  margin: 10px 0px;
}
.mphb-room-type-details-title {
  margin-top: 15px;
  font-size: 24px;
}
.mphb-room-type-title.entry-title a {
  font-size: 24px;
  color: #711619;
}

.mphb_sc_checkout-submit-wrapper input {
  background: var(--primary-color);
  color: white;
  width: auto;
  padding: 1rem 2rem;
  border: none;
  border-radius: 8px;
  font-size: 1.1rem;
  cursor: pointer;
  transition: background 0.3s;
}
.mphb_sc_checkout-submit-wrapper {
  margin-top: 15px;
}
#mphb-billing-details {
}
#mphb-billing-details ~ .mphb-total-price {
  margin-top: 15px;
}
#mphb-billing-details .mphb-gateway-chooser-title {
  font-size: 24px;
}
.mphb_sc_checkout-form input[type="text"], .mphb_sc_checkout-form select, .mphb_sc_checkout-form input[type="email"] {
  width: 100%;
  padding: 0.75rem;
  background: white;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 1rem;
  color: var(--text-color);
  margin-bottom: 20px;
}
.mphb_sc_checkout-form label {
  display: block;
  margin-bottom: 5px;
}
.mphb_sc_checkout-form br {
  display: none;
}
.mphb-checkout-section .mphb-gateway-title.mphb-radio-label {
  display: inline-block;
}
.mphb-customer-note textarea {
  width: 100%;
  padding: 0.75rem;
  background: white;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 1rem;
  color: var(--text-color);
  margin-bottom: 20px;
}
#mphb-billing-details {
  margin-top: 20px;
}
.mphb_cb_checkout_form > .mphb-checkout-section:not(:first-of-type), .mphb_sc_checkout-form > .mphb-checkout-section:not(:first-of-type) {
  margin-top: 2em;
}
.mphb_sc_checkout-wrapper .mphb-login-form-wrap {
  margin-bottom: 2rem;
}
.mphb-reserve-rooms-details {
  margin-top: 20px;
}

.page_booking_wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}
.page_b_right {
  flex: 0 0 calc(33.33% - 20px);
  max-width: calc(33.33% - 20px);
}
.page_b_left {
  flex: 0 0 calc(66.66% - 20px);
  max-width: calc(66.66% - 20px);
}
.page_b_right .mphb_sc_search-wrapper {
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.1);
}
.page_b_right .mphb_sc_search-wrapper input, .page_b_right .mphb_sc_search-wrapper select {
  width: 100%;
  padding: 0.75rem;
  background: white;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 1rem;
  color: var(--text-color);
}
.page_b_right .mphb_sc_search-wrapper label {
  display: ;
}
.page_b_right .mphb_sc_search-wrapper .mphb-required-fields-tip {
  display: none;
}
.page_b_right .mphb_sc_search-wrapper .mphb_sc_search-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.page_b_right .mphb_sc_search-wrapper .mphb_sc_search-form .button {
  background: var(--primary-color);
  color: white;
  width: 100%;
  padding: 1rem;
  border: none;
  border-radius: 8px;
  font-size: 1.1rem;
  cursor: pointer;
  transition: background 0.3s;
}
.mphb_sc_checkout-wrapper .mphb-booking-details .mphb-check-out-date, .mphb_sc_checkout-wrapper .mphb-booking-details .mphb-check-in-date {
  padding: .8125em 0;
  border: 1px solid #e0e1e5;
    border-top-width: 1px;
    border-right-width: 1px;
    border-bottom-width: 1px;
    border-left-width: 1px;
  color: #666;
}
.mphb_sc_checkout-wrapper .mphb-booking-details .mphb-check-in-date {
  border-width: 1px 0;
  margin: 1em 0 0;
}
.mphb_sc_checkout-wrapper .mphb-booking-details .mphb-check-out-date > span:first-child, .mphb_sc_checkout-wrapper .mphb-booking-details .mphb-check-in-date > span:first-child {
  padding-right: .8125em;
  display: inline-block;
}
  .mphb_sc_checkout-wrapper .mphb-booking-details .mphb-check-out-date > span:first-child, .mphb_sc_checkout-wrapper .mphb-booking-details .mphb-check-in-date > span:first-child {
    min-width: 200px;
  }
  .mphb_sc_checkout-wrapper .mphb-booking-details .mphb-check-out-date time, .mphb_sc_checkout-wrapper .mphb-booking-details .mphb-check-in-date time {
  color: #333;
}
.mphb_sc_checkout-wrapper .mphb-booking-details .mphb-check-out-date {
  border-width: 0 0 1px;
}

.mphb-price-breakdown {
  border-collapse: collapse;
  border-spacing: 0;
  margin: 0 0 1.5em;
  table-layout: fixed;
  width: 100%;
}
.mphb-price-breakdown tr td, .mphb-price-breakdown tr th {
  padding: 1.1875em 1.375em;
  border: 1px solid #f0f0f0;
  border-top-width: 1px;
  border-right-width: 1px;
  border-bottom-width: 1px;
  border-left-width: 1px;
  border-width: 1px 0;
  text-align: left;
}
.mphb-price-breakdown-title {
  font-size: 24px;
}
.mphb-customer-details-title {
  font-size: 24px;
}

.search-container .mphb_sc_search-form > p {
  flex: 1;
  padding: 8px 16px;
  border-right: 1px solid #e5e5e5;
  position: relative;
}
.search-container .mphb_sc_search-form {
  display: flex;
  align-items: center;

}
.search-container .mphb-required-fields-tip {
  display: none;
}
.search-container .mphb_sc_search-form label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: #222;
  margin-bottom: 4px;
}
.search-container .mphb_sc_search-form br {
  display: none;
}
.search-container .mphb_sc_search-form input, .search-container .mphb_sc_search-form select {
  width: 100%;
  border: none;
  background: none;
  font-size: 14px;
  color: #222;
  padding: 4px 0;
}
.search-container .mphb_sc_search-form .button {
  background: var(--primary-color);
  color: white;
  border: none;
  padding: 16px 24px;
  border-radius: 24px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: background-color 0.2s;
}
.search-container .mphb_sc_search-form .mphb_sc_search-children {
  display: none;
}
.search-container .mphb_sc_search-form .mphb_sc_search-submit-button-wrapper {
  padding: 0px 8px 0px 0px;
}

.search-container .mphb_sc_search-departement {
  order: 1;
}
.search-container .mphb_sc_search-destinations {
  order: 2;
}
.search-container .mphb_sc_search-check-in-date {
  order: 3;
}
.search-container .mphb_sc_search-check-out-date {
  order: 4;
}
.search-container .mphb_sc_search-adults {
  order: 5;
}
.search-container .mphb_sc_search-submit-button-wrapper {
  order: 6;
}

.button.mphb-button.mphb-confirm-reservation {
  background: var(--primary-color);
  color: white;
  width: auto;
  padding: 1rem 2rem;
  border: none;
  border-radius: 8px;
  font-size: 1.1rem;
  cursor: pointer;
  transition: background 0.3s;
}
.page_b_right .mphb_sc_search-wrapper {
  position: sticky;
  top: 120px;
}
.mphb-currency {
  padding-left: 5px;
}

.footer_btm {
  padding-bottom: 20px;
}
.footer_btm p {
  text-align: center;
}

.copyright a {
  color: var(--primary-color);
  text-decoration: none;
}