/* DP Social Login - Button Styles */

/* Wrapper */
.dpsl-wrapper {
	margin-top: 20px;
}

/* Separator with lines */
.dpsl-separator {
	display: flex;
	align-items: center;
	text-align: center;
	margin: 20px 0;
	color: #666;
	font-size: 14px;
}

.dpsl-separator::before,
.dpsl-separator::after {
	content: '';
	flex: 1;
	border-bottom: 1px solid #ddd;
}

.dpsl-separator span {
	padding: 0 12px;
	white-space: nowrap;
}

/* Button container */
.dpsl-buttons {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.dpsl-buttons-horizontal {
	flex-direction: row;
	flex-wrap: wrap;
}

.dpsl-buttons-horizontal .dpsl-btn {
	flex: 1;
	min-width: 120px;
}

/* Shared button styles */
.dpsl-btn {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 36px;
	padding: 0 20px;
	border-radius: 8px;
	font-size: 15px;
	font-weight: 500;
	text-decoration: none !important;
	cursor: pointer;
	transition: opacity 0.2s, box-shadow 0.2s;
	border: none;
	width: 100%;
	box-sizing: border-box;
	line-height: 1.4;
}

.dpsl-btn:hover {
	opacity: 0.9;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.dpsl-btn:active {
	opacity: 0.8;
}

/* SVG icons */
.dpsl-btn svg {
	width: 20px;
	height: 20px;
	margin-right: 10px;
	flex-shrink: 0;
}

/* Facebook - brand blue */
.dpsl-btn-facebook {
	background: #1877F2;
	color: #fff !important;
}

.dpsl-btn-facebook:hover,
.dpsl-btn-facebook:visited {
	color: #fff !important;
}

/* Google - white with border */
.dpsl-btn-google {
	background: #fff;
	color: #333 !important;
	border: 1px solid #dadce0;
}

.dpsl-btn-google:hover,
.dpsl-btn-google:visited {
	color: #333 !important;
}

/* LINE - brand green */
.dpsl-btn-line {
	background: #06C755;
	color: #fff !important;
}

.dpsl-btn-line:hover,
.dpsl-btn-line:visited {
	color: #fff !important;
}

/* Checkout wrapper */
.dpsl-checkout-wrapper {
	background: #f8f8f8;
	border: 1px solid #e5e5e5;
	border-radius: 8px;
	padding: 20px;
	margin-bottom: 20px;
}

.dpsl-checkout-title {
	font-size: 16px;
	font-weight: 600;
	margin: 0 0 12px;
	color: #333;
}

/* Mobile responsive */
@media (max-width: 768px) {
	.dpsl-btn {
		height: 36px;
		padding: 0 20px;
		font-size: 16px;
	}

	.dpsl-buttons-horizontal {
		flex-direction: column;
	}

	.dpsl-buttons-horizontal .dpsl-btn {
		min-width: auto;
	}
}
