/* header */
      .main-menu__link:hover {
    background-color: #333;   /* optional background on hover */
    color: #a72125!important;
        text-decoration: none !important; 
}

.brands-section {
    padding: 40px 0;
 
}

.brands-section h2 {
    text-align: center;
    margin-bottom: 30px;
    font-size: 28px;
    color: #333;
    font-weight: 600;
}

.block-brands__item-link {
    text-decoration: none;
    color: inherit;
    display: block;
    transition: all 0.3s ease;
    padding: 15px;
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.block-brands__item-link:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 25px rgba(0,0,0,0.15);
    color: inherit;
    text-decoration: none;
    background: #fff;
}

.image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
    filter: none !important; /* keep full color */
}

.block-brands__item-link:hover .image-container img {
    transform: scale(1.05);
    filter: none !important; /* no black & white on hover */
}

.image-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(74, 144, 226, 0), rgba(80, 200, 120, 0));
    z-index: 1;
    transition: all 0.3s ease;
    border-radius: 8px;
}

.block-brands__item-link:hover .image-container::before {
    background: linear-gradient(45deg, rgba(74, 144, 226, 0.1), rgba(80, 200, 120, 0.1));
}

.image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
    filter: none !important; /* keep full color */
}

.block-brands__item-link:hover .image-container img {
    transform: scale(1.05);
    filter: none !important; /* no black & white on hover */
}

.no-image-placeholder {
    width: 100%;
    height: 120px;
    background: linear-gradient(135deg, #ddd, #eee);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    /* box-shadow: 0 2px 8px rgba(0,0,0,0.1); */
}

.no-image-placeholder::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: all 0.3s ease;
    transform: rotate(45deg);
}

.block-brands__item-link:hover .no-image-placeholder {
    background: linear-gradient(135deg, #bbb, #ccc);
}

.block-brands__item-link:hover .no-image-placeholder::before {
    animation: shimmer 1s ease-in-out;
}

@keyframes shimmer {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

.block-brands__item-name {
    font-weight: 500;
    color: #333;
    font-size: 16px;
    transition: all 0.3s ease;
    position: relative;
}

/* Optional: Change name color on hover */
/* .block-brands__item-link:hover .block-brands__item-name {
    color: #4a90e2;
    transform: scale(1.05);
} */

/* Removed underline effect */
/*
.block-brands__item-name::after { ... }
.block-brands__item-link:hover .block-brands__item-name::after { ... }
*/

/* Responsive adjustments */
@media (max-width: 768px) {
    .block-brands__item-link {
        padding: 10px;
    }

    .image-container {
        height: 500px;
    }

    .no-image-placeholder {
        height: 100px;
    }
}


/* client logo */

.logo-slider {
  overflow: hidden;
  position: relative;
}
.logo-track {
  display: flex;
  width: calc(250px * 14); /* total logo count * width */
  animation: scroll 20s linear infinite;
}
.logo-item {
  flex: 0 0 auto;
  width: 250px;
  padding: 10px;
}
.logo-item img {
  max-width: 100%;
  height: auto;
  filter: grayscale(100%);
  transition: filter 0.3s;
}
.logo-item img:hover {
  filter: grayscale(0%);
}

@keyframes scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}





/* category */



    .gallery-frame {
      border: 1px solid #ddd;
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
      transition: 0.3s;
      background: #fff;
      padding: 10px;
    }

    .gallery-frame:hover {
      transform: translateY(-5px);
    }

    .gallery-image {
      position: relative;
      overflow: hidden;
      border-radius: 8px;
    }

    .gallery-image img {
      width: 100%;
      height: auto;
      transition: transform 0.3s ease-in-out;
      border-radius: 8px;
    }

    .gallery-image:hover img {
      transform: scale(1.05);
    }

    .overlay-icon {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      color: #fff;
      font-size: 2rem;
      background-color: rgba(0, 0, 0, 0.6);
      padding: 10px;
      border-radius: 50%;
      opacity: 0;
      transition: opacity 0.3s;
      z-index: 2;
    }

    .gallery-image:hover .overlay-icon {
      opacity: 1;
    }

    .image-description {
      text-align: center;
      margin-top: 10px;
      font-size: 16px;
      font-weight: 500;
    }
  .thumbnail-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 0 8px rgba(0,0,0,0.1);
  }

  .gallery-frame {
    background-color: #fff;
    padding: 10px;
    border-radius: 12px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
  }

  .image-description {
    margin-top: 10px;
    font-weight: 500;
  }
  



  /* client logo */
    
  .logo-track {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    align-items: center;
    padding: 20px 0;
  }

  .logo-item img {
    height: 150px; /* Set your desired height */
    width: 150px;  /* Set your desired width */
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
  }

  .logo-item img:hover {
    transform: scale(1.05);
  }



