.showroom-container {
  width: 100%;
  padding: 80px 0; }
  .showroom-container .showroom-title {
    color: #173963;
    text-align: center;
    font-size: 40px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 40px; }
    @media (max-width: 767px) {
      .showroom-container .showroom-title {
        font-size: 32px; } }
  .showroom-container .content-wrapper {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: stretch;
    gap: 0px;
    width: 100%;
    background-color: #f4f5f7;
    border-radius: 8px;
    overflow: hidden; }
  .showroom-container .search-section {
    min-width: 540px;
    max-width: 540px; }
  .showroom-container .search-container {
    background-color: #f4f5f7;
    padding: 32px;
    border-radius: 8px 8px 0 0;
    margin-bottom: 0; }
  .showroom-container .search-filters {
    width: 100%; }
    .showroom-container .search-filters .search-dropdown {
      width: 100%;
      font-size: 16px;
      color: #173963; }
  .showroom-container .dropdown-select {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    border-radius: 28px;
    border: 1px solid #173963;
    background: #fff;
    padding: 12px 16px;
    margin-bottom: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative; }
    .showroom-container .dropdown-select:hover {
      border-color: #173963; }
    .showroom-container .dropdown-select span {
      flex: 1;
      color: #173963;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis; }
    .showroom-container .dropdown-select .dropdown-icon {
      width: 20px;
      height: 20px;
      object-fit: contain; }
    .showroom-container .dropdown-select.active .dropdown-menu {
      display: block; }
  .showroom-container .dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    z-index: 100;
    margin-top: 4px;
    padding: 8px 0; }
    .showroom-container .dropdown-menu .dropdown-item {
      padding: 8px 16px;
      cursor: pointer;
      color: #173963;
      transition: all 0.3s ease; }
      .showroom-container .dropdown-menu .dropdown-item:hover {
        background: #f4f5f7;
        color: #173963; }
      .showroom-container .dropdown-menu .dropdown-item.active {
        background: #173963;
        color: #fff; }
  .showroom-container .search-button {
    width: 100%;
    border-radius: 6px;
    background-color: #173963;
    padding: 12px;
    font-size: 16px;
    color: #fff;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease; }
    .showroom-container .search-button:hover {
      background-color: #0d213a; }
  .showroom-container .search-results {
    color: #173963;
    font-size: 14px;
    margin-top: 16px;
    margin-bottom: 0; }
    .showroom-container .search-results strong {
      font-weight: 600; }
  .showroom-container .showroom-list {
    background-color: #f4f5f7;
    border-radius: 0 0 8px 8px;
    max-height: 400px;
    overflow-y: auto; }
    .showroom-container .showroom-list::-webkit-scrollbar {
      width: 6px; }
    .showroom-container .showroom-list::-webkit-scrollbar-track {
      background: #f4f5f7; }
    .showroom-container .showroom-list::-webkit-scrollbar-thumb {
      background: #173963;
      border-radius: 3px; }
  .showroom-container .showroom-item {
    background-color: #f4f5f7;
    padding: 32px 32px 0 32px;
    transition: all 0.3s ease;
    cursor: pointer;
    border-bottom: 1px solid rgba(23, 57, 99, 0.1); }
    .showroom-container .showroom-item:hover, .showroom-container .showroom-item.active {
      background-color: #fff;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1); }
    .showroom-container .showroom-item .showroom-name {
      color: #A2C6D2;
      font-size: 16px;
      font-weight: 600;
      line-height: 24px;
      margin: 0 0 12px 0; }
    .showroom-container .showroom-item .contact-info,
    .showroom-container .showroom-item .location-info {
      display: flex;
      flex-direction: row;
      justify-content: flex-start;
      align-items: flex-start;
      gap: 8px;
      margin-top: 8px;
      color: #173963;
      font-size: 16px;
      line-height: 24px;
      font-weight: 400; }
    .showroom-container .showroom-item .info-icon {
      width: 16px;
      height: 16px;
      object-fit: contain;
      margin-top: 3px; }
    .showroom-container .showroom-item .phone-number,
    .showroom-container .showroom-item .address-text {
      flex: 1; }
  .showroom-container .map-section {
    flex: 1;
    height: 677px;
    border-radius: 8px;
    overflow: hidden;
    position: relative; }
    .showroom-container .map-section .google-map {
      width: 100%;
      height: 100%;
      border: none;
      opacity: 1;
      transition: opacity 0.3s ease; }
      .showroom-container .map-section .google-map.loading {
        opacity: 0; }
  .showroom-container .map-loading {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: none;
    color: #173963; }
    .showroom-container .map-loading.active {
      display: block; }
    .showroom-container .map-loading i {
      font-size: 40px;
      animation: spin 1s linear infinite; }
  .showroom-container .error-message,
  .showroom-container .map-error {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 32px;
    text-align: center;
    color: #8F8F8F; }
    .showroom-container .error-message i,
    .showroom-container .map-error i {
      font-size: 48px;
      margin-bottom: 16px;
      color: #173963; }
    .showroom-container .error-message p,
    .showroom-container .map-error p {
      margin: 0;
      font-size: 16px;
      line-height: 1.5; }

@keyframes spin {
  0% {
    transform: rotate(0deg); }
  100% {
    transform: rotate(360deg); } }
  @media (max-width: 991px) {
    .showroom-container {
      padding: 40px 20px; }
    .showroom-container .content-wrapper {
      flex-direction: column; }
    .showroom-container .search-section {
      min-width: 100%;
      max-width: 100%; }
    .showroom-container .map-section .google-map {
      height: 400px; } }

.store-gallery {
  background-color: rgba(162, 198, 210, 0.3);
  display: flex;
  width: 100%;
  padding: 80px 0 50px 0;
  flex-direction: column;
  align-items: center; }
  .store-gallery .gallery-title {
    color: #173963;
    text-align: center;
    font-size: 40px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 40px; }
    @media (max-width: 767px) {
      .store-gallery .gallery-title {
        font-size: 32px; } }
  .store-gallery .featured-image-container {
    position: relative;
    width: 100%;
    border-radius: 12px;
    overflow: hidden; }
  .store-gallery .featured-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease; }
  .store-gallery .featured-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.2));
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease; }
  .store-gallery .featured-image-container:hover .featured-image {
    transform: scale(1.05); }
  .store-gallery .featured-image-container:hover .featured-image-overlay {
    opacity: 1; }
  .store-gallery .store-name {
    color: #fff;
    font-size: 40px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 16px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2); }
  .store-gallery .store-address {
    color: #fff;
    font-size: 20px;
    font-weight: bold;
    text-align: center;
    max-width: 80%;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2); }
  .store-gallery .store-slider {
    position: relative; }
    .store-gallery .store-slider .owl-nav button {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      width: 40px;
      height: 40px;
      background-color: rgba(0, 0, 0, 0.3) !important;
      border-radius: 6px !important;
      display: flex !important;
      align-items: center;
      justify-content: center;
      color: #fff !important;
      z-index: 2;
      font-size: 18px !important;
      outline: none; }
      .store-gallery .store-slider .owl-nav button:hover {
        background: #173963 !important; }
      .store-gallery .store-slider .owl-nav button i {
        color: #fff;
        font-size: 18px; }
    .store-gallery .store-slider .owl-nav .owl-prev {
      left: -20px; }
    .store-gallery .store-slider .owl-nav .owl-next {
      right: -20px; }
    .store-gallery .store-slider .owl-dots {
      margin-top: 24px;
      text-align: center; }
      .store-gallery .store-slider .owl-dots .owl-dot span {
        width: 8px;
        height: 8px;
        margin: 0 4px;
        background: #D9D9D9;
        border-radius: 50%;
        transition: all 0.3s ease; }
      .store-gallery .store-slider .owl-dots .owl-dot:hover span {
        background: #173963;
        transform: scale(1.5); }
      .store-gallery .store-slider .owl-dots .owl-dot.active span {
        background: #173963;
        transform: scale(1.5); }
  @media (max-width: 991px) {
    .store-gallery {
      padding: 40px 0px 40px 0; }
    .store-gallery .store-name {
      font-size: 32px;
      margin-bottom: 12px; }
    .store-gallery .store-address {
      font-size: 14px; }
    .store-gallery .store-slider .owl-nav button {
      width: 32px;
      height: 32px; }
      .store-gallery .store-slider .owl-nav button i {
        font-size: 16px; } }
  @media (max-width: 767px) {
    .store-gallery .store-name {
      font-size: 24px;
      margin-bottom: 8px; }
    .store-gallery .store-address {
      font-size: 12px; }
    .store-gallery .store-slider .owl-nav button {
      width: 28px;
      height: 28px; }
      .store-gallery .store-slider .owl-nav button i {
        font-size: 14px; }
    .store-gallery .store-slider .owl-nav .owl-prev {
      left: 0px; }
    .store-gallery .store-slider .owl-nav .owl-next {
      right: 0px; } }

.page-store-partners {
  background-color: #A2C6D24D;
  padding: 0px 0px 80px 0px; }
  .page-store-partners .partner-logo {
    background: #fff;
    border-radius: 8px;
    padding: 20px;
    margin: 0 10px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease; }
  .page-store-partners .partner-logo img {
    max-width: 100%;
    max-height: 80px;
    object-fit: contain; }
  .page-store-partners .owl-nav {
    display: flex;
    justify-content: center;
    margin-top: 20px; }
  .page-store-partners .owl-prev, .page-store-partners .owl-next {
    width: 40px;
    height: 40px;
    background: #fff !important;
    border-radius: 50% !important;
    margin: 0 10px;
    display: flex !important;
    align-items: center;
    justify-content: center;
    color: #333 !important;
    font-size: 24px !important; }
  .page-store-partners .owl-prev:hover, .page-store-partners .owl-next:hover {
    background: #f0f0f0 !important; }
  @media (max-width: 991.98px) {
    .page-store-partners {
      padding: 30px 0; }
      .page-store-partners h2 {
        font-size: 32px;
        margin-bottom: 30px; } }
