/* Banner Styles */
.banner-wrapper {
    position: relative;
    width: 100%;
    height: 300px;
    overflow: hidden;
    /* margin-bottom: 60px; */
}
  
.banner-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 50px;
}

/* Banner Content and Search Form */
.banner-content {
    position: absolute;
    left: 10%;
    right: 10%;
    bottom: 10%;
    padding: 20px;
    background-color: transparent; /* Առանց ֆոնի */
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* .banner-content {
    position: absolute;
    left: 10%;
    right: 10%;
    bottom: 10%;
    padding: 20px;
    background-color: rgba(255, 255, 255, 0.3); 
    backdrop-filter: blur(5px); 
    display: flex;
    flex-direction: column;
    align-items: center;
    border-radius: 10px;
} */
.banner-title {
    z-index: 2;
    white-space: normal;
    animation: slideDown 1.2s ease-out forwards;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 2px;
    transform: translate(-50%, -50%);
    font-family: 'Montserrat', sans-serif;
    font-size: 2.3rem;
    color: #fff;
    font-weight: 600;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    margin-bottom: 330px;
    text-align: center;
}


/* .banner-title {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: 'Playfair Display', serif;
    color: #ffffff;
    font-size: 3.5rem;
    font-weight: 700;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 2px;
    z-index: 2;
    white-space: nowrap;
    opacity: 0;
    animation: slideDown 1.2s ease-out forwards;
} */




.search-form {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    z-index: 10;
}

.search-form .row {
    display: flex;
    flex-wrap: nowrap;
    gap: 15px;
    align-items: center;
}

.search-form .col-md-6 {
    flex: 1;
}

.search-form .form-control,
.search-form .form-select {
    height: 54px;
    border-radius: 27px;
    border: none;
    padding: 0 25px;
    font-size: 16px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    width: 100%;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(5px);
}

.search-form .col-md-6 {
margin-top: 0;
margin-bottom: 0;
}
.search-form .form-control,
.search-form .form-select,
.search-form .btn-submit {
height: 42px;
font-size: 14px;
margin-bottom: 6px;
padding: 0 15px;
}

.search-form .form-select {
    background-position: right 20px center;
}

.search-form .btn-submit {
    height: 54px;
    border-radius: 27px;
    border: none;
    padding: 0 35px;
    font-size: 16px;
    font-weight: 600;
    background: linear-gradient(135deg, #ff7e5f, #feb47b);
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 4px 15px rgba(255, 126, 95, 0.4);
}

.search-form .btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 126, 95, 0.5);
}

.search-form .btn-submit i {
    font-size: 18px;
}

/* Responsive Styles */
@media (max-width: 991px) {
    .banner-wrapper {
        height: 300px;
    }
    .banner-title {
        font-size: 1.5rem;
        margin-bottom: 15px;
    }
    
    .search-form .row {
        flex-wrap: wrap;
    }
    
    .search-form .col-md-6 {
        flex: 1 1 calc(50% - 15px);
        min-width: 150px;
    }
        .search-form .col-md-6 {
        flex: 1 1 100%;
    }
    
    .search-form .col-md-6:last-child {
        flex: 1 1 100%;
        margin-top: 15px;
    }
}

@media (max-width: 768px) {
    .banner-wrapper {
        height: 300px;
    }

    .banner-content {
        bottom: 20%;
        transform: translateY(0);
        padding: 15px 5px;
    }

    .banner-title {
        margin-bottom: 20px;
        transform: none;
        font-size: 1.2rem;
        white-space: normal;
    }

    .search-form {
        width: 95%;
        margin-top: 20px; /* ✅ Ավելացրինք՝ իջեցնելու համար */
    }

    .search-form .row {
        gap: 8px;
    }

    .search-form .col-md-6 {
        margin-top: 0;
        margin-bottom: 0;
    }

    .search-form .form-control,
    .search-form .form-select,
    .search-form .btn-submit {
        height: 42px;
        font-size: 14px;
        margin-bottom: 6px;
        padding: 0 15px;
    }

    .search-form .btn-submit {
        margin-top: 6px;
    }
}

@media (max-width: 576px) {
    .banner-wrapper {
        height: 300px;
    }

    .banner-content {
        bottom: 15%;
        transform: translateY(0);
        padding: 15px 5px;
    }

    .banner-title {
        margin-bottom: 20px;
        transform: none;
        font-size: 1.2rem;
        white-space: normal;
    }

    .search-form {
        width: 95%;
        margin-top: 25px; /* ✅ Ավելացրինք՝ ավելի շատ իջնելու համար */
    }

    .search-form .row {
        gap: 8px;
    }

    .search-form .col-md-6 {
        margin-top: 0;
        margin-bottom: 0;
    }

    .search-form .form-control,
    .search-form .form-select,
    .search-form .btn-submit {
        height: 42px;
        font-size: 14px;
        margin-bottom: 6px;
        padding: 0 15px;
    }

    .search-form .btn-submit {
        margin-top: 6px;
    }
}
/* Հիմնական կոճակի ձևավորում */
.filter-button .btn {
    background-color: white;
    color: #111;
    border: 2px solid #111;
    border-radius: 10px;
    padding: 7px 20px;
    font-size: 17px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    cursor: pointer;
  }
  
  /* Hover էֆեկտ */
  .filter-button .btn:hover {
    background-color: #dbdbdb;
    color: black;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transform: translateY(-2px);
  }
  
  /* Icon-ի սկզբնական չափսերը */
  .filter-button img {
    width: 30px;
    height: 30px;
    transition: transform 0.3s ease;
  }
  
  /* Icon-ի պտտում hover-ի ժամանակ */
  .filter-button .btn:hover img {
    transform: rotate(15deg);
  }
  
  /* Փոքր էկրանների համար՝ <768px */
  @media (max-width: 767px) {
    .filter-button {
      display: flex;
      justify-content: center;
    }
  
    .filter-button .btn {
      width: 40%;
      font-size: 14px;
      padding: 10px 16px;
      gap: 8px;
    }
  
    .filter-button img {
      width: 22px;
      height: 22px;
    }
  }
  
  /* Մեծ էկրանների համար՝ ≥768px */
  @media (min-width: 768px) {
    .filter-button img {
      width: 30px;
      height: 30px;
    }
  }
  

.currency-option {
    position: relative;
}

.currency-input {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.currency-label {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border: 2px solid transparent;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.2s ease;
    background-color: #f8f9fa;
}

.currency-input:checked + .currency-label {
    border-color: #000;
    background-color: #fff;
    box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.1);
}

.currency-label:hover {
    background-color: #fff;
    box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.1);
}

.currency-label img {
    width: 20px;
    height: 20px;
    object-fit: contain;
}