@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;700&display=swap');
* {
  font-family: 'Montserrat', sans-serif;
}
body {
  font-family: 'Montserrat', sans-serif;
}
#wrapper {
	padding-left:30px;
  	padding-right:30px;
}
#logo {
    width: 230px;
    height: 70px;
    background: url(/img/logo5.png) no-repeat center center;
    background-size: contain; /* or cover */
}
#logo a {
	width: 200px;
  	padding: 90px 0 0;
}
header nav.navbar.navbar-expand {
	background-image: linear-gradient(180deg, #161F3B 0%, #273866 100%);
}
ul#members li a {
    color: #FFF;
}
ul#members li a i{
    color: #FFF;
}
ul#cart-list-nav li a {
    color: #fff;
}
ul#cart-list-nav li a i{
    color: #fff;
}

.navbar-expand .navbar-nav .dropdown-menu {
	background: #273866
}
#moresearches {
	justify-content: center;
}
.dropdown-item:hover,.dropdown-item:focus a{
	color:#273866
}
div#opaccredits {
	background-color: rgb(28, 38, 53);
}
.hrdiv {
    position: relative;
    width: 100%;
    height: 3px;
    background: #c67c4a;
    margin: 20px auto 20px auto;
}

.hr-circle {
    position: absolute;
    top: -6px;
    left: 50%;
    transform: translateX(-50%);
    width: 12px;
    height: 12px;
    background: #b31b1b;
    border-radius: 50%;
    border: 2px solid #fff;
}
.hr-triangle {
    position: absolute;
    top: -9px;              /* adjust for perfect vertical center */
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-bottom: 14px solid #b31b1b;  /* triangle color */
}
.hr-rhombus {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
    width: 14px;
    height: 14px;
    background: #c67c4a;   /* diamond color */
}
#login {
	display:none;
}
.main {
	box-shadow: 0 0 10px #c67c4a;
    border-radius: 5px;
}
.btn-primary {
	background-color: #c67c4a;
    border: 1px solid #c67c4a;
}
.btn-primary:hover, .btn-primary:active {
	background-color: #c67c4a;
    border: 1px solid #c67c4a;
}
#opac-main-search {
    background: #787878;
    margin: 20px auto 5px;
    padding: 15px;
    width: 70%;
    border-radius: 5px;
}
.image-container {
  /*background: #f5f5f5;*/
  display: flex;
  justify-content: center;  /* horizontal center */
  align-items: center;
}

.card {
  position: relative;
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
}

.card img {
  width: 100%;
  display: block;
  transition: transform 0.4s ease, opacity 0.4s ease; /* 👈 transition here */
}

/* Hover effect on image */
.card:hover img {
  transform: scale(1.05);   /* slight zoom */
  opacity: 0.9;            /* slight fade */
}

.overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 80px;
  background: rgba(0, 0, 0, 0.7);
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
}
.overlay h2 {color:#fff}
@media (max-width: 648px) {
  .image-container { display:none;},
  .card img { display: none; },
  .overlay {    display: none;  }
}
.searcha-box {
    background: #fff;
    padding: 25px 30px;
    border-radius: 14px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
    animation: fadeSlideUp 0.9s
ease forwards;
}
.searcha-form {
    display: flex;
    gap: 12px;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 15px;
    animation: fadeSlideUp 1.5s ease forwards;
}
.searcha-form select {
    flex: 1;
    min-width: 225px;
    padding: 12px 14px;
    border: 2px solid #000;
    border-radius: 10px;
    font-size: 15px;
    color: #333;
    background: #fafafa;
    font-family: 'Lato', sans-serif;
    transition: all 0.3s ease;
    cursor: pointer;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}
.searcha-form button {
      background:#c67c4a;
      border:none;
      color:#fff;
      padding:12px 18px;
      font-size:16px;
      font-weight:600;
      border-radius:10px;
      cursor:pointer;
      transition:all 0.3s ease;
      display:flex;
      align-items:center;
      gap:8px;
      box-shadow:0 3px 8px rgba(0,0,0,0.15);
    }

.searcha-form button:hover {
      background:#000; /* عند المرور بالماوس */
      color:#fff;
    }
