/* PDP Share Button Styles */
.pdpShareButton-container {
    position: relative;
    display: inline-flex;
    order: 3;
    width: fit-content;
    margin-block: 0.5rem !important;
}

.pdpShareButton-button {
    display: inline-flex;
    align-items: center;
    cursor: pointer;
    color: rgb(59, 59, 59);
    border: 1px solid rgb(59, 59, 59);
    border-radius: 5px;
    padding: 0.2rem 0.5rem;
    font-size: 14px;
    user-select: none;
    transition: opacity 0.2s;
    opacity: 1;
    background: white;
    font-family: inherit;
}

.pdpShareButton-button:hover {
    opacity: 0.7;
}

.pdpShareButton-icon {
    margin-right: 6px;
}

.pdpShareButton-text {
    /* Text content styling */
}

.pdpShareButton-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    margin-top: 4px;
    background: white;
    border: 1px solid rgb(59, 59, 59);
    border-radius: 5px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    min-width: 180px;
    z-index: 1000;
    display: none;
    flex-direction: column;
    padding: 4px;
}

.pdpShareButton-dropdown.pdpShareButton-open {
    display: flex;
}

.pdpShareButton-option {
    display: flex;
    align-items: center;
    padding: 8px 12px;
    border: none;
    background: white;
    cursor: pointer;
    font-size: 14px;
    color: rgb(59, 59, 59);
    text-align: left;
    transition: background 0.2s;
    font-family: inherit;
}

.pdpShareButton-option:hover {
    background: #f5f5f5;
}

.pdpShareButton-option-icon {
    margin-right: 10px;
}
