/**
 * Invite a Friend — example styles for round icon share buttons.
 * Bootstrap 4.6-compatible. Adapt colours/spacing to Tygit branding as needed.
 */

.invite-a-friend-options {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.5rem;
}

.invite-share-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    padding: 0;
    margin: 0;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 50%;
    background-color: #fff;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.06);
    cursor: pointer;
    line-height: 1;
    transition: transform 0.12s ease, box-shadow 0.12s ease;
}

.invite-share-button:hover,
.invite-share-button:focus {
    transform: translateY(-1px);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.12);
    outline: none;
}

.invite-share-button:focus {
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

.invite-share-icon {
    display: block;
    width: 1.25rem;
    height: 1.25rem;
}

/* Brand colours via currentColor on SVG paths */
.invite-share-whatsapp {
    color: #25d366;
}

.invite-share-facebook {
    color: #1877f2;
}

.invite-share-x {
    color: #000000;
}

.invite-share-threads {
    color: #000000;
}

.invite-share-telegram {
    color: #229ed9;
}

.invite-share-linkedin {
    color: #0a66c2;
}

.invite-share-sms {
    color: #34c759;
}

.invite-share-email {
    color: #5f6368;
}

.invite-share-copy {
    color: #5f6368;
}

.invite-share-native {
    color: #0d6efd;
}

.js-invite-copied {
    font-size: 0.875rem;
}

/* Compact Invite a Friend presentation for shop pages */


.invite-a-friend-list-shop .invite-a-friend {
    margin-bottom: 0;
}

.invite-a-friend-list-shop .invite-a-friend-options {
    gap: 6px;
}

.invite-a-friend-list-shop .invite-share-button {
    width: 38px;
    height: 38px;
    border-color: #ddd;
}

.invite-a-friend-list-shop .invite-share-icon {
    width: 20px;
    height: 20px;
}

.invite-a-friend-list-shop .invite-share-button:hover {
    border-color: #bbb;
    transform: none;
}

.invite-a-friend-list-shop .invite-share-button:focus {
    outline-offset: 1px;
}

.invite-a-friend-list-shop .js-invite-copied {
    font-size: 0.8rem;
}