/**
 * Product Access Manager — Dashboard & PDF Viewer Styles
 */

/* ============================================================
   KOKPIT — KAFELKI
   ============================================================ */

.pam-dashboard {
	margin: 24px 0 8px;
}

.pam-dashboard__heading {
	font-size: 1.1em;
	font-weight: 600;
	margin-bottom: 12px;
	color: #333;
}

.pam-dashboard__grid {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

/* Wrapper kafelka (flex row: główny link + PDF button) */
.pam-tile {
	display: flex;
	align-items: stretch;
	border: 1px solid #c9a5f5;
	border-radius: 8px;
	overflow: hidden;
	background: #f3ebff;
	transition: border-color 0.18s ease, box-shadow 0.18s ease;
}

.pam-tile:hover {
	border-color: #9b59f0;
	box-shadow: 0 2px 8px rgba(123, 47, 190, 0.12);
}

/* Główny link — strona produktu */
.pam-tile__main {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 14px 18px;
	text-decoration: none;
	color: #5a1e96;
	font-weight: 600;
	flex: 1;
	min-width: 0;
}

.pam-tile__main:hover {
	color: #4a0080;
	text-decoration: none;
}

.pam-tile__icon {
	font-size: 1.2em;
	flex-shrink: 0;
}

.pam-tile__title {
	flex: 1;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.pam-tile__cta {
	font-weight: 400;
	opacity: 0.6;
	font-size: 0.88em;
	flex-shrink: 0;
}

/* PDF button — prawy brzeg kafelka */
.pam-tile__pdf {
	display: flex;
	align-items: center;
	padding: 0 16px;
	border-left: 1px solid #c9a5f5;
	text-decoration: none;
	font-size: 0.85em;
	font-weight: 600;
	white-space: nowrap;
	transition: background 0.15s ease;
}

.pam-tile__pdf--download {
	background: #ede0ff;
	color: #5a1e96;
}

.pam-tile__pdf--download:hover {
	background: #dcc8ff;
	color: #4a0080;
	text-decoration: none;
}

.pam-tile__pdf--embed {
	background: #e8f5e9;
	color: #2e7d32;
	border-left-color: #a5d6a7;
}

.pam-tile__pdf--embed:hover {
	background: #c8e6c9;
	color: #1b5e20;
	text-decoration: none;
}

/* ============================================================
   PDF VIEWER — osadzony na stronie produktu
   ============================================================ */

.pam-pdf-viewer {
	margin-bottom: 32px;
	border: 1px solid #c9a5f5;
	border-radius: 10px;
	overflow: hidden;
	background: #fff;
}

.pam-pdf-viewer__header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 10px 16px;
	background: #f3ebff;
	border-bottom: 1px solid #c9a5f5;
	font-size: 0.9em;
	color: #5a1e96;
	font-weight: 600;
}

.pam-pdf-viewer__download {
	color: #7b2fbe;
	text-decoration: none;
	font-size: 0.85em;
	padding: 4px 10px;
	border: 1px solid #c9a5f5;
	border-radius: 4px;
	background: #fff;
	transition: background 0.15s;
}

.pam-pdf-viewer__download:hover {
	background: #ede0ff;
	text-decoration: none;
}

.pam-pdf-viewer__embed {
	display: block;
	width: 100%;
	height: 700px;
	border: none;
}

.pam-pdf-viewer__fallback {
	padding: 16px;
	text-align: center;
	font-size: 0.9em;
	color: #666;
}

/* ============================================================
   RESPONSYWNOŚĆ
   ============================================================ */

@media ( max-width: 600px ) {
	.pam-tile {
		flex-direction: column;
	}
	.pam-tile__pdf {
		border-left: none;
		border-top: 1px solid #c9a5f5;
		padding: 10px 18px;
		justify-content: center;
	}
	.pam-tile__cta {
		display: none;
	}
	.pam-pdf-viewer__embed {
		height: 480px;
	}
}
