/* Product Card Block Frontend Styles */

.wp-block-zox-news-product-card {
	padding: 30px;
	border-radius: 12px;
	max-width: 600px;
	margin: 0 auto 30px;
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
	box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
	transition: all 0.3s ease;
}

.wp-block-zox-news-product-card:hover {
	box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
	transform: translateY(-2px);
}

.product-card-header {
	display: flex;
	justify-content: flex-start;
	align-items: flex-start;
	gap: 30px;
}

.product-card-logo {
	flex: 0 0 30%;
}

.product-card-logo img {
	width: 100% !important;
	height: 120px !important;
	object-fit: contain;
}

.product-card-title-section {
	flex: 0 0 70%;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
}

.product-card-title {
	margin: 0;
	font-size: 36px;
	font-weight: 800;
	line-height: 1.1;
	color: inherit;
	text-align: left;
    margin-bottom:0px!important;
}

.product-card-app-buttons {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	margin: 0;
	padding: 10px;
	padding-left: 0;
}

.product-card-app-button {
	display: inline-block;
	text-decoration: none;
	transition: all 0.2s ease;
	cursor: pointer;
	margin: 0;
	padding: 10px;
}

.product-card-app-button.app-store {
	padding-left: 0 !important;
}

.product-card-app-button:hover {
	transform: translateY(-2px);
	opacity: 0.8;
}

.product-card-app-button .app-store-icon,
.product-card-app-button .google-play-icon {
	width: auto;
	height: 60px !important;
	max-width: 140px;
	object-fit: contain;
	margin: 0 !important;
	padding: 0 !important;
	display: block;
}

.product-card-app-button.website {
	display: flex;
	align-items: center;
	background: #f8f9fa;
	border: 1px solid #dee2e6;
	border-radius: 8px;
	padding: 8px 16px;
	text-decoration: none;
	color: #495057;
	transition: all 0.2s ease;
}

.product-card-app-button.website:hover {
	background: #e9ecef;
	border-color: #adb5bd;
	transform: translateY(-1px);
}

.product-card-app-button.website .website-icon {
	font-size: 20px;
	margin-right: 8px;
}

.product-card-app-button.website .website-text {
	font-size: 14px;
	font-weight: 600;
}

.product-card-app-button span {
	font-size: 12px;
	letter-spacing: 0.5px;
}

.product-card-divider {
	border: none;
	border-top: 1px solid;
	border-color: inherit;
	opacity: 0.2;
	margin: 25px 0;
}

.product-card-description {
	margin-bottom: 25px;
}

.product-card-description-content {
	margin: 0;
	line-height: 1.6;
	font-size: 18px;
	color: inherit;
}

.product-card-description-content p {
	margin: 0 0 0.8em 0;
}

.product-card-description-content p:last-child {
	margin-bottom: 0;
}





/* Change bullet points from dashes to dots */
.product-card-description-content ul {
	list-style-type: disc;
}

.product-card-description-content ol {
	list-style-type: decimal;
}

.product-card-button-wrapper {
	text-align: center;
	margin-top: 15px;
}

.product-card-button {
	display: inline-block;
	padding: 18px 40px;
	border-radius: 35px;
	text-decoration: none;
	font-weight: 700;
	font-size: 20px;
	transition: all 0.3s ease;
	border: none;
	cursor: pointer;
	box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
	/* Use CSS custom property for dynamic color */
	background: var(--button-color, #6b46c1);
	color: #ffffff;
}

.product-card-button:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}

.product-card-button:active {
	transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 768px) {
	.wp-block-zox-news-product-card {
		padding: 20px;
		margin: 0 auto 20px;
	}
	
	.product-card-header {
		flex-direction: column;
		align-items: center;
		text-align: center;
		gap: 10px;
	}
	
	.product-card-button-wrapper {
		padding: 0 20px;
	}
	
	.product-card-button {
		padding: 15px 30px;
		font-size: 18px;
	}
	.product-card-logo {
		width: 120px;
		height: 120px;
	}
	
	.product-card-title {
		font-size: 24px;
	}
	
	.product-card-app-buttons {
		justify-content: center;
	}
	
	.product-card-button {
		padding: 14px 28px;
		font-size: 16px;
		width: 100%;
		max-width: 300px;
	}
}

@media (max-width: 480px) {
	.wp-block-zox-news-product-card {
		padding: 15px;
	}
	
	.product-card-title {
		font-size: 22px;
	}
	
	.product-card-app-buttons {
		flex-direction: column;
		width: 100%;
	}
	
	.product-card-app-button {
		justify-content: center;
	}
	
	.product-card-description p {
		font-size: 15px;
	}
}

/* Print styles */
@media print {
	.wp-block-zox-news-product-card {
		box-shadow: none;
		border: 1px solid #ccc;
		break-inside: avoid;
	}
	
	.product-card-button {
		border: 1px solid #000;
		background: #fff !important;
		color: #000 !important;
	}
} 

img.app-store-icon{
	max-height:50px;
}