/**
 * Share Buttons Widget Styles
 *
 * @package RSGT_Elementor_Addons
 * @since 2.11.0
 */

/* Main Container */
.rsgt-share-buttons {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 10px;
}

/* Horizontal Layout */
.rsgt-share-buttons-horizontal {
	flex-direction: row;
}

/* Vertical Layout */
.rsgt-share-buttons-vertical {
	flex-direction: column;
	align-items: flex-start;
}

/* Share Button */
.rsgt-share-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	text-decoration: none;
	transition: all 0.3s ease;
	cursor: pointer;
	border: none;
	background: transparent;
	font-size: 14px;
	line-height: 1.5;
}


/* Icon Container */
.rsgt-share-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	line-height: 1;
}
.rsgt-share-icon-svg {
  width: 30px;
  height: 30px;
}
.rsgt-share-icon img {
	display: block;
	max-width: 100%;
	height: auto;
	object-fit: contain;
}

.rsgt-share-icon i {
	font-size: 20px;
	width: 1em;
	height: 1em;
	display: inline-flex;
	align-items: center;
	justify-content: center;
}

/* Text Container */
.rsgt-share-text {
	display: inline-block;
}

/* Icon Only View */
.rsgt-share-buttons-icon .rsgt-share-text {
	display: none;
}

/* Text Only View */
.rsgt-share-buttons-text .rsgt-share-icon {
	display: none;
}

/* Icon + Text View */
.rsgt-share-buttons-icon-text .rsgt-share-btn {
	gap: 8px;
}

/* Network-specific styles */
.rsgt-share-btn-facebook {
	color: #1877f2;
}

.rsgt-share-btn-twitter {
	color: #1da1f2;
}

.rsgt-share-btn-linkedin {
	color: #0077b5;
}

.rsgt-share-btn-pinterest {
	color: #bd081c;
}

.rsgt-share-btn-whatsapp {
	color: #25d366;
}

.rsgt-share-btn-telegram {
	color: #0088cc;
}

.rsgt-share-btn-email {
	color: #666;
}

.rsgt-share-btn-copy {
	color: #666;
}

/* Responsive */
@media (max-width: 768px) {
	.rsgt-share-buttons {
		gap: 8px;
	}
	
	.rsgt-share-btn {
		font-size: 13px;
		padding: 8px 12px;
	}
}

