.about-artist {
  padding: 30px 0;
}

.about-artist-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.about-artist-text {
  flex: 1;
}

.about-artist-text h2 {
  font-weight: bold;
  font-size: 1.5rem;
  margin-bottom: 0.8rem;
}

.about-artist-text p {
    margin-bottom: 1.2rem;
    font-size: 17px;
}

.read-more-btn {
  display: inline-block;
  padding: 0.5rem 1rem;
  text-decoration: none;
  font-weight: bold;
  border-radius: 2px;
}

.about-artist-image img {
  max-width: 100%;
  height: auto;
  border-radius: 4px;
}


.about-artist-image {
    flex: 1;
}
#site-logo #site-logo-inner{
    min-width: 165px;
}
#site-logo #site-logo-inner a {display: block;}
#site-logo #site-logo-inner a img.custom-logo {width: 100%;}
.about-artist-text h1 {
    font-size: 30px;
}
.about-artist-text h1 span{
    font-family: "Water Brush", cursive;
    letter-spacing: 2px;
}
.about-artist-text .paint-brush{
    font-family: "Water Brush", cursive;
    font-size: 25px;
    font-weight: 600;
    letter-spacing: 2px;
    color: #795e31;
}
.about-artist-text a.read-more-btn {
    background: #795e31;
    color: #fff;
    padding: 8px 20px;
}
.about-artist-text .signature {
    display: none;
}
.art-category-section {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
     padding: 0;
    margin-bottom: 20px;
}

.category-card {
  position: relative;
  width: 300px;
  height: 400px;
  overflow: hidden;
  border-radius: 16px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
  transition: transform 0.4s ease;
  background-color: #000;
  flex: 1;
}

.category-card:hover {
  transform: translateY(-8px);
}

.category-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}

.category-card:hover .category-image {
  transform: scale(1.1);
  filter: brightness(0.6);
}

.category-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
  padding: 1.2rem;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent 60%);
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: all 0.4s ease;
  padding: 25px;
}

.category-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin: 0;
  transition: transform 0.4s ease;
      font-size: 23px;
    color: #fff;
}

/* Details are hidden by default */
.category-hover-details {
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition: all 0.4s ease;
}

/* On hover - slide title up and show details */
.category-card:hover .category-title {
  transform: translateY(0px);
}

.category-card:hover .category-hover-details {
  opacity: 1;
  max-height: 200px;
  margin-top: 0.8rem;
}

.category-description {
    font-size: 16px;
    margin-bottom: 20px;
    line-height: 22px;

}

.know-more-btn {
  display: inline-block;
  background-color: #fff;
  color: #111;
  padding: 0.4rem 1rem;
  border-radius: 6px;
  font-weight: 600;
  text-decoration: none;
}
.heading h2.section-heading {
    font-size: 30px;
    position: relative;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}
.heading h2.section-heading::before {
background: url(../img/bg-2.png) no-repeat center center;
content: '';
    width: 60px;
    height: 60px;
    display: block;
    background-size: 100%;
}
.custom-product-carousel {
  margin: 40px 0;
}

.product-card {
  padding: 0px;
  background: #fff;
  border: 1px solid transparent;
  text-align: center;
  transition: all 0.3s ease;
}

.product-card:hover {
  border: 1px solid #ccc;
}

.product-card img {
  max-width: 100%;
  height: auto;
  margin-bottom: 10px;
}

.product-card h3 {
  font-size: 1rem;
  margin-bottom: 5px;
  color: #333;
}

.product-card .price {
  color: #b12704;
  font-weight: bold;
}
.custom-product-carousel .slick-list .slick-track {
    display: flex;
    gap: 20px;
}