/*
 Theme Name:   Woodmart Child
 Description:  Woodmart Child Theme
 Author:       XTemos
 Author URI:   http://xtemos.com
 Template:     woodmart
 Version:      1.0.0
 Text Domain:  woodmart
*/




.marquee {
  width: 100%;
  white-space: nowrap;
}

.marquee-content {
  display: inline-block;
  animation: marquee 30s linear infinite; /* Increased duration from 10s to 15s to slow down */
}

.marquee-content p {
  font-size: 16px;
  color: #fff;
  display: inline-block;
  margin: 0 40px; /* Increased margin from 20px to 40px for more space */
}

.marquee-content:hover {
  animation-play-state: paused;
}

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



.floating-sidebar {
  display: none; /* Hide by default */
  position: fixed;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  flex-direction: column;
  gap: 15px;
  z-index: 1000;
}

.sidebar-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  background-color: #333;
  color: #fff;
  border-radius: 50%;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.sidebar-icon:hover {
  background-color: #007bff;
}

.sidebar-icon i {
  font-size: 24px;
}

/* Show sidebar only on mobile view (screen width 767px or less) */
@media (max-width: 767px) {
  .floating-sidebar {
    display: flex;
  }
}




/* 11-07-2025  brand page */
.alphabetical-filter-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.alphabet-filter {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 30px;
    justify-content: center;
}

.filter-btn {
    background: #f5f5f5;
    border: 1px solid #ddd;
    padding: 10px 15px;
    cursor: pointer;
    font-size: 16px;
    transition: all 0.3s;
}

.filter-btn:hover,
.filter-btn.active {
    background: #0073aa;
    color: white;
    border-color: #0073aa;
}

.product-list {
    display: flex;
    flex-direction: column;
}

.letter-section {
    margin-bottom: 40px;
}

.letter-title {
    font-size: 24px;
    margin-bottom: 20px;
    border-bottom: 2px solid #0073aa;
    padding-bottom: 10px;
}

.product-item {
    display: inline-block;
    width: 23%;
    margin: 1%;
    text-align: center;
    border: 1px solid #e5e5e5; /* Added border similar to WoodMart product grid */
    padding: 15px; /* Added padding for spacing inside border */
    background: #fff; /* White background for product card */
    transition: all 0.3s ease; /* Smooth transition for hover effects */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05); /* Subtle shadow for depth */
}

.product-item:hover {
    border-color: #ccc; /* Slightly darker border on hover */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); /* Enhanced shadow on hover */
    transform: translateY(-3px); /* Slight lift effect on hover */
}

.product-item img {
    max-width: 100%;
    height: auto;
}

.product-item h3 {
    font-size: 18px;
    margin: 10px 0;
    color: #333; /* Match WoodMart's product title color */
}

.product-item .price {
    color: #0073aa;
    font-weight: bold;
}

@media (max-width: 768px) {
    .product-item {
        width: 48%;
    }
}

@media (max-width: 480px) {
    .product-item {
        width: 100%;
    }
}








.alphabetical-filter-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.brand-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 40px;
    justify-content: center;
}

.brand-item {
    width: 150px; /* Adjust based on your brand page */
    text-align: center;
    border: 1px solid #e5e5e5; /* Match product item border */
    padding: 10px;
    background: #fff;
    transition: all 0.3s ease;
}

.brand-item:hover {
    border-color: #ccc;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transform: translateY(-3px);
}

.brand-item img.brand-logo {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

.brand-item a {
    text-decoration: none;
    color: #333;
    font-size: 16px;
}

.alphabet-filter {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 30px;
    justify-content: center;
}

.filter-btn {
    background: #f5f5f5;
    border: 1px solid #ddd;
    padding: 10px 15px;
    cursor: pointer;
    font-size: 16px;
    transition: all 0.3s;
}

.filter-btn:hover,
.filter-btn.active {
    background: #0073aa;
    color: white;
    border-color: #0073aa;
}

.product-list {
    display: flex;
    flex-direction: column;
}

.brand-section {
    margin-bottom: 40px;
}

.brand-title {
    font-size: 24px;
    margin-bottom: 20px;
    border-bottom: 2px solid #0073aa;
    padding-bottom: 10px;
}

.product-item {
    display: inline-block;
    width: 23%;
    margin: 1%;
    text-align: center;
    border: 1px solid #e5e5e5; /* Border as per your request */
    padding: 15px; /* Padding for spacing inside border */
    background: #fff; /* White background for product card */
    transition: all 0.3s ease; /* Smooth transition for hover effects */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05); /* Subtle shadow for depth */
}

.product-item:hover {
    border-color: #ccc; /* Slightly darker border on hover */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); /* Enhanced shadow on hover */
    transform: translateY(-3px); /* Slight lift effect on hover */
}

.product-item img {
    max-width: 100%;
    height: auto;
}

.product-item h3 {
    font-size: 18px;
    margin: 10px 0;
    color: #333; /* Match WoodMart's product title color */
}

.product-item .price {
    color: #0073aa;
    font-weight: bold;
}

@media (max-width: 768px) {
    .brand-item {
        width: 120px;
    }
    .product-item {
        width: 48%;
    }
}

@media (max-width: 480px) {
    .brand-item {
        width: 100px;
    }
    .product-item {
        width: 100%;
    }
}








/* 1-8-25 */
/* .city-filter-form {
    margin-bottom: 20px;
} */

.city-filter-form select {
    width: 200px;
    padding: 10px;
    border: 1px solid #000;
    border-radius: 4px;
    background-color: #007bc4;
    font-size: 14px;
    color: #000;
}

.city-filter-form select:focus {
    outline: none;
    border-color: #83b735; /* WoodMart primary color */
}




.city-filter-header {
	    margin-bottom: 10px;
}







