/* Hide default WooCommerce variation labels */
.variations .label {
    display: none !important;
}

/* Wrapper for swatches + share buttons */
.swatches-share-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between; /* swatches left, share right */
    gap: 10px;
    margin: 10px 0;
}

/* Swatches container */
.swatches-container {
    display: flex;
    gap: 5px;
}

/* Individual swatch */
.swatch {
    display: inline-block;
    border: 1px solid #000;
    cursor: pointer;
    background: #fff;
    border-radius: 0px;
    transition: all 0.2s ease;
    width: fit-content;
    height: auto;
    text-align: center;
    line-height: 34px;
    padding: 0px 10px;
    font-size: 13px;
}

/* Selected swatch */
.swatch.selected {
    border-color: #000;
    font-weight: bold;
    background: #000;
    color: #fff;
}

/* Share wrapper (both for swatches and single product) */
.swatches-share,
.single-share-wrapper {
    display: flex;
    align-items: center;
    gap: 5px;
    flex-wrap: wrap;
}

/* Share label */
.share-label {
    font-weight: bold;
    margin-right: 5px;
    color: #a3a3a3;
}
.single-share-wrapper li {
    list-style: none !important;
}
/* Share icons */
.swatches-share a span,
.single-share-wrapper a span {
    border-radius: 50px !important;
    padding: 2px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: transparent !important;
}
.product-type-variable .single-share-wrapper {
    display: none;
}

.single-share-wrapper a {
    color: transparent !important;
}
.swatches-share a {
    color: transparent !important;
}
/* Optional: smaller spacing for mobile */
@media (max-width: 1200px) {
    .swatches-share-wrapper {
        flex-direction: column;
        align-items: flex-start !important;
        justify-content: flex-start !important;
    }

    .swatches-share,
    .single-share-wrapper {
        margin-top: 5px;
    }
}
