.etc-domains-carousel {
    position: relative;
    overflow: hidden;
    padding-bottom: 40px;
    /* Space for scrollbar */
}

.etc-domain-slide {
    height: auto; /* Allow slides to stretch to the tallest slide */
}

.etc-domain-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
}

.etc-domain-card:hover,
.etc-domain-card:focus {
    text-decoration: none;
    outline: none;
    transform: translateY(15px);
}

.etc-domain-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1 / 1;
    /* Make them square as in the screenshot */
    margin-bottom: 15px;
}

.etc-domain-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%);
    transition: all 0.3s ease-in-out;
}

.etc-domain-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease-in-out;
}

.etc-domain-card:hover .etc-domain-image img {
    filter: grayscale(0%);
    transform: scale(1.05);
    /* Zoom effect */
}

.etc-domain-card:hover .etc-domain-overlay {
    background: rgba(0, 0, 0, 0);
}

.etc-domain-text-wrap {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.etc-domain-title {
    font-size: 15px;
    font-weight: 500;
    text-transform: uppercase;
    color: #c79a40;
    /* Gold color from screenshot */
    margin: 0;
    letter-spacing: 0.5px;
    transition: color 0.3s;
}

.etc-domain-card:hover .etc-domain-title {
    color: #a88133;
}

.etc-domain-subtitle {
    font-size: 13px;
    color: #646970;
    margin-top: 6px;
    line-height: 1.4;
    transition: color 0.3s;
}

/* Scrollbar specific style from screenshot */
.etc-domains-scrollbar {
    background: rgba(0, 0, 0, 0.05);
    height: 3px !important;
    bottom: 0 !important;
    left: 0 !important;
    width: 100% !important;
}

.etc-domains-scrollbar.swiper-scrollbar-horizontal {
    border-bottom: 3px solid #e0e0e03b;
    margin-bottom: 5px;
    padding: 0 0px 0 10px;
}

.etc-domains-carousel .swiper-scrollbar-drag {
    background: #c79a40;
    /* Gold */
    border-radius: 30px;
    top: -3px;
    height: 8px;
    cursor: grab;
}