.shorts-share-modal {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(0, 0, 0, 0.5);
	z-index: 9999;
	align-items: center;
	justify-content: center;
}

.shorts-share-modal.active {
	display: flex;
}

.shorts-share-container {
	background: white;
	border-radius: 12px;
	padding: 24px;
	max-width: 400px;
	width: 90%;
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
	position: relative;
}

.shorts-share-close {
	position: absolute;
	top: 12px;
	right: 12px;
	background: none;
	border: none;
	width: 32px;
	height: 32px;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	color: #606060;
	border-radius: 50%;
	transition: background-color 0.2s;
	font-size: 18px;
}

.shorts-share-close:hover {
	background-color: #f0f0f0;
}

.shorts-share-title {
	margin: 0 0 20px 0;
	font-size: 18px;
	font-weight: 500;
	color: #030303;
}

.shorts-share-social {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 12px;
	margin-bottom: 24px;
}

.shorts-share-button {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 12px;
	border-radius: 8px;
	text-decoration: none;
	color: #030303;
	background-color: #f9f9f9;
	border: 1px solid #e0e0e0;
	transition: all 0.2s;
	cursor: pointer;
	font-size: 12px;
	font-weight: 500;
}

.shorts-share-button:hover {
	background-color: #f0f0f0;
	border-color: #d0d0d0;
	transform: translateY(-2px);
	text-decoration: none;
}

.shorts-share-button:active {
	text-decoration: none;
}

.shorts-share-button:focus {
	text-decoration: none;
	outline: none;
}

.shorts-share-button i {
	font-size: 28px;
	width: 28px;
	height: 28px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.shorts-share-whatsapp i {
	color: #25D366;
}

.shorts-share-facebook i {
	color: #1877F2;
}

.shorts-share-twitter i {
	color: #000;
}

.shorts-share-email i {
	color: #909090;
}

.shorts-share-reddit i {
	color: #FF4500;
}

.shorts-share-pinterest i {
	color: #E60023;
}

.shorts-share-copy-section {
	border-top: 1px solid #e0e0e0;
	padding-top: 16px;
}

.shorts-share-label {
	margin: 0 0 12px 0;
	font-size: 12px;
	font-weight: 500;
	color: #606060;
	text-transform: uppercase;
}

.shorts-share-copy-container {
	display: flex;
	gap: 8px;
	align-items: center;
}

.shorts-share-input {
	flex: 1;
	padding: 10px 12px;
	border: 1px solid #d0d0d0;
	border-radius: 4px;
	font-size: 13px;
	color: #030303;
	background-color: #f9f9f9;
	outline: none;
	font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.shorts-share-input:focus {
	border-color: #0f0f0f;
	background-color: #fff;
}

.shorts-share-copy-btn {
	padding: 10px 20px;
	background-color: #065FD4;
	color: white;
	border: none;
	border-radius: 4px;
	font-size: 13px;
	font-weight: 500;
	cursor: pointer;
	transition: background-color 0.2s;
	white-space: nowrap;
}

.shorts-share-copy-btn:hover {
	background-color: #0456BA;
}

.shorts-share-copy-btn:active {
	background-color: #0351AA;
}

@media (max-width: 480px) {
	.shorts-share-container {
		max-width: 95%;
		padding: 20px;
	}

	.shorts-share-social {
		grid-template-columns: repeat(2, 1fr);
	}
}