/* index popular products */
.block-sale__carousel .owl-carousel {
    width: 100% !important;
    max-width: 100% !important;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15) !important;
}

@media (max-width: 768px) {
    .block-sale__item {
        max-width: 280px !important;
        margin: 0 auto;
    }
    
    .product-card {
        min-height: 480px !important;
    }
    
    .product-card__image {
        height: 240px !important;
    }
    
    .product-card__image > div {
        height: 240px !important;
    }
    
    .product-card__image img,
    .product-card__image > div > a > div {
        height: 240px !important;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .block-sale__item {
        max-width: 320px !important;
    }
}

@media (min-width: 1025px) {
    .block-sale__item {
        max-width: 350px !important;
    }
}

.container-fluid {
    width: 100% !important;
    max-width: 100% !important;
    padding-left: 15px !important;
    padding-right: 15px !important;
}




/* property list'si */
.ribbon {
    position: absolute;
    right: -5px;
    top: -5px;
    z-index: 10;
    overflow: hidden;
    width: 100px;
    height: 100px;
    text-align: right;
}

.ribbon span {
    font-size: 11px;
    font-weight: bold;
    color: #FFF;
    text-transform: uppercase;
    text-align: center;
    line-height: 18px;
    transform: rotate(45deg);
    width: 120px;
    display: block;
    background: linear-gradient(#F70505 0%, #8F0808 100%);
    box-shadow: 0 3px 10px -5px rgba(0, 0, 0, 1);
    position: absolute;
    top: 25px;
    right: -30px;
    padding: 2px 0;
}

.offer {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 15px 0;
    padding: 10px;
    background: #f8f9fa;
    border-radius: 5px;
}

.offer-text {
    font-size: 16px;
    font-weight: bold;
    color: #333;
}

.offer-text-2 {
    font-size: 22px;
    font-weight: bold;
    color: #e74c3c;
}

.discount-holder {
    display: inline-block;
    background: #f39c12;
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: bold;
    margin-bottom: 15px;
}

.product__actions {
    border-top: 1px solid #eee;
    padding-top: 20px;
    margin-top: 20px;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    font-size: 14px;
    transition: all 0.3s ease;
    border: none;
    color: white;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    color: white;
    text-decoration: none;
}

.btn-success { background-color: #25D366; }
.btn-primary { background-color: #007bff; }
.btn-info { background-color: #17a2b8; }
.btn-secondary { background-color: #6c757d; }

.arrow-up {
    width: 0; 
    height: 0; 
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-bottom: 10px solid #ddd;
    margin: 10px 0;
}

.product {
    position: relative;
    margin-bottom: 30px;
}

.product__features ul li {
    margin-bottom: 8px;
    padding: 5px 0;
    border-bottom: 1px solid #f0f0f0;
}

.product__features ul li:last-child {
    border-bottom: none;
}

.product__excerpt p {
    line-height: 1.6;
    color: #666;
}

      .readmore {
      max-width: 350px;
      /*        border: 1px solid #333;*/
      padding: 10px;
      }
      .readmore.less {
      white-space: nowrap;
      text-overflow: ellipsis;
      overflow: hidden;
      }
      [dir=ltr] .product--layout--full .product__gallery{
      padding:0px;
      margin:0px;
      }
      .products-list[data-layout="list"] .product-card .product-card__image {
      padding: 0px;
      }
      .bx-wrapper {
      margin:0px;
      }
      .btn-lg:not(.btn-icon) {
      font-size: 14px;
      line-height: 22px;
      padding: calc(20px / 2) 24px;
      }
      [dir=ltr] .products-list[data-layout="list"] .product-card .product-card__info {
      /* padding-left: 16px; */
      padding: 10px !important;
      }
   


 

/* property list details page  */

.product-card {
    background: #fff;
    border-radius: 10px;
    padding: 30px;
    margin: 30px auto;
    max-width: 1100px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}

.product-layout {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.product-images {
    flex: 1;
    min-width: 300px;
}

.product-images img.main-img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 15px;
    transition: 0.3s all;
}

.product-thumbnails {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.product-thumbnails img {
    width: 70px;
    height: 70px;
    object-fit: cover;
    border: 2px solid #ddd;
    border-radius: 5px;
    cursor: pointer;
}

.product-form {
    flex: 1;
    min-width: 300px;
}

.product-form h2 {
    margin-bottom: 10px;
}

.rating {
    color: #ffc107;
    font-size: 20px;
}

.price-box {
    background: #f8f9fa;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 15px;
}

.price-box span {
    color: red;
    font-weight: bold;
    font-size: 20px;
}

.product-specs {
    width: 100%;
    margin-bottom: 20px;
}

.whatsapp-button {
    margin-top: 20px;
}

.whatsapp-button a {
    padding: 10px 20px;
    background: #25D366;
    color: white;
    border-radius: 5px;
    display: inline-block;
    text-decoration: none;
}



/* related product property page  */
/* Main container styles */
.block-sale__item {
    width: 100% !important;
    max-width: 350px;
    padding: 8px;
}

.product-card {
    width: 100% !important;
    height: auto !important;
    min-height: 40px !important;
    margin: 0;
    padding: 0;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.product-card__image {
    width: 100% !important;
    height: 280px !important;
    overflow: hidden;
    position: relative;
}

.image--type--product {
    width: 100% !important;
    height: 280px !important;
}

.image--type--product a {
    display: block;
    width: 100%;
    height: 100%;
}

.image__tag {
    width: 100% !important;
    height: 280px !important;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.image__tag:hover {
    transform: scale(1.05);
}

/* Fallback image styles */
.image-fallback {
    width: 100% !important;
    height: 280px !important;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: none;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    color: white;
}

.image-fallback i {
    font-size: 40px;
    margin-bottom: 12px;
    opacity: 0.7;
}

.image-fallback span {
    font-size: 14px;
    font-weight: 600;
}

.image-fallback small {
    margin-top: 5px;
    opacity: 0.8;
    font-size: 11px;
}

/* No image placeholder */
.no-image-placeholder {
    width: 100% !important;
    height: 280px !important;
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    color: white;
}

.no-image-placeholder i {
    font-size: 40px;
    margin-bottom: 12px;
    opacity: 0.8;
}

.no-image-placeholder span {
    font-size: 16px;
    font-weight: 600;
}

.no-image-placeholder small {
    margin-top: 8px;
    opacity: 0.9;
    font-size: 12px;
}

/* Empty state styles */
.empty-state {
    width: 100% !important;
    max-width: 350px;
    padding: 8px;
}

.empty-state .product-card {
    min-height: 350px !important;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8f9fa;
}

.empty-state-content {
    text-align: center;
    padding: 40px;
}

.empty-state-content i {
    font-size: 40px;
    color: #6c757d;
    margin-bottom: 15px;
}

.empty-state-content h5 {
    color: #495057;
    margin-bottom: 10px;
}

.empty-state-content p {
    color: #6c757d;
    font-size: 14px;
    margin: 0;
}




/* gallary  */

    .gallery-frame {
      border: 1px solid #ddd;
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
      transition: 0.3s;
      background: #fff;
      padding: 10px;
    }

    .gallery-frame:hover {
      transform: translateY(-5px);
    }

    .gallery-image {
      position: relative;
      overflow: hidden;
      border-radius: 8px;
    }

    .gallery-image img {
      width: 100%;
      height: auto;
      transition: transform 0.3s ease-in-out;
      border-radius: 8px;
    }

    .gallery-image:hover img {
      transform: scale(1.05);
    }

    .overlay-icon {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      color: #fff;
      font-size: 2rem;
      background-color: rgba(0, 0, 0, 0.6);
      padding: 10px;
      border-radius: 50%;
      opacity: 0;
      transition: opacity 0.3s;
      z-index: 2;
    }

    .gallery-image:hover .overlay-icon {
      opacity: 1;
    }

    .image-description {
      text-align: center;
      margin-top: 10px;
      font-size: 16px;
      font-weight: 500;
    }
  .thumbnail-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 0 8px rgba(0,0,0,0.1);
  }

  .gallery-frame {
    background-color: #fff;
    padding: 10px;
    border-radius: 12px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
  }

  .image-description {
    margin-top: 10px;
    font-weight: 500;
  }
  