/* Cyberpunk Black & Red Theme for Etsy Listings */
.etsy-shop-listing-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    background: #941212;
    padding: 20px;
}

.etsy-shop-listing-card {
    background: linear-gradient(135deg, #941212, #450000);
    border: 2px solid #ff0033;
    box-shadow: 0 0 10px #ff0033;
    color: #fff;
    font-family: 'Orbitron', sans-serif;
    text-align: center;
    padding: 10px;
    width: 200px;
    border-radius: 10px;
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    height: 400px; /* Ensuring all cards have a uniform height */
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    position: relative;
}

.etsy-shop-listing-card:hover {
    transform: scale(1.05);
    box-shadow: 0 0 20px #ff0033;
}

.etsy-shop-listing-thumb img {
    width: 100%;
    border-radius: 5px;
    transition: transform 0.3s;
    max-height: 200px; /* Ensure consistent image size */
    object-fit: cover;
}

.etsy-shop-listing-thumb img:hover {
    transform: scale(1.1);
}

.etsy-shop-listing-title {
    font-size: 12px;
    margin-top: 10px;
    overflow-wrap: break-word;
    white-space: normal;
    color: #ff0033;
    min-height: 40px; /* Ensures consistent spacing */
    display: flex;
    align-items: center;
    justify-content: center;
}

.etsy-shop-listing-title a {
    color: #ff0033;
    text-decoration: none;
    transition: color 0.3s;
}

.etsy-shop-listing-title a:hover {
    color: #ff66ff;
}

.etsy-shop-listing-maker {
    font-size: 12px;
    color: #ff66ff;
    margin-top: 5px;
}

.etsy-shop-listing-price {
    font-size: 16px;
    font-weight: bold;
    color: #78C042;
    text-shadow: 0 0 5px #78C042;
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
}

.etsy-shop-currency-code {
    font-size: 12px;
    color: #78C042;
}
