/**
 * Theme Name:     Hostinger blog theme Child
 * Author:         Hostinger
 * Template:       hostinger-blog
 * Text Domain:	   hostinger-blog-theme-child
 * Description:    Hostinger Blog Theme is the perfect choice for bloggers seeking a powerful yet lightweight solution. Built with SEO and mobile responsiveness in mind, this theme ensures optimal performance and a better online presence. It includes pre-made home, about us, contact us, and blog pages, giving your blog a seamless and quick start. Regardless of your niche, take your blog to the next level with this lightweight and professional-looking theme.
 */
/* Artist card layout */
/* Container */
h4.js-artist-name a {
    color: #000 !important;
    font-size: 18px !important;
    font-weight: 500;
}
.js-artist-item {
  padding: 16px 20px;
  border: 1px solid #e9ecef;
  border-radius: 10px;
  background: #fff;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

/* Hover – subtle, professional */
.js-artist-item:hover {
  border-color: #dee2e6;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.06);
}

/* Avatar */
.js-artist-avatar {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  background: #f5f6f7;
}

.js-artist-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Info */
.js-artist-info {
  margin-left: 18px;
}

.js-artist-name a{
  margin: 0;
  font-size: 17px !important;
  font-weight: 500 !important;
  color: #212529 !important;
}

/* Mobile */
@media (max-width: 576px) {
  .js-artist-avatar {
    width: 80px;
    height: 80px;
  }

  .js-artist-name {
    font-size: 16px;
  }
}

.select2-container .select2-selection {
	border: none !important;}
span#select2-billing_country-container,.select2-container .select2-selection--single .select2-selection__rendered {
    border-radius: 6px !important;
    padding: 10px !important;
    border: 1px solid #ccc !important ;
}
input#woocommerce-product-search-field-0 {
    padding: 10px 12px;
    font-size: 15px;
    border: 1px solid #ccc;
    border-radius: 8px;
    background: #fff;
    appearance: none;
    transition: all 0.3s;
}
form.woocommerce-product-search button {
    border: none;
    background: #7b4a1d;
    color: #fff !important;
    padding: 8px 18px;
    border-radius: 6px;
    color: #333;
    font-weight: 500;
    text-decoration: none;
    transition: .3s;
}
.nav-tabs .nav-link:hover {
    color: #2a2a2a !important;
}
#menu-header .menu-item a {
    position: relative;
}

.menu-cart-icon {
    font-size: 20px;
}

.menu-cart-count {
    position: absolute;
    top: -6px;
    right: -6px;
    background: #e53935;
    color: #fff;
    font-size: 11px;
    min-width: 16px;
    height: 16px;
    line-height: 16px;
    text-align: center;
    border-radius: 50%;
    display: none;
}

.menu-cart-count:not(:empty) {
    display: inline-block;
}


.woocommerce-variation-description {
    display: none !important;
}
/* Card wrapper */
.storytime-card {
    display: block;
    background: #ffffff;
    border-radius: 1rem; /* rounded-2xl */
    overflow: hidden;
    border: 1px solid rgba(212, 196, 176, 0.5); /* warmbeige/50 */
    text-decoration: none;
    color: inherit;
    transition: all 0.5s ease;
}

/* Hover shadow */
.storytime-card:hover {
    box-shadow: 0 20px 30px rgba(0, 0, 0, 0.12); /* hover:shadow-xl */
}

/* Image container */
.storytime-card-image {
    position: relative;
    height: 16rem; /* h-64 */
    overflow: hidden;
}

/* Image */
.storytime-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

/* Image zoom on hover */
.storytime-card:hover .storytime-card-image img {
    transform: scale(1.05);
}

/* Content padding */
.storytime-card-content {
    padding: 1.5rem; /* p-6 */
}

/* Title */
.storytime-card-content h3 {
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: 24px; /* text-2xl */
    font-weight: 600;
    margin-bottom: 0.5rem;
}

/* Description */
.storytime-card-content p {
    font-size: 16px;
    font-weight: 300; /* font-light */
    line-height: 1.7; /* leading-relaxed */
    color: #8b7b68; /* muted tan */
    margin-bottom: 0;
}

/* Explore link */
.storytime-link {
    margin-top: 1rem; /* mt-4 */
    display: inline-flex;
    align-items: center;
    gap: 0.5rem; /* gap-2 */
    font-weight: 500;
    color: #6f4e37; /* coffee brown */
    transition: all 0.3s ease;
}

/* Hover gap animation (group-hover:gap-3) */
.storytime-card:hover .storytime-link {
    gap: 0.75rem;
}

/* Remove underline */
.storytime-card:hover,
.storytime-card:focus {
    text-decoration: none;
}

