:root {
	--bg: #ffffff;
	--text: #222222;
	--muted: #666666;
	--line: #dddddd;
	--soft: #f7f8fa;
	--primary: #1B4062;
	--accent: #D59C14;
	--primary-dark: #12304b;
	--accent-dark: #b7810d;
	--white: #ffffff;
	--max: 1120px;
}

* {
	box-sizing: border-box;
}

body {
	margin: 0;
	background: var(--bg);
	color: var(--text);
	font-family: Arial, Helvetica, sans-serif;
	font-size: 14px;
	line-height: 1.55;
}

a {
	color: var(--primary);
	text-decoration: none;
}

a:hover {
	color: var(--accent);
	text-decoration: underline;
}

img {
	max-width: 100%;
	height: auto;
}

.wrap {
	max-width: var(--max);
	margin: 0 auto;
	padding: 0 15px;
}

/* Header */
.site-header {
	border-bottom: 1px solid var(--line);
	background: var(--white);
}

.top-line {
	background: var(--primary);
	border-bottom: 1px solid rgba(255,255,255,0.12);
	font-size: 13px;
	color: var(--white);
}

.top-line .wrap {
	display: flex;
	justify-content: space-between;
	gap: 15px;
	padding-top: 7px;
	padding-bottom: 7px;
}

.brand-row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	padding-top: 18px;
	padding-bottom: 18px;
}

.logo-area {
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.site-logo {
	display: inline-flex;
	align-items: center;
	color: var(--primary);
	text-decoration: none;
	font-size: 28px;
	font-weight: 700;
}

.site-logo:hover {
	text-decoration: none;
	color: var(--primary);
}

.site-logo img,
.custom-logo {
	max-height: 34px;
	width: auto;
}

.site-logo span,
.site-title {
	color: var(--primary);
	font-size: 24px;
	font-weight: 700;
}

.site-desc {
	font-size: 13px;
	color: var(--muted);
	margin-top: 2px;
}

/* Header بحث */
.header-search {
	position: relative;
	max-width: 520px;
	width: 100%;
}

.header-search form,
.p2p-search-form {
	position: relative;
	display: flex;
	width: 100%;
}

.header-search input[type="search"],
.p2p-search-form input[type="search"] {
	width: 100%;
	border: 1px solid var(--line);
	border-right: 0;
	padding: 10px;
	outline: none;
}

.header-search input[type="search"]:focus,
.p2p-search-form input[type="search"]:focus {
	border-color: var(--accent);
}

.header-search button,
.p2p-search-form button,
.btn,
.button,
button,
input[type="submit"],
.woocommerce a.button,
.woocommerce button.button {
	background: var(--primary);
	color: var(--white);
	border: 1px solid var(--primary);
	padding: 10px 16px;
	border-radius: 0;
	cursor: pointer;
	text-decoration: none;
	display: inline-block;
}

.header-search button:hover,
.p2p-search-form button:hover,
.btn:hover,
.button:hover,
button:hover,
input[type="submit"]:hover,
.woocommerce a.button:hover,
.woocommerce button.button:hover {
	background: var(--accent);
	border-color: var(--accent);
	color: var(--white);
	text-decoration: none;
}

/* Live بحث Dropdown */
.p2p-search-results {
	display: none;
	position: absolute;
	top: 100%;
	left: 0;
	right: 0;
	background: var(--white);
	border: 1px solid var(--line);
	box-shadow: 0 8px 18px rgba(0,0,0,0.10);
	z-index: 99999;
	max-height: 420px;
	overflow-y: auto;
}

.p2p-search-results.is-active {
	display: block;
}

.p2p-search-group {
	border-bottom: 1px solid var(--line);
}

.p2p-search-group:last-child {
	border-bottom: 0;
}

.p2p-search-heading {
	background: var(--primary);
	color: var(--white);
	font-size: 12px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: .3px;
	padding: 8px 10px;
}

.p2p-search-item {
	display: flex;
	justify-content: space-between;
	gap: 10px;
	padding: 9px 10px;
	color: var(--text);
	text-decoration: none;
	border-top: 1px solid #f0f0f0;
}

.p2p-search-item:hover {
	background: #fff8ec;
	color: var(--primary);
	text-decoration: none;
}

.p2p-search-title {
	font-size: 14px;
	font-weight: 600;
	color: var(--primary);
}

.p2p-search-type {
	font-size: 12px;
	color: var(--accent);
	white-space: nowrap;
}

.p2p-search-empty {
	padding: 10px;
	color: var(--muted);
	font-size: 13px;
}

.search-extra-results {
	margin-top: 18px;
}

/* Main القائمة */
.main-nav {
	border-top: 1px solid var(--line);
	background: var(--white);
}

.main-nav ul {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
}

.main-nav li {
	border-right: 1px solid var(--line);
}

.main-nav a {
	display: block;
	padding: 11px 14px;
	color: var(--primary);
	font-weight: 600;
}

.main-nav a:hover {
	background: var(--primary);
	color: var(--white);
	text-decoration: none;
}

/* Main Content */
.site-main {
	padding: 24px 0;
}

.hero {
	border: 1px solid var(--line);
	background: var(--soft);
	padding: 24px;
	margin-bottom: 22px;
}

.hero h1 {
	font-size: 28px;
	margin: 0 0 8px;
	color: var(--primary);
}

.hero p {
	font-size: 15px;
	color: var(--muted);
	max-width: 850px;
	margin: 0 0 15px;
}

.section {
	margin-bottom: 24px;
}

.section-title {
	background: var(--primary);
	color: var(--white);
	margin: 0;
	padding: 10px 14px;
	font-size: 16px;
	border-left: 5px solid var(--accent);
}

.box {
	border: 1px solid var(--line);
	background: var(--white);
	padding: 16px;
}

.grid {
	display: grid;
	gap: 0;
	border: 1px solid var(--line);
	border-top: 0;
	background: var(--white);
}

.grid.cols-4 {
	grid-template-columns: repeat(4,1fr);
}

.grid.cols-3 {
	grid-template-columns: repeat(3,1fr);
}

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

.item {
	padding: 12px 14px;
	border-right: 1px solid var(--line);
	border-bottom: 1px solid var(--line);
	min-height: 54px;
}

.item:hover {
	background: #fff8ec;
}

.item h3,
.item h2 {
	font-size: 15px;
	margin: 0 0 4px;
	color: var(--primary);
}

.item p {
	margin: 0;
	color: var(--muted);
	font-size: 13px;
}

/* Layout */
.content-area {
	display: grid;
	grid-template-columns: minmax(0,1fr) 280px;
	gap: 24px;
}

.sidebar .widget,
.side-box {
	border: 1px solid var(--line);
	margin-bottom: 18px;
}

.sidebar .widget-title,
.side-box h3 {
	background: var(--primary);
	color: var(--white);
	margin: 0;
	padding: 9px 12px;
	font-size: 15px;
	border-left: 4px solid var(--accent);
}

.sidebar .widget ul,
.side-box ul {
	margin: 0;
	padding: 12px 16px 12px 30px;
}

/* Entries */
.entry {
	border: 1px solid var(--line);
	padding: 18px;
	margin-bottom: 18px;
	background: var(--white);
}

.entry-title {
	margin: 0 0 10px;
	font-size: 24px;
	color: var(--primary);
}

.entry-content h2 {
	font-size: 21px;
	margin-top: 24px;
	color: var(--primary);
}

.entry-content h3 {
	font-size: 17px;
	color: var(--primary);
}

.entry-content table {
	width: 100%;
	border-collapse: collapse;
}

.entry-content th,
.entry-content td {
	border: 1px solid var(--line);
	padding: 9px;
	text-align: left;
}

.entry-content th {
	background: var(--primary);
	color: var(--white);
}

.breadcrumb {
	font-size: 13px;
	color: var(--muted);
	margin-bottom: 12px;
}

/* Pagination */
.pagination,
.woocommerce-pagination {
	margin: 22px 0;
}

.page-numbers {
	border: 1px solid var(--line);
	padding: 7px 10px;
	margin-right: 4px;
	color: var(--primary);
}

.page-numbers.current,
.page-numbers:hover {
	background: var(--primary);
	color: var(--white);
	text-decoration: none;
}

/* WooCommerce */
.woocommerce ul.products {
	display: grid;
	grid-template-columns: repeat(4,1fr);
	gap: 0;
	border: 1px solid var(--line);
	border-bottom: 0;
	border-right: 0;
}

.woocommerce ul.products li.product {
	border-right: 1px solid var(--line);
	border-bottom: 1px solid var(--line);
	padding: 14px !important;
	margin: 0 !important;
	width: auto !important;
	float: none !important;
}

.woocommerce ul.products li.product:hover {
	background: #fff8ec;
}

.woocommerce div.product {
	border: 1px solid var(--line);
	padding: 18px;
}

.woocommerce .price {
	color: var(--accent) !important;
	font-weight: 700;
}

.woocommerce-loop-product__title {
	color: var(--primary);
}

/* Notice */
.notice {
	background: #fff8ec;
	border: 1px solid var(--accent);
	padding: 12px;
	margin-bottom: 18px;
}

/* Footer */
.site-footer {
	background: var(--primary);
	color: var(--white);
	padding: 55px 0 0;
	position: relative;
	border-top: 4px solid var(--accent);
	margin-top: 30px;
}

.footer-main {
	display: grid;
	grid-template-columns: 1fr 1.45fr 1.35fr;
	gap: 55px;
}

.footer-logo {
	display: inline-flex;
	align-items: center;
	margin-bottom: 28px;
	text-decoration: none;
	color: var(--white);
}

.footer-logo:hover {
	text-decoration: none;
}

.footer-logo img,
.footer-logo .custom-logo {
	max-height: 48px;
	width: auto;
	background: var(--white);
	padding: 4px;
}

.footer-logo span {
	font-size: 30px;
	font-weight: 800;
	color: var(--accent);
}

.footer-about p {
	max-width: 330px;
	font-size: 17px;
	line-height: 1.65;
	color: rgba(255,255,255,0.92);
	margin: 0;
}

.site-footer h3 {
	position: relative;
	font-size: 20px;
	line-height: 1;
	text-transform: uppercase;
	font-weight: 600;
	margin: 0 0 42px;
	color: var(--white);
}

.site-footer h3::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: -18px;
	width: 75px;
	height: 2px;
	background: var(--accent);
}

.footer-discussion-item {
	display: flex;
	gap: 22px;
	padding: 0 0 18px;
	margin-bottom: 18px;
	border-bottom: 1px solid rgba(255,255,255,0.16);
}

.footer-discussion-item:last-child {
	border-bottom: 0;
	margin-bottom: 0;
}

.footer-date {
	width: 88px;
	min-width: 88px;
	height: 88px;
	background: var(--accent);
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	color: var(--white);
}

.footer-date span {
	font-size: 20px;
	font-weight: 700;
	line-height: 1;
}

.footer-date small {
	font-size: 18px;
	font-weight: 500;
	margin-top: 8px;
}

.footer-discussion-content a {
	display: block;
	font-size: 21px;
	line-height: 1.35;
	color: var(--white);
	text-decoration: none;
	margin-bottom: 8px;
}

.footer-discussion-content a:hover {
	color: var(--accent);
}

.footer-discussion-content span {
	display: block;
	font-size: 16px;
	font-weight: 600;
	color: rgba(255,255,255,0.85);
}

.footer-menu {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	grid-template-columns: 1fr 1fr;
	column-gap: 45px;
	row-gap: 18px;
}

.footer-menu li {
	margin: 0;
	padding: 0;
}

.footer-menu li a {
	position: relative;
	display: inline-block;
	color: var(--white);
	text-decoration: none;
	font-size: 18px;
	padding-left: 24px;
}

.footer-menu li a::before {
	content: ">";
	position: absolute;
	left: 0;
	top: 0;
	color: var(--accent);
	font-size: 26px;
	line-height: 18px;
}

.footer-menu li a:hover {
	color: var(--accent);
}

.footer-bottom {
	border-top: 1px solid rgba(255,255,255,0.15);
	margin-top: 55px;
	padding: 18px 0;
}

.footer-bottom p {
	margin: 0;
	color: rgba(255,255,255,0.78);
	font-size: 14px;
}

.back-to-top {
	position: fixed;
	right: 28px;
	bottom: 28px;
	width: 58px;
	height: 58px;
	border-radius: 50%;
	border: 0;
	background: var(--accent);
	color: var(--white);
	font-size: 30px;
	line-height: 1;
	cursor: pointer;
	z-index: 9999;
}

.back-to-top:hover {
	background: var(--accent-dark);
}

/* Accessibility */
.screen-reader-text {
	position: absolute !important;
	width: 1px;
	height: 1px;
	overflow: hidden;
	clip: rect(1px,1px,1px,1px);
}

/* Responsive */
@media (max-width: 991px) {
	.footer-main {
		grid-template-columns: 1fr;
		gap: 40px;
	}

	.footer-menu {
		grid-template-columns: 1fr 1fr;
	}
}

@media (max-width: 800px) {
	.brand-row,
	.top-line .wrap {
		display: block;
	}

	.header-search {
		margin-top: 14px;
		max-width: 100%;
	}

	.content-area {
		grid-template-columns: 1fr;
	}

	.grid.cols-4,
	.grid.cols-3,
	.grid.cols-2,
	.woocommerce ul.products {
		grid-template-columns: 1fr;
	}

	.main-nav ul {
		display: block;
	}

	.main-nav li {
		border-right: 0;
		border-bottom: 1px solid var(--line);
	}

	.site-logo img,
	.custom-logo {
		max-height: 30px;
	}

	.p2p-search-results {
		max-height: 340px;
	}

	.p2p-search-form button {
		padding-left: 12px;
		padding-right: 12px;
	}
}

@media (max-width: 600px) {
	.site-footer {
		padding-top: 38px;
	}

	.footer-menu {
		grid-template-columns: 1fr;
	}

	.footer-discussion-item {
		gap: 15px;
	}

	.footer-date {
		width: 70px;
		min-width: 70px;
		height: 70px;
	}

	.footer-discussion-content a {
		font-size: 17px;
	}

	.back-to-top {
		width: 48px;
		height: 48px;
		font-size: 24px;
		right: 18px;
		bottom: 18px;
	}
}
/* ==========================================================
   FINAL P2PEXAM BRAND OVERRIDES
   Brand Colors:
   Primary Blue: #1B4062
   Accent Gold: #D59C14
   Add this at the end to stop old #333 / #000 styles overriding.
   ========================================================== */

:root {
	--bg: #ffffff !important;
	--text: #222222 !important;
	--muted: #666666 !important;
	--line: #dddddd !important;
	--soft: #f7f8fa !important;
	--primary: #1B4062 !important;
	--accent: #D59C14 !important;
	--primary-dark: #12304b !important;
	--accent-dark: #b7810d !important;
	--white: #ffffff !important;
}

/* Global */
body {
	background: #ffffff !important;
	color: #222222 !important;
	font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, Helvetica, sans-serif !important;
}

a,
.item h2 a,
.item h3 a,
.entry-title a,
.woocommerce-loop-product__title {
	color: #1B4062 !important;
}

a:hover,
.item h2 a:hover,
.item h3 a:hover,
.entry-title a:hover,
.woocommerce-loop-product__title:hover {
	color: #D59C14 !important;
}

/* Header */
.site-header {
	background: #ffffff !important;
	border-bottom: 1px solid #dddddd !important;
}

.top-line {
	background: #1B4062 !important;
	color: #ffffff !important;
	border-bottom: 2px solid #D59C14 !important;
}

.top-line,
.top-line * {
	color: #ffffff !important;
}

.site-logo,
.site-title,
.site-logo span {
	color: #1B4062 !important;
}

.site-logo img,
.custom-logo {
	max-height: 34px !important;
	width: auto !important;
}

/* بحث */
.header-search input[type="search"],
.p2p-search-form input[type="search"] {
	border: 1px solid #dddddd !important;
	border-right: 0 !important;
	background: #ffffff !important;
	color: #222222 !important;
}

.header-search input[type="search"]:focus,
.p2p-search-form input[type="search"]:focus {
	border-color: #D59C14 !important;
	box-shadow: none !important;
}

.header-search button,
.p2p-search-form button,
button,
input[type="submit"],
.btn,
.button,
.woocommerce a.button,
.woocommerce button.button {
	background: #1B4062 !important;
	border-color: #1B4062 !important;
	color: #ffffff !important;
}

.header-search button:hover,
.p2p-search-form button:hover,
button:hover,
input[type="submit"]:hover,
.btn:hover,
.button:hover,
.woocommerce a.button:hover,
.woocommerce button.button:hover {
	background: #D59C14 !important;
	border-color: #D59C14 !important;
	color: #ffffff !important;
}

/* Live بحث Dropdown */
.p2p-search-heading {
	background: #1B4062 !important;
	color: #ffffff !important;
}

.p2p-search-title {
	color: #1B4062 !important;
}

.p2p-search-type {
	color: #D59C14 !important;
}

.p2p-search-item:hover {
	background: #fff8ec !important;
	color: #1B4062 !important;
}

/* القائمة */
.main-nav {
	background: #ffffff !important;
	border-top: 1px solid #dddddd !important;
}

.main-nav a {
	color: #1B4062 !important;
}

.main-nav a:hover,
.main-nav .current-menu-item > a,
.main-nav .current_page_item > a {
	background: #1B4062 !important;
	color: #ffffff !important;
	text-decoration: none !important;
}

/* Sections / Cards */
.section-title,
.sidebar .widget-title,
.side-box h3 {
	background: #1B4062 !important;
	color: #ffffff !important;
	border-left: 5px solid #D59C14 !important;
}

.hero h1,
.entry-title,
.entry-content h2,
.entry-content h3,
.item h2,
.item h3 {
	color: #1B4062 !important;
}

.item:hover,
.woocommerce ul.products li.product:hover {
	background: #fff8ec !important;
}

.entry-content th {
	background: #1B4062 !important;
	color: #ffffff !important;
}

.page-numbers {
	color: #1B4062 !important;
}

.page-numbers.current,
.page-numbers:hover {
	background: #1B4062 !important;
	color: #ffffff !important;
}

/* WooCommerce */
.woocommerce .price {
	color: #D59C14 !important;
}

.notice {
	background: #fff8ec !important;
	border-color: #D59C14 !important;
}

/* Footer */
.site-footer {
	background: #1B4062 !important;
	color: #ffffff !important;
	border-top: 4px solid #D59C14 !important;
}

.site-footer h3,
.site-footer p,
.site-footer a,
.footer-about p,
.footer-discussion-content a,
.footer-discussion-content span,
.footer-bottom p {
	color: #ffffff !important;
}

.site-footer h3::after {
	background: #D59C14 !important;
}

.footer-date,
.back-to-top {
	background: #D59C14 !important;
	color: #ffffff !important;
}

.footer-date:hover,
.back-to-top:hover {
	background: #b7810d !important;
}

.footer-menu li a::before {
	color: #D59C14 !important;
}

.footer-menu li a:hover,
.footer-discussion-content a:hover {
	color: #D59C14 !important;
}

.footer-logo img,
.footer-logo .custom-logo {
	background: transparent !important;
	padding: 0 !important;
}

/* Text selection */
::selection {
	background: #D59C14 !important;
	color: #ffffff !important;
}


/* Final exam style shop grid fix */
.woocommerce ul.products::before,
.woocommerce ul.products::after {
	display: none !important;
	content: none !important;
}

.woocommerce ul.products {
	display: grid !important;
	grid-template-columns: repeat(4, 1fr) !important;
	gap: 0 !important;
	border: 1px solid #dddddd !important;
	border-right: 0 !important;
	border-bottom: 0 !important;
	margin: 0 !important;
	padding: 0 !important;
}

.woocommerce ul.products li.product {
	float: none !important;
	clear: none !important;
	width: auto !important;
	margin: 0 !important;
	padding: 18px 22px !important;
	border-right: 1px solid #dddddd !important;
	border-bottom: 1px solid #dddddd !important;
	background: #ffffff !important;
	min-height: 92px !important;
	display: block !important;
}

.woocommerce ul.products li.product:hover {
	background: #fff8ec !important;
}

.woocommerce ul.products li.product img,
.woocommerce ul.products li.product .button,
.woocommerce ul.products li.product .added_to_cart,
.woocommerce ul.products li.product .star-rating {
	display: none !important;
}

.woocommerce ul.products li.product .woocommerce-loop-product__title {
	color: #1B4062 !important;
	font-size: 18px !important;
	font-weight: 800 !important;
	line-height: 1.3 !important;
	margin: 0 0 8px !important;
	padding: 0 !important;
}

.woocommerce ul.products li.product .price {
	color: #555555 !important;
	font-size: 16px !important;
	font-weight: 400 !important;
	margin: 0 !important;
	display: block !important;
}

.woocommerce nav.woocommerce-pagination,
.woocommerce .woocommerce-result-count,
.woocommerce .woocommerce-ordering {
	display: none !important;
}

@media (max-width: 991px) {
	.woocommerce ul.products {
		grid-template-columns: repeat(2, 1fr) !important;
	}
}

@media (max-width: 600px) {
	.woocommerce ul.products {
		grid-template-columns: 1fr !important;
	}
}


/* جميع الجهات Page Grid */
.all-vendors-page {
	border: 1px solid #dddddd;
	background: #ffffff;
	padding: 24px;
	margin-bottom: 30px;
}

.vendors-page-title {
	font-size: 28px;
	color: #222222;
	margin: 0 0 22px;
}

.vendors-list-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	border: 1px solid #dddddd;
	border-right: 0;
	border-bottom: 0;
	background: #ffffff;
}

.vendor-list-item {
	display: block;
	padding: 22px 24px;
	min-height: 95px;
	border-right: 1px solid #dddddd;
	border-bottom: 1px solid #dddddd;
	background: #ffffff;
	text-decoration: none !important;
}

.vendor-list-item:hover {
	background: #fff8ec;
	text-decoration: none !important;
}

.vendor-list-item strong {
	display: block;
	color: #1B4062;
	font-size: 22px;
	font-weight: 800;
	line-height: 1.25;
	margin-bottom: 8px;
}

.vendor-list-item span {
	display: block;
	color: #555555;
	font-size: 17px;
	line-height: 1.3;
}

.vendor-list-item:hover strong {
	color: #D59C14;
}

@media (max-width: 991px) {
	.vendors-list-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 600px) {
	.all-vendors-page {
		padding: 16px;
	}

	.vendors-list-grid {
		grid-template-columns: 1fr;
	}

	.vendor-list-item {
		padding: 18px;
		min-height: auto;
	}

	.vendor-list-item strong {
		font-size: 18px;
	}

	.vendor-list-item span {
		font-size: 15px;
	}
}


/* اتصل بنا Page */
.contact-page {
	max-width: 850px;
	margin: 0 auto 30px;
}

.contact-page h1 {
	color: #1B4062;
	margin-bottom: 12px;
}

.contact-page p {
	color: #555555;
	font-size: 15px;
}

.contact-form-box {
	margin-top: 22px;
	padding: 22px;
	border: 1px solid #dddddd;
	background: #ffffff;
}

.contact-form-box input,
.contact-form-box textarea,
.contact-form-box select {
	width: 100%;
	border: 1px solid #dddddd;
	padding: 11px 12px;
	margin-top: 6px;
}

.contact-form-box input:focus,
.contact-form-box textarea:focus,
.contact-form-box select:focus {
	border-color: #D59C14;
	outline: none;
}

.contact-form-box input[type="submit"],
.contact-form-box button {
	width: auto;
	background: #1B4062;
	border: 1px solid #1B4062;
	color: #ffffff;
	padding: 11px 20px;
	cursor: pointer;
}

.contact-form-box input[type="submit"]:hover,
.contact-form-box button:hover {
	background: #D59C14;
	border-color: #D59C14;
}

.contact-info-box {
	margin-top: 18px;
	padding: 14px 16px;
	border-left: 4px solid #D59C14;
	background: #fff8ec;
}


/* Simple Single Product Exam Page */
.simple-exam-product-page {
	margin-bottom: 35px;
}

.simple-exam-top {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 320px;
	gap: 24px;
	border: 1px solid #dddddd;
	background: #ffffff;
	padding: 24px;
	margin-bottom: 24px;
}

.simple-exam-vendor {
	display: inline-block;
	margin-bottom: 10px;
	color: #D59C14;
	font-size: 13px;
	font-weight: 800;
	text-transform: uppercase;
}

.simple-exam-vendor a {
	color: #D59C14 !important;
	text-decoration: none !important;
}

.simple-exam-title {
	margin: 0 0 12px;
	color: #1B4062;
	font-size: 32px;
	line-height: 1.25;
}

.simple-exam-code {
	margin: 0 0 14px;
	color: #555555;
	font-size: 15px;
}

.simple-exam-code strong {
	color: #1B4062;
}

.simple-exam-meta {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	border: 1px solid #dddddd;
	border-right: 0;
	border-bottom: 0;
	margin-top: 16px;
}

.simple-exam-meta p {
	margin: 0;
	padding: 10px 12px;
	border-right: 1px solid #dddddd;
	border-bottom: 1px solid #dddddd;
	color: #555555;
	font-size: 14px;
}

.simple-exam-meta strong {
	color: #1B4062;
}

.simple-exam-buy-box {
	border: 1px solid #dddddd;
	background: #fff8ec;
	padding: 20px;
	align-self: start;
}

.simple-exam-price {
	color: #D59C14;
	font-size: 30px;
	font-weight: 800;
	margin-bottom: 16px;
}

.simple-exam-price del {
	color: #777777;
	font-size: 16px;
	font-weight: 400;
}

.simple-exam-price ins {
	text-decoration: none;
}

.simple-exam-cart {
	margin-bottom: 12px;
}

.simple-exam-cart .quantity {
	margin-bottom: 10px;
}

.simple-exam-cart input.qty {
	width: 80px;
	padding: 10px;
	border: 1px solid #dddddd;
}

.simple-exam-cart .single_add_to_cart_button {
	width: 100%;
	background: #1B4062 !important;
	border: 1px solid #1B4062 !important;
	color: #ffffff !important;
	padding: 13px 18px !important;
	font-weight: 800;
	cursor: pointer;
}

.simple-exam-cart .single_add_to_cart_button:hover {
	background: #D59C14 !important;
	border-color: #D59C14 !important;
}

.simple-exam-section {
	border: 1px solid #dddddd;
	background: #ffffff;
	margin-bottom: 24px;
}

.simple-exam-section h2 {
	margin: 0;
	background: #1B4062;
	color: #ffffff;
	border-left: 5px solid #D59C14;
	padding: 12px 15px;
	font-size: 20px;
}

.simple-exam-description {
	padding: 20px;
	color: #444444;
	line-height: 1.7;
}

.simple-exam-description h2,
.simple-exam-description h3,
.simple-exam-description h4 {
	color: #1B4062;
}

.simple-exam-description table {
	width: 100%;
	border-collapse: collapse;
	margin: 18px 0;
}

.simple-exam-description th,
.simple-exam-description td {
	border: 1px solid #dddddd;
	padding: 10px;
	text-align: left;
}

.simple-exam-description th {
	background: #1B4062;
	color: #ffffff;
}

.simple-related-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	border-top: 1px solid #dddddd;
}

.simple-related-item {
	display: block;
	padding: 16px;
	border-right: 1px solid #dddddd;
	border-bottom: 1px solid #dddddd;
	text-decoration: none !important;
	background: #ffffff;
}

.simple-related-item:hover {
	background: #fff8ec;
}

.simple-related-item strong {
	display: block;
	color: #1B4062;
	font-size: 16px;
	margin-bottom: 6px;
}

.simple-related-item span {
	color: #555555;
	font-size: 14px;
}

.simple-exam-product-page .woocommerce-product-gallery {
	display: none !important;
}

@media (max-width: 991px) {
	.simple-exam-top {
		grid-template-columns: 1fr;
	}

	.simple-related-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 600px) {
	.simple-exam-top {
		padding: 18px;
	}

	.simple-exam-title {
		font-size: 24px;
	}

	.simple-exam-price {
		font-size: 24px;
	}

	.simple-exam-meta {
		grid-template-columns: 1fr;
	}

.simple-related-grid {
		grid-template-columns: 1fr;
	}
}
/* === FINAL SINGLE PRODUCT PAGE FIXES === */
.simple-exam-product-page {
	margin-bottom: 35px;
}

.simple-exam-top {
	display: grid !important;
	grid-template-columns: minmax(0, 1fr) 360px !important;
	gap: 28px !important;
	border: 1px solid #dddddd !important;
	background: #ffffff !important;
	padding: 28px !important;
	margin-bottom: 24px !important;
}

.simple-exam-vendor,
.simple-exam-vendor a {
	color: #D59C14 !important;
	font-size: 13px !important;
	font-weight: 800 !important;	
	text-transform: uppercase !important;
	text-decoration: none !important;
}

.simple-exam-title {
	margin: 14px 0 18px !important;
	color: #1B4062 !important;
	font-size: 42px !important;
	line-height: 1.15 !important;
	font-weight: 800 !important;
}

.simple-exam-code {
	margin: 0 0 14px !important;
	color: #555555 !important;
	font-size: 15px !important;
}

.simple-exam-code strong,
.simple-exam-meta strong {
	color: #1B4062 !important;
}

.simple-exam-meta {
	display: grid !important;
	grid-template-columns: repeat(2, 1fr) !important;
	border: 1px solid #dddddd !important;
	border-right: 0 !important;
	border-bottom: 0 !important;
	margin-top: 16px !important;
}

.simple-exam-meta p {
	margin: 0 !important;
	padding: 13px 15px !important;
	border-right: 1px solid #dddddd !important;
	border-bottom: 1px solid #dddddd !important;
	color: #555555 !important;
	font-size: 15px !important;
	line-height: 1.45 !important;
}

.simple-exam-buy-box {
	border: 1px solid #dddddd !important;
	background: #fff8ec !important;
	padding: 24px !important;
	align-self: start !important;
}

.simple-exam-price {
	color: #D59C14 !important;
	font-size: 38px !important;
	font-weight: 800 !important;
	margin-bottom: 18px !important;
}

.simple-exam-price .amount {
	color: #D59C14 !important;
}

.simple-exam-cart {
	margin-bottom: 14px !important;
}

.simple-exam-cart .quantity {
	margin-bottom: 12px !important;
}

.simple-exam-cart input.qty {
	width: 80px !important;
	padding: 12px !important;
	border: 1px solid #dddddd !important;
}

.simple-exam-cart .single_add_to_cart_button,
.simple-exam-cart button.single_add_to_cart_button {
	width: 100% !important;
	background: #1B4062 !important;
	border: 1px solid #1B4062 !important;
	color: #ffffff !important;
	padding: 14px 18px !important;
	font-weight: 800 !important;
	cursor: pointer !important;
}

.simple-exam-cart .single_add_to_cart_button:hover,
.simple-exam-cart button.single_add_to_cart_button:hover {
	background: #D59C14 !important;
	border-color: #D59C14 !important;
}

.simple-exam-section {
	border: 1px solid #dddddd !important;
	background: #ffffff !important;
	margin-bottom: 24px !important;
}

.simple-exam-section > h2 {
	margin: 0 !important;
	background: #1B4062 !important;
	color: #ffffff !important;
	border-left: 5px solid #D59C14 !important;
	padding: 13px 16px !important;
	font-size: 20px !important;
	line-height: 1.25 !important;
}

.simple-exam-description,
.simple-product-reviews,
.simple-tab-output {
	padding: 20px !important;
	color: #444444 !important;
	line-height: 1.7 !important;
}

.simple-exam-description h2,
.simple-exam-description h3,
.simple-exam-description h4,
.simple-tab-output h2,
.simple-tab-output h3,
.simple-tab-output h4 {
	color: #1B4062 !important;
	background: transparent !important;
	border: 0 !important;
	padding: 0 !important;
}

.simple-exam-description table,
.simple-tab-output table {
	width: 100% !important;
	border-collapse: collapse !important;
	margin: 18px 0 !important;
}

.simple-exam-description th,
.simple-exam-description td,
.simple-tab-output th,
.simple-tab-output td {
	border: 1px solid #dddddd !important;
	padding: 10px !important;
	text-align: left !important;
}

.simple-exam-description th,
.simple-tab-output th {
	background: #1B4062 !important;
	color: #ffffff !important;
}

.simple-feature-grid {
	display: grid !important;
	grid-template-columns: repeat(4, 1fr) !important;
	border-top: 1px solid #dddddd !important;
}

.simple-feature-grid div {
	padding: 18px !important;
	border-right: 1px solid #dddddd !important;
	border-bottom: 1px solid #dddddd !important;
	background: #ffffff !important;
}

.simple-feature-grid div:hover {
	background: #fff8ec !important;
}

.simple-feature-grid strong {
	display: block !important;
	color: #1B4062 !important;
	font-size: 16px !important;
	margin-bottom: 8px !important;
}

.simple-feature-grid span {
	color: #555555 !important;
	font-size: 14px !important;
}

.simple-product-reviews .woocommerce-Reviews-title,
.simple-product-reviews .comment-reply-title {
	color: #1B4062 !important;
}

.simple-product-reviews .woocommerce-Reviews-title {
	display: none !important;
}

.simple-product-reviews .commentlist {
	list-style: none !important;
	margin: 0 !important;
	padding: 0 !important;
}

.simple-product-reviews .commentlist li {
	border: 1px solid #dddddd !important;
	padding: 14px !important;
	margin-bottom: 12px !important;
	background: #ffffff !important;
}

.simple-product-reviews textarea,
.simple-product-reviews input[type="text"],
.simple-product-reviews input[type="email"] {
	width: 100% !important;
	border: 1px solid #dddddd !important;
	padding: 10px !important;
}

.simple-product-reviews input[type="submit"] {
	background: #1B4062 !important;
	border-color: #1B4062 !important;
	color: #ffffff !important;
}

.simple-product-reviews input[type="submit"]:hover {
	background: #D59C14 !important;
	border-color: #D59C14 !important;
}

.simple-related-grid {
	display: grid !important;
	grid-template-columns: repeat(4, 1fr) !important;
	border-top: 1px solid #dddddd !important;
}

.simple-related-item {
	display: block !important;
	padding: 16px !important;
	border-right: 1px solid #dddddd !important;
	border-bottom: 1px solid #dddddd !important;
	text-decoration: none !important;
	background: #ffffff !important;
}

.simple-related-item:hover {
	background: #fff8ec !important;
}

.simple-related-item strong {
	display: block !important;
	color: #1B4062 !important;
	font-size: 16px !important;
	margin-bottom: 6px !important;
}

.simple-related-item span {
	color: #555555 !important;
	font-size: 14px !important;
}

@media (max-width: 991px) {
	.simple-exam-top {
		grid-template-columns: 1fr !important;
	}

	.simple-feature-grid,
	.simple-related-grid {
		grid-template-columns: repeat(2, 1fr) !important;
	}
}

@media (max-width: 600px) {
	.simple-exam-top {
		padding: 18px !important;
	}

	.simple-exam-title {
		font-size: 28px !important;
	}

	.simple-exam-price {
		font-size: 26px !important;
	}

	.simple-exam-meta,
	.simple-feature-grid,
	.simple-related-grid {
		grid-template-columns: 1fr !important;
	}

}

/* ==========================================================
   Mobile Header Fix - responsive logo, search and menu
   ========================================================== */
.p2p-mobile-menu-checkbox {
	position: absolute !important;
	left: -9999px !important;
	top: auto !important;
	width: 1px !important;
	height: 1px !important;
	overflow: hidden !important;
	opacity: 0 !important;
	pointer-events: none !important;
}

.mobile-menu-button-wrap {
	display: none;
}

.mobile-menu-button {
	display: none;
}

@media (min-width: 801px) {
	.main-nav {
		display: block !important;
	}
}

@media (max-width: 800px) {
	html,
	body {
		overflow-x: hidden !important;
	}

	.site-header {
		width: 100% !important;
		background: #ffffff !important;
	}

	.site-header .wrap {
		width: 100% !important;
		max-width: 100% !important;
		padding-left: 14px !important;
		padding-right: 14px !important;
	}

	.top-line {
		font-size: 12px !important;
		line-height: 1.45 !important;
	}

	.top-line .wrap {
		display: flex !important;
		flex-direction: column !important;
		align-items: flex-start !important;
		gap: 2px !important;
		padding-top: 7px !important;
		padding-bottom: 7px !important;
	}

	.brand-row {
		display: flex !important;
		flex-direction: column !important;
		align-items: stretch !important;
		justify-content: flex-start !important;
		gap: 13px !important;
		padding-top: 14px !important;
		padding-bottom: 12px !important;
	}

	.logo-area {
		width: 100% !important;
		display: flex !important;
		align-items: flex-start !important;
		justify-content: flex-start !important;
	}

	.site-logo,
	.custom-logo-link {
		display: inline-flex !important;
		align-items: center !important;
		max-width: 100% !important;
	}

	.site-logo img,
	.custom-logo {
		max-height: 42px !important;
		width: auto !important;
		max-width: 180px !important;
	}

	.site-title,
	.site-logo span {
		font-size: 22px !important;
		line-height: 1.15 !important;
	}

	.site-desc {
		font-size: 12px !important;
		line-height: 1.35 !important;
	}

	.header-search {
		width: 100% !important;
		max-width: 100% !important;
		margin: 0 !important;
		position: relative !important;
	}

	.header-search form,
	.p2p-search-form {
		display: grid !important;
		grid-template-columns: minmax(0, 1fr) auto !important;
		width: 100% !important;
		align-items: stretch !important;
	}

	.header-search input[type="search"],
	.p2p-search-form input[type="search"] {
		min-width: 0 !important;
		width: 100% !important;
		height: 42px !important;
		border: 1px solid #dddddd !important;
		border-right: 0 !important;
		padding: 10px 11px !important;
		font-size: 13px !important;
		border-radius: 0 !important;
	}

	.header-search button,
	.p2p-search-form button {
		height: 42px !important;
		min-width: 68px !important;
		padding: 0 12px !important;
		font-size: 13px !important;
		line-height: 42px !important;
		border-radius: 0 !important;
		white-space: nowrap !important;
	}

	.p2p-search-results {
		left: 0 !important;
		right: 0 !important;
		width: 100% !important;
		max-height: 360px !important;
		z-index: 999999 !important;
	}

	.mobile-menu-button-wrap {
		display: block !important;
		padding-top: 0 !important;
		padding-bottom: 12px !important;
	}

	.mobile-menu-button {
		display: flex !important;
		align-items: center !important;
		justify-content: center !important;
		gap: 8px !important;
		width: 100% !important;
		min-height: 42px !important;
		background: #1B4062 !important;
		border: 1px solid #1B4062 !important;
		color: #ffffff !important;
		font-size: 15px !important;
		font-weight: 700 !important;
		cursor: pointer !important;
		text-align: center !important;
	}

	.mobile-menu-button span {
		display: block !important;
		width: 18px !important;
		height: 2px !important;
		background: #ffffff !important;
		border-radius: 10px !important;
	}

	.main-nav {
		display: none !important;
		background: #ffffff !important;
		border-top: 1px solid #dddddd !important;
		border-bottom: 1px solid #dddddd !important;
	}

	.p2p-mobile-menu-checkbox:checked ~ .main-nav {
		display: block !important;
	}

	.main-nav .wrap {
		padding-left: 14px !important;
		padding-right: 14px !important;
	}

	.main-nav ul,
	.p2p-main-menu {
		display: block !important;
		width: 100% !important;
		margin: 0 !important;
		padding: 0 !important;
	}

	.main-nav li,
	.p2p-main-menu li {
		display: block !important;
		width: 100% !important;
		border-right: 0 !important;
		border-bottom: 1px solid #eeeeee !important;
	}

	.main-nav li:last-child,
	.p2p-main-menu li:last-child {
		border-bottom: 0 !important;
	}

	.main-nav a,
	.p2p-main-menu a {
		display: block !important;
		width: 100% !important;
		padding: 13px 12px !important;
		font-size: 15px !important;
		line-height: 1.25 !important;
		color: #1B4062 !important;
		background: #ffffff !important;
		text-decoration: none !important;
	}

	.main-nav a:hover,
	.p2p-main-menu a:hover {
		background: #1B4062 !important;
		color: #ffffff !important;
	}

	.site-main {
		padding-top: 18px !important;
	}
}

@media (max-width: 420px) {
	.top-line .wrap div:first-child {
		font-size: 11px !important;
	}

	.top-line .wrap div:last-child {
		font-size: 11px !important;
		word-break: break-word !important;
	}

	.site-logo img,
	.custom-logo {
		max-height: 38px !important;
		max-width: 160px !important;
	}

	.header-search input[type="search"],
	.p2p-search-form input[type="search"] {
		font-size: 12px !important;
	}

	.header-search button,
	.p2p-search-form button {
		min-width: 64px !important;
		font-size: 12px !important;
		padding-left: 10px !important;
		padding-right: 10px !important;
	}
}

/* ==========================================================
   Final fixes: breadcrumb, footer encoding
   ========================================================== */
.breadcrumb {
	font-size: 15px !important;
	line-height: 1.6 !important;
	margin: 0 0 22px !important;
	color: #555555 !important;
}

.breadcrumb a {
	color: #1B4062 !important;
	text-decoration: none !important;
}

.breadcrumb a:hover {
	color: #D59C14 !important;
}

.simple-exam-vendor {
	display: none !important;
}


.simple-exam-cart .quantity,
.simple-exam-cart .qty {
	display: none !important;
}

.footer-menu li a::before {
	content: ">" !important;
	font-family: Arial, sans-serif !important;
	font-size: 15px !important;
	line-height: 1 !important;
	top: 4px !important;
}


/* ==========================================================
   Final placement: keep price and cart together
   ========================================================== */
@media (min-width: 992px) {
	.simple-exam-top {
		grid-template-columns: minmax(0, 1fr) 430px !important;
	}
}


.simple-exam-buy-box .simple-exam-price {
	margin-bottom: 16px !important;
}


.simple-exam-buy-box .simple-exam-cart {
	margin-top: 0 !important;
}


/* ==========================================================
   Final polish: product title, contrast, footer arrows
   ========================================================== */
.simple-exam-title {
	color: #1B4062 !important;
	font-weight: 900 !important;
	letter-spacing: -0.03em !important;
	margin-bottom: 10px !important;
}

.simple-exam-subtitle {
	max-width: 820px !important;
	margin: 0 0 16px !important;
	color: #3f4a55 !important;
	font-size: 16px !important;
	line-height: 1.65 !important;
	font-weight: 500 !important;
}

/* Strong readable contrast across the site */
body,
.wrap,
.entry,
.page-content,
.simple-exam-description,
.simple-tab-output,
.woocommerce,
.woocommerce-page {
	color: #222222 !important;
}

.entry a,
.page-content a,
.woocommerce a,
.simple-exam-description a,
.simple-related-item strong {
	color: #1B4062 !important;
}

.entry a:hover,
.page-content a:hover,
.woocommerce a:hover,
.simple-exam-description a:hover,
.simple-related-item:hover strong {
	color: #D59C14 !important;
}

.site-footer,
.site-footer p,
.site-footer span,
.site-footer small,
.site-footer h3,
.site-footer a,
.top-strip,
.top-strip a,
.simple-exam-section h2,
.main-navigation .menu-toggle,
.header-search button,
.p2p-search-form button,
.simple-exam-cart .single_add_to_cart_button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce a.button {
	color: #ffffff !important;
}

.simple-exam-cart .single_add_to_cart_button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce a.button,
.header-search button,
.p2p-search-form button {
	background: #1B4062 !important;
	border-color: #1B4062 !important;
}

.simple-exam-cart .single_add_to_cart_button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover,
.woocommerce a.button:hover,
.header-search button:hover,
.p2p-search-form button:hover {
	background: #D59C14 !important;
	border-color: #D59C14 !important;
	color: #111111 !important;
}

.simple-exam-buy-box,
.simple-exam-meta,
.simple-exam-section,
.simple-related-item,
.woocommerce table.shop_table,
.woocommerce-cart-form,
.cart_totals {
	background: #ffffff !important;
	color: #222222 !important;
}

.simple-exam-buy-box {
	background: #fff8ec !important;
}

.simple-exam-meta p,
.simple-exam-meta strong {
	color: #111111 !important;
}


/* Footer arrow without encoded characters */
.footer-menu li a {
	color: #ffffff !important;
	padding-left: 22px !important;
}

.footer-menu li a:hover {
	color: #D59C14 !important;
}

.footer-menu li a::before {
	content: "" !important;
	position: absolute !important;
	left: 0 !important;
	top: 8px !important;
	width: 7px !important;
	height: 7px !important;
	border-right: 2px solid #D59C14 !important;
	border-bottom: 2px solid #D59C14 !important;
	transform: rotate(-45deg) !important;
	font-size: 0 !important;
	line-height: 0 !important;
}

.footer-bottom p,
.footer-about p,
.footer-discussion-content span {
	color: rgba(255, 255, 255, 0.88) !important;
}

.breadcrumb {
	color: #555555 !important;
}

.breadcrumb a {
	color: #1B4062 !important;
}

.breadcrumb a:hover {
	color: #D59C14 !important;
}

@media (max-width: 600px) {
	.simple-exam-title {
		font-size: 28px !important;
		line-height: 1.2 !important;
	}

	.simple-exam-subtitle {
		font-size: 14px !important;
		line-height: 1.55 !important;
	}
}

/* ==========================================================
   Product content contrast fix
   Keeps the theme blue/gold colors and prevents white text
   from imported product description HTML.
   ========================================================== */
.simple-exam-section,
.simple-exam-description,
.simple-tab-output,
.simple-exam-description > *,
.simple-tab-output > * {
	background-color: #ffffff !important;
	color: #222222 !important;
}

.simple-exam-description *,
.simple-tab-output * {
	color: #222222 !important;
}

.simple-exam-description h1,
.simple-exam-description h2,
.simple-exam-description h3,
.simple-exam-description h4,
.simple-exam-description h5,
.simple-exam-description h6,
.simple-exam-description strong,
.simple-tab-output h1,
.simple-tab-output h2,
.simple-tab-output h3,
.simple-tab-output h4,
.simple-tab-output h5,
.simple-tab-output h6,
.simple-tab-output strong {
	color: #1B4062 !important;
}

.simple-exam-description p,
.simple-exam-description li,
.simple-exam-description span,
.simple-exam-description div,
.simple-exam-description td,
.simple-tab-output p,
.simple-tab-output li,
.simple-tab-output span,
.simple-tab-output div,
.simple-tab-output td {
	color: #222222 !important;
}

.simple-exam-description a,
.simple-tab-output a {
	color: #1B4062 !important;
	font-weight: 700 !important;
}

.simple-exam-description a:hover,
.simple-tab-output a:hover {
	color: #D59C14 !important;
}

.simple-exam-section > h2,
.simple-exam-section > h2 * {
	background: #1B4062 !important;
	color: #ffffff !important;
}

.simple-exam-description table,
.simple-tab-output table {
	background: #ffffff !important;
	color: #222222 !important;
}

.simple-exam-description thead th,
.simple-exam-description th,
.simple-tab-output thead th,
.simple-tab-output th,
.simple-exam-description th *,
.simple-tab-output th * {
	background: #1B4062 !important;
	color: #ffffff !important;
}

.simple-exam-description tbody td,
.simple-exam-description tbody td *,
.simple-tab-output tbody td,
.simple-tab-output tbody td * {
	background: #ffffff !important;
	color: #222222 !important;
}


/* ==========================================================
   Final product action buttons fix
   Styles plugin-added Download Demo / Practice Online buttons
   even when they are inserted inside the WooCommerce cart form.
   ========================================================== */
.single-product .simple-exam-cart form.cart,
.single-product .simple-exam-cart .woocommerce-variation-add-to-cart {
	width: 100% !important;
}

.single-product .simple-exam-cart form.cart.p2p-product-action-grid,
.single-product .simple-exam-cart .woocommerce-variation-add-to-cart.p2p-product-action-grid {
	display: grid !important;
	grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
	gap: 12px !important;
	align-items: stretch !important;
}

.single-product .simple-exam-cart .single_add_to_cart_button,
.single-product .simple-exam-cart button.single_add_to_cart_button,
.single-product .simple-exam-cart .p2p-main-add-cart-btn {
	grid-column: 1 / -1 !important;
	width: 100% !important;
	min-height: 56px !important;
	margin: 0 !important;
	padding: 15px 18px !important;
	background: #1B4062 !important;
	border: 2px solid #1B4062 !important;
	border-radius: 0 !important;
	color: #ffffff !important;
	font-size: 17px !important;
	font-weight: 800 !important;
	line-height: 1.2 !important;
	text-align: center !important;
	text-decoration: none !important;
	box-shadow: none !important;
	text-transform: none !important;
}

.single-product .simple-exam-cart .p2p-product-extra-btn,
.single-product .simple-exam-cart .simple-demo-download-btn,
.single-product .simple-exam-cart .simple-practice-online-btn,
.single-product .simple-exam-cart a[href*="Downloadpdfp2pexam"],
.single-product .simple-exam-cart a[href*="WpDesigner"] {
	display: inline-flex !important;
	align-items: center !important;
	justify-content: center !important;
	width: 100% !important;
	min-width: 0 !important;
	min-height: 48px !important;
	margin: 0 !important;
	padding: 13px 12px !important;
	background: #1B4062 !important;
	border: 2px solid #1B4062 !important;
	border-radius: 0 !important;
	color: #ffffff !important;
	font-size: 16px !important;
	font-weight: 800 !important;
	line-height: 1.2 !important;
	text-align: center !important;
	text-decoration: none !important;
	box-shadow: none !important;
	text-transform: none !important;
	white-space: normal !important;
	cursor: pointer !important;
}

.single-product .simple-exam-cart .p2p-product-extra-btn:hover,
.single-product .simple-exam-cart .simple-demo-download-btn:hover,
.single-product .simple-exam-cart .simple-practice-online-btn:hover,
.single-product .simple-exam-cart a[href*="Downloadpdfp2pexam"]:hover,
.single-product .simple-exam-cart a[href*="WpDesigner"]:hover,
.single-product .simple-exam-cart .single_add_to_cart_button:hover,
.single-product .simple-exam-cart button.single_add_to_cart_button:hover {
	background: #D59C14 !important;
	border-color: #D59C14 !important;
	color: #ffffff !important;
}

.single-product .simple-exam-cart .quantity,
.single-product .simple-exam-cart .qty {
	display: none !important;
}

@media (max-width: 767px) {
	.single-product .simple-exam-cart form.cart.p2p-product-action-grid,
	.single-product .simple-exam-cart .woocommerce-variation-add-to-cart.p2p-product-action-grid {
		grid-template-columns: 1fr !important;
	}

	.single-product .simple-exam-cart .p2p-product-extra-btn,
	.single-product .simple-exam-cart .simple-demo-download-btn,
	.single-product .simple-exam-cart .simple-practice-online-btn {
		grid-column: 1 / -1 !important;
	}
}


/* ==============================
   FINAL FOOTER CSS
   ============================== */

.site-footer {
    padding: 0 0 8px !important;
    margin: 0 !important;
    background: #1b4568 !important;
    border-top: 4px solid #d99a00 !important;
    color: #ffffff !important;
    overflow: hidden !important;
}

.site-footer * {
    box-sizing: border-box !important;
}

.site-footer .wrap {
    max-width: 1220px !important;
    width: 100% !important;
    margin: 0 auto !important;
    padding-left: 22px !important;
    padding-right: 22px !important;
}

/* Footer 4 Columns */
.site-footer .footer-main {
    display: grid !important;
    grid-template-columns: 1.1fr 1.55fr 0.85fr 1fr !important;
    gap: 36px !important;
    align-items: flex-start !important;
    padding-top: 38px !important;
    padding-bottom: 24px !important;
    margin: 0 auto !important;
}

.site-footer .footer-about,
.site-footer .footer-discussions,
.site-footer .footer-useful-links,
.site-footer .footer-customer-support {
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    min-width: 0 !important;
}

/* Footer Logo */
.site-footer .footer-logo {
    display: inline-block !important;
    margin: 0 0 22px 0 !important;
    padding: 0 !important;
    background: transparent !important;
}

.site-footer .footer-logo img,
.site-footer .footer-p2pexam-logo,
.site-footer #footer-p2pexam-logo {
    max-width: 185px !important;
    width: 185px !important;
    height: auto !important;
    display: block !important;
}

/* Footer من نحن Text */
.site-footer .footer-about p {
    color: #ffffff !important;
    font-size: 16px !important;
    line-height: 1.55 !important;
    margin: 0 !important;
    padding: 0 !important;
    max-width: 330px !important;
}

/* Footer Headings */
.site-footer h3 {
    color: #ffffff !important;
    font-size: 22px !important;
    line-height: 1.2 !important;
    font-weight: 800 !important;
    text-transform: uppercase !important;
    margin: 0 0 24px 0 !important;
    padding: 0 !important;
    position: relative !important;
}

.site-footer h3::after {
    content: "" !important;
    display: block !important;
    width: 78px !important;
    height: 2px !important;
    background: #d99a00 !important;
    margin-top: 12px !important;
}

/* Recent Discussions - Smaller Size */
.site-footer .footer-discussion-item {
    display: flex !important;
    align-items: flex-start !important;
    gap: 10px !important;
    padding: 0 0 10px 0 !important;
    margin: 0 0 10px 0 !important;
    border-bottom: 1px solid rgba(255,255,255,0.16) !important;
}

.site-footer .footer-discussion-item:last-child {
    margin-bottom: 0 !important;
    border-bottom: none !important;
}

.site-footer .footer-date {
    width: 45px !important;
    min-width: 45px !important;
    height: 58px !important;
    background: #d99a00 !important;
    color: #ffffff !important;
    padding: 5px 4px !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
}

.site-footer .footer-date span {
    color: #ffffff !important;
    font-size: 20px !important;
    line-height: 1 !important;
    font-weight: 800 !important;
    margin: 0 0 4px 0 !important;
    padding: 0 !important;
}

.site-footer .footer-date small {
    color: #ffffff !important;
    font-size: 11px !important;
    line-height: 1 !important;
    font-weight: 700 !important;
    margin: 0 !important;
    padding: 0 !important;
}

.site-footer .footer-discussion-content {
    min-width: 0 !important;
}

.site-footer .footer-discussion-content a {
    color: #ffffff !important;
    font-size: 14px !important;
    line-height: 1.3 !important;
    font-weight: 400 !important;
    margin: 0 0 4px 0 !important;
    padding: 0 !important;
    display: block !important;
    text-decoration: none !important;
    background: transparent !important;
    box-shadow: none !important;
}

.site-footer .footer-discussion-content a:hover {
    color: #d99a00 !important;
}

.site-footer .footer-discussion-content span {
    color: #ffffff !important;
    font-size: 12px !important;
    line-height: 1.2 !important;
    font-weight: 700 !important;
    margin: 0 !important;
    padding: 0 !important;
    display: block !important;
}

/* Useful Links + Customer Support */
.site-footer .footer-menu {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
    display: block !important;
    columns: 1 !important;
    column-count: 1 !important;
}

.site-footer .footer-menu li {
    list-style: none !important;
    margin: 0 0 15px 0 !important;
    padding: 0 0 0 24px !important;
    position: relative !important;
    display: block !important;
    width: 100% !important;
    background: transparent !important;
    box-shadow: none !important;
}

.site-footer .footer-menu li::before {
    content: "›" !important;
    position: absolute !important;
    left: 0 !important;
    top: -5px !important;
    color: #d99a00 !important;
    font-size: 30px !important;
    line-height: 1 !important;
    font-weight: 800 !important;
    background: transparent !important;
    width: auto !important;
    height: auto !important;
    transform: none !important;
    display: block !important;
}

/* Remove duplicate arrows */
.site-footer .footer-menu li::after,
.site-footer .footer-menu li a::before,
.site-footer .footer-menu li a::after {
    content: none !important;
    display: none !important;
}

.site-footer .footer-menu li a {
    color: #ffffff !important;
    text-decoration: none !important;
    font-size: 16px !important;
    line-height: 1.35 !important;
    font-weight: 400 !important;
    padding: 0 !important;
    margin: 0 !important;
    display: inline-block !important;
    background: transparent !important;
    box-shadow: none !important;
}

.site-footer .footer-menu li a:hover {
    color: #d99a00 !important;
    background: transparent !important;
    box-shadow: none !important;
}

/* Footer Bottom */
.site-footer .footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.18) !important;
    margin-top: 0 !important;
    padding-top: 14px !important;
    padding-bottom: 6px !important;
}

.site-footer .footer-bottom p {
    color: #ffffff !important;
    font-size: 15px !important;
    line-height: 1.4 !important;
    margin: 0 !important;
    padding: 0 !important;
}

/* Back To Top */
.site-footer .back-to-top {
    width: 54px !important;
    height: 54px !important;
    border-radius: 50% !important;
    background: #d99a00 !important;
    color: #ffffff !important;
    border: none !important;
    font-size: 28px !important;
    line-height: 1 !important;
    position: fixed !important;
    right: 24px !important;
    bottom: 28px !important;
    z-index: 999 !important;
    cursor: pointer !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.site-footer .back-to-top:hover {
    background: #ffffff !important;
    color: #1b4568 !important;
}

/* Tablet Responsive */
@media (max-width: 1100px) {
    .site-footer .footer-main {
        grid-template-columns: 1fr 1fr !important;
        gap: 34px !important;
    }
}

/* Mobile Responsive */
@media (max-width: 767px) {
    .site-footer .wrap {
        padding-left: 18px !important;
        padding-right: 18px !important;
    }

    .site-footer .footer-main {
        grid-template-columns: 1fr !important;
        gap: 28px !important;
        padding-top: 30px !important;
        padding-bottom: 22px !important;
    }

    .site-footer .footer-about p {
        max-width: 100% !important;
    }

    .site-footer .footer-discussion-content a {
        font-size: 16px !important;
    }

    .site-footer .footer-menu li a {
        font-size: 16px !important;
    }

    .site-footer .back-to-top {
        width: 48px !important;
        height: 48px !important;
        right: 16px !important;
        bottom: 18px !important;
        font-size: 24px !important;
    }
}

/* ==========================================================
   P2PExam custom variation design
   Shows variation options outside dropdowns and uses selected
   variation price instead of WooCommerce range price.
   ========================================================== */
.single-product .simple-exam-cart form.variations_form table.variations {
	display: none !important;
}

.single-product .simple-exam-cart .p2p-hidden-variation-select {
	position: absolute !important;
	left: -99999px !important;
	width: 1px !important;
	height: 1px !important;
	opacity: 0 !important;
	pointer-events: none !important;
}

.single-product .simple-exam-cart .p2p-variation-select-ui {
	display: grid !important;
	gap: 14px !important;
	margin: 0 0 16px !important;
}

.single-product .simple-exam-cart .p2p-variation-choice-group {
	display: grid !important;
	gap: 8px !important;
}

.single-product .simple-exam-cart .p2p-variation-choice-label {
	color: #111111 !important;
	font-size: 15px !important;
	font-weight: 800 !important;
	line-height: 1.3 !important;
}

.single-product .simple-exam-cart .p2p-variation-options {
	display: grid !important;
	grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
	gap: 8px !important;
}

.single-product .simple-exam-cart .p2p-variation-option {
	display: inline-flex !important;
	align-items: center !important;
	justify-content: center !important;
	width: 100% !important;
	min-height: 42px !important;
	padding: 10px 8px !important;
	background: #ffffff !important;
	border: 2px solid #1B4062 !important;
	border-radius: 0 !important;
	color: #1B4062 !important;
	font-size: 14px !important;
	font-weight: 800 !important;
	line-height: 1.2 !important;
	text-align: center !important;
	cursor: pointer !important;
	box-shadow: none !important;
	transition: background-color .15s ease, color .15s ease, border-color .15s ease !important;
}

.single-product .simple-exam-cart .p2p-variation-option:hover,
.single-product .simple-exam-cart .p2p-variation-option.is-active {
	background: #1B4062 !important;
	border-color: #1B4062 !important;
	color: #ffffff !important;
}

.single-product .simple-exam-cart .woocommerce-variation-price,
.single-product .simple-exam-cart .woocommerce-variation-description,
.single-product .simple-exam-cart .woocommerce-variation-availability {
	display: none !important;
}

.single-product .simple-exam-buy-box .simple-exam-price.p2p-selected-variation-price {
	margin-bottom: 18px !important;
}

.single-product .simple-exam-buy-box .simple-exam-price.p2p-selected-variation-price .price,
.single-product .simple-exam-buy-box .simple-exam-price.p2p-selected-variation-price .amount {
	color: #D59C14 !important;
	font-size: inherit !important;
	font-weight: inherit !important;
}

@media (max-width: 575px) {
	.single-product .simple-exam-cart .p2p-variation-options {
		grid-template-columns: 1fr !important;
	}
}

/* ==========================================================
   P2PExam v1.2.0 final fixes
   - Stable variation UI with less blinking
   - Proper mobile hamburger next to logo
   - Two-column mobile exam/vendor grids
   - Accessibility and contrast improvements
   ========================================================== */

/* Stable product/variation area */
.single-product .simple-exam-buy-box {
	contain: layout paint !important;
}

.single-product .simple-exam-buy-box .simple-exam-price {
	min-height: 48px !important;
	line-height: 1.15 !important;
}

.single-product .simple-exam-cart form.variations_form:not(.p2p-variation-ui-ready) table.variations {
	display: none !important;
}

.single-product .simple-exam-cart form.variations_form:not(.p2p-variation-ui-ready)::before {
	content: "" !important;
	display: block !important;
	min-height: 126px !important;
}

.single-product .simple-exam-cart form.variations_form.p2p-variation-ui-ready::before {
	display: none !important;
	content: none !important;
}

.single-product .simple-exam-cart .p2p-variation-option.is-disabled,
.single-product .simple-exam-cart .p2p-variation-option:disabled {
	opacity: .45 !important;
	cursor: not-allowed !important;
}

.single-product .simple-exam-cart .single_add_to_cart_button.disabled,
.single-product .simple-exam-cart .single_add_to_cart_button:disabled,
.single-product .simple-exam-cart button.single_add_to_cart_button.disabled,
.single-product .simple-exam-cart button.single_add_to_cart_button:disabled {
	background: #1B4062 !important;
	border-color: #1B4062 !important;
	color: #ffffff !important;
	opacity: .72 !important;
	cursor: not-allowed !important;
}

/* Better focus visibility and contrast for accessibility */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
[tabindex]:focus-visible,
.mobile-menu-button:focus-visible,
.p2p-variation-option:focus-visible {
	outline: 3px solid #D59C14 !important;
	outline-offset: 3px !important;
	box-shadow: none !important;
}

.screen-reader-text:focus {
	position: fixed !important;
	left: 15px !important;
	top: 15px !important;
	width: auto !important;
	height: auto !important;
	clip: auto !important;
	padding: 10px 14px !important;
	background: #1B4062 !important;
	color: #ffffff !important;
	z-index: 1000000 !important;
	text-decoration: none !important;
}

.header-search button:hover,
.p2p-search-form button:hover,
button:hover,
input[type="submit"]:hover,
.btn:hover,
.button:hover,
.woocommerce a.button:hover,
.woocommerce button.button:hover,
.single-product .simple-exam-cart .p2p-product-extra-btn:hover,
.single-product .simple-exam-cart .simple-demo-download-btn:hover,
.single-product .simple-exam-cart .simple-practice-online-btn:hover,
.single-product .simple-exam-cart a[href*="Downloadpdfp2pexam"]:hover,
.single-product .simple-exam-cart a[href*="WpDesigner"]:hover,
.single-product .simple-exam-cart .single_add_to_cart_button:hover,
.single-product .simple-exam-cart button.single_add_to_cart_button:hover {
	color: #111111 !important;
}

/* Mobile header: hamburger next to logo, dropdown menu below header */
.logo-menu-row {
	display: contents !important;
}

.mobile-menu-button .screen-reader-text {
	position: absolute !important;
	width: 1px !important;
	height: 1px !important;
	overflow: hidden !important;
	clip: rect(1px,1px,1px,1px) !important;
	white-space: nowrap !important;
	background: transparent !important;
}

@media (min-width: 801px) {
	.mobile-menu-button {
		display: none !important;
	}

	.main-nav {
		display: block !important;
	}
}

@media (max-width: 800px) {
	.mobile-menu-button-wrap {
		display: none !important;
	}

	.brand-row {
		display: grid !important;
		grid-template-columns: 1fr !important;
		gap: 10px !important;
		padding-top: 12px !important;
		padding-bottom: 12px !important;
	}

	.logo-menu-row {
		display: flex !important;
		align-items: center !important;
		justify-content: space-between !important;
		gap: 12px !important;
		width: 100% !important;
	}

	.logo-area {
		min-width: 0 !important;
		width: auto !important;
	}

	.site-logo img,
	.custom-logo {
		max-height: 42px !important;
		max-width: 190px !important;
	}

	.mobile-menu-button {
		display: inline-flex !important;
		flex: 0 0 44px !important;
		width: 44px !important;
		height: 44px !important;
		min-height: 44px !important;
		align-items: center !important;
		justify-content: center !important;
		flex-direction: column !important;
		gap: 5px !important;
		padding: 0 !important;
		margin: 0 !important;
		background: #1B4062 !important;
		border: 2px solid #1B4062 !important;
		color: #ffffff !important;
		cursor: pointer !important;
	}

	.mobile-menu-button span:not(.screen-reader-text) {
		display: block !important;
		width: 22px !important;
		height: 2px !important;
		background: #ffffff !important;
		border-radius: 999px !important;
		padding: 0 !important;
		margin: 0 !important;
	}

	#p2p-mobile-menu-toggle:checked ~ .brand-row .mobile-menu-button {
		background: #D59C14 !important;
		border-color: #D59C14 !important;
	}

	#p2p-mobile-menu-toggle:checked ~ .brand-row .mobile-menu-button span:not(.screen-reader-text) {
		background: #111111 !important;
	}

	.header-search {
		grid-column: 1 / -1 !important;
		width: 100% !important;
		max-width: 100% !important;
		margin-top: 0 !important;
	}

	.header-account-area {
		grid-column: 1 / -1 !important;
		width: 100% !important;
	}

	.header-account-btn {
		display: inline-block !important;
		padding: 4px 0 !important;
		font-size: 13px !important;
	}

	.main-nav {
		display: none !important;
		position: relative !important;
		z-index: 9999 !important;
		box-shadow: 0 10px 20px rgba(0,0,0,.08) !important;
	}

	#p2p-mobile-menu-toggle:checked ~ .main-nav {
		display: block !important;
	}

	.main-nav .wrap {
		padding-left: 14px !important;
		padding-right: 14px !important;
	}

	.main-nav ul,
	.p2p-main-menu {
		display: block !important;
	}

	.main-nav li,
	.p2p-main-menu li {
		display: block !important;
		width: 100% !important;
		border-right: 0 !important;
		border-bottom: 1px solid #eeeeee !important;
	}

	.main-nav a,
	.p2p-main-menu a {
		display: block !important;
		width: 100% !important;
		padding: 13px 12px !important;
		background: #ffffff !important;
		color: #1B4062 !important;
		font-size: 15px !important;
		font-weight: 700 !important;
	}

	.main-nav a:hover,
	.p2p-main-menu a:hover {
		background: #1B4062 !important;
		color: #ffffff !important;
	}
}

/* Mobile اختبارات/vendors: keep 2 cards per row */
@media (max-width: 600px) {
	.woocommerce ul.products {
		grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
	}

	.woocommerce ul.products li.product {
		padding: 12px 10px !important;
		min-height: 86px !important;
	}

	.woocommerce ul.products li.product .woocommerce-loop-product__title {
		font-size: 14px !important;
		line-height: 1.25 !important;
		word-break: break-word !important;
	}

	.woocommerce ul.products li.product .price {
		font-size: 13px !important;
		line-height: 1.35 !important;
	}

	.vendors-list-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
	}

	.vendor-list-item {
		padding: 14px 10px !important;
		min-height: 86px !important;
	}

	.vendor-list-item strong {
		font-size: 15px !important;
		line-height: 1.25 !important;
		word-break: break-word !important;
	}

	.vendor-list-item span {
		font-size: 13px !important;
		line-height: 1.3 !important;
	}
}

@media (max-width: 360px) {
	.woocommerce ul.products li.product .woocommerce-loop-product__title,
	.vendor-list-item strong {
		font-size: 13px !important;
	}

	.woocommerce ul.products li.product,
	.vendor-list-item {
		padding-left: 8px !important;
		padding-right: 8px !important;
	}
}

@media (prefers-reduced-motion: reduce) {
	*,
	*::before,
	*::after {
		animation-duration: .01ms !important;
		animation-iteration-count: 1 !important;
		scroll-behavior: auto !important;
		transition-duration: .01ms !important;
	}
}

/* ==========================================================
   FINAL FIX: Additional Information + Variation Price Stability
   Added after full original base.css
   ========================================================== */

/* Hide WooCommerce Additional Information tab and product attributes */
.single-product .woocommerce-Tabs-panel--additional_information,
.single-product #tab-additional_information,
.single-product .additional_information_tab,
.single-product .woocommerce-product-attributes,
.single-product .shop_attributes,
.single-product .simple-tab-output .shop_attributes,
.single-product .simple-exam-description .shop_attributes {
	display: none !important;
	visibility: hidden !important;
	height: 0 !important;
	max-height: 0 !important;
	overflow: hidden !important;
	margin: 0 !important;
	padding: 0 !important;
	border: 0 !important;
}

/* Keep main price area stable when variation price updates */
.single-product .simple-exam-buy-box .simple-exam-price {
	min-height: 48px !important;
	line-height: 1.15 !important;
	display: block !important;
	transition: none !important;
	animation: none !important;
}

/* JS classes used while WooCommerce variation price is updating */
.single-product .simple-exam-buy-box .simple-exam-price.p2p-price-updating,
.single-product .simple-exam-buy-box .simple-exam-price.p2p-price-settling {
	min-height: 48px !important;
	opacity: 1 !important;
	visibility: visible !important;
	transition: none !important;
	animation: none !important;
}

/* Hide WooCommerce internal variation price to avoid duplicate/blink price */
.single-product .simple-exam-cart .woocommerce-variation-price,
.single-product .simple-exam-cart .woocommerce-variation-price .price,
.single-product .simple-exam-cart .woocommerce-variation-description,
.single-product .simple-exam-cart .woocommerce-variation-availability {
	display: none !important;
	visibility: hidden !important;
	height: 0 !important;
	max-height: 0 !important;
	overflow: hidden !important;
	margin: 0 !important;
	padding: 0 !important;
}

/* Make selected variation price color consistent */
.single-product .simple-exam-buy-box .simple-exam-price,
.single-product .simple-exam-buy-box .simple-exam-price .price,
.single-product .simple-exam-buy-box .simple-exam-price .amount,
.single-product .simple-exam-buy-box .simple-exam-price ins,
.single-product .simple-exam-buy-box .simple-exam-price bdi {
	color: #D59C14 !important;
	font-size: inherit !important;
	font-weight: inherit !important;
	line-height: inherit !important;
}

/* Keep sale price readable if WooCommerce returns sale price HTML */
.single-product .simple-exam-buy-box .simple-exam-price del {
	color: #777777 !important;
	font-size: 16px !important;
	font-weight: 400 !important;
	opacity: .75 !important;
}

.single-product .simple-exam-buy-box .simple-exam-price ins {
	text-decoration: none !important;
}

/* Prevent layout jump in buy box */
.single-product .simple-exam-buy-box {
	contain: layout paint !important;
}

.single-product .simple-exam-cart form.variations_form {
	min-height: auto !important;
}



/* ==========================================================
   FINAL HOTFIX: ACF visible + large stable variation price
   Paste-safe block added بواسطة ChatGPT
   ========================================================== */

/* Hide only WooCommerce Additional Information/attribute table.
   This does NOT hide ACF fields printed in .simple-exam-meta or .simple-feature-grid. */
.single-product .woocommerce-Tabs-panel--additional_information,
.single-product #tab-additional_information,
.single-product .additional_information_tab,
.single-product .woocommerce-product-attributes,
.single-product table.shop_attributes,
.single-product .simple-tab-output table.shop_attributes,
.single-product .simple-exam-description table.shop_attributes {
	display: none !important;
	visibility: hidden !important;
	height: 0 !important;
	max-height: 0 !important;
	overflow: hidden !important;
	margin: 0 !important;
	padding: 0 !important;
	border: 0 !important;
}

/* Main product price: bigger and stable */
.single-product .simple-exam-buy-box .simple-exam-price {
	display: block !important;
	min-height: 58px !important;
	margin: 0 0 20px 0 !important;
	padding: 0 !important;
	color: #D59C14 !important;
	font-size: 42px !important;
	font-weight: 900 !important;
	line-height: 1.15 !important;
	letter-spacing: -0.02em !important;
	transition: none !important;
	animation: none !important;
	opacity: 1 !important;
	visibility: visible !important;
}

/* Force WooCommerce price spans to use same large size */
.single-product .simple-exam-buy-box .simple-exam-price *,
.single-product .simple-exam-buy-box .simple-exam-price .price,
.single-product .simple-exam-buy-box .simple-exam-price .amount,
.single-product .simple-exam-buy-box .simple-exam-price .woocommerce-Price-amount,
.single-product .simple-exam-buy-box .simple-exam-price .woocommerce-Price-currencySymbol,
.single-product .simple-exam-buy-box .simple-exam-price bdi {
	color: #D59C14 !important;
	font-size: 42px !important;
	font-weight: 900 !important;
	line-height: 1.15 !important;
	letter-spacing: -0.02em !important;
}

/* During variation AJAX update keep the current price visible, no blink/fade */
.single-product .simple-exam-buy-box .simple-exam-price.p2p-price-updating,
.single-product .simple-exam-buy-box .simple-exam-price.p2p-price-settling,
.single-product .simple-exam-buy-box .simple-exam-price.p2p-selected-variation-price {
	min-height: 58px !important;
	opacity: 1 !important;
	visibility: visible !important;
	transition: none !important;
	animation: none !important;
}

/* Hide WooCommerce's internal variation price so only our main price is visible */
.single-product .simple-exam-cart .woocommerce-variation-price,
.single-product .simple-exam-cart .woocommerce-variation-price .price,
.single-product .simple-exam-cart .woocommerce-variation-price .amount,
.single-product .simple-exam-cart .woocommerce-variation-description,
.single-product .simple-exam-cart .woocommerce-variation-availability {
	display: none !important;
	visibility: hidden !important;
	height: 0 !important;
	max-height: 0 !important;
	overflow: hidden !important;
	margin: 0 !important;
	padding: 0 !important;
	border: 0 !important;
}

/* Sale price support */
.single-product .simple-exam-buy-box .simple-exam-price del,
.single-product .simple-exam-buy-box .simple-exam-price del *,
.single-product .simple-exam-buy-box .simple-exam-price del bdi {
	color: #777777 !important;
	font-size: 18px !important;
	font-weight: 500 !important;
	opacity: 0.75 !important;
}

.single-product .simple-exam-buy-box .simple-exam-price ins {
	text-decoration: none !important;
}

/* Keep buy box from jumping */
.single-product .simple-exam-buy-box {
	contain: layout paint !important;
}

/* ACF field boxes must stay visible */
.single-product .simple-exam-meta,
.single-product .simple-exam-meta p,
.single-product .simple-feature-grid,
.single-product .simple-feature-grid div {
	display: grid !important;
	visibility: visible !important;
	opacity: 1 !important;
}

.single-product .simple-exam-meta p {
	display: block !important;
}

@media (max-width: 600px) {
	.single-product .simple-exam-buy-box .simple-exam-price,
	.single-product .simple-exam-buy-box .simple-exam-price *,
	.single-product .simple-exam-buy-box .simple-exam-price .amount,
	.single-product .simple-exam-buy-box .simple-exam-price .woocommerce-Price-amount,
	.single-product .simple-exam-buy-box .simple-exam-price bdi {
		font-size: 32px !important;
	}
}

/* ==========================================================
   FINAL HEADER COUPON BAR + CART BUTTON + CART PAGE BUTTON
   Added for P2PExam header coupon/cart and cart page checkout styling
   ========================================================== */

/* Coupon Bar Above Header */
.p2p-coupon-topbar {
	background: #1D3F63 !important;
	color: #ffffff !important;
	border-bottom: 1px solid rgba(0,0,0,0.08) !important;
	font-size: 15px !important;
	font-weight: 600 !important;
	line-height: 0.4 !important;
}

.p2p-coupon-topbar .wrap {
	display: flex !important;
	align-items: center !important;
	justify-content: center !important;
	gap: 8px !important;
	padding-top: 9px !important;
	padding-bottom: 9px !important;
	text-align: center !important;
}

.p2p-coupon-text {
	color: #ffffff !important;
}

.p2p-coupon-code {
	display: inline-flex !important;
	align-items: center !important;
	justify-content: center !important;
	background: #D99A00 !important;
	color: #ffffff !important;
	border: 1px dashed rgba(255,255,255,0.75) !important;
	padding: 4px 12px !important;
	font-size: 15px !important;
	font-weight: 900 !important;
	letter-spacing: 0.04em !important;
	text-transform: uppercase !important;
}

/* Header Account + السلة Area */
.header-account-area {
	display: flex !important;
	align-items: center !important;
	justify-content: flex-end !important;
	gap: 10px !important;
	flex-wrap: wrap !important;
}

.header-account-btn {
	display: inline-flex !important;
	align-items: center !important;
	justify-content: center !important;
	min-height: 42px !important;
	padding: 10px 14px !important;
	color: #1B4062 !important;
	background: #ffffff !important;
	border: 1px solid #dddddd !important;
	font-size: 15px !important;
	font-weight: 700 !important;
	text-decoration: none !important;
	line-height: 1.2 !important;
	transition: all .18s ease !important;
}

.header-account-btn:hover {
	background: #1B4062 !important;
	border-color: #1B4062 !important;
	color: #ffffff !important;
	text-decoration: none !important;
}

/* Header السلة Button */
.header-cart-btn {
	position: relative !important;
	display: inline-flex !important;
	align-items: center !important;
	justify-content: center !important;
	gap: 8px !important;
	min-height: 42px !important;
	padding: 9px 13px !important;
	background: #1B4062 !important;
	border: 1px solid #1B4062 !important;
	color: #ffffff !important;
	text-decoration: none !important;
	line-height: 1 !important;
	font-size: 15px !important;
	font-weight: 800 !important;
	box-shadow: none !important;
	transition: all .18s ease !important;
}

.header-cart-btn:hover {
	background: #D59C14 !important;
	border-color: #D59C14 !important;
	color: #ffffff !important;
	text-decoration: none !important;
}

.header-cart-icon {
	display: inline-flex !important;
	align-items: center !important;
	justify-content: center !important;
	width: 22px !important;
	height: 22px !important;
	color: currentColor !important;
}

.header-cart-icon svg {
	display: block !important;
	width: 22px !important;
	height: 22px !important;
}

.header-cart-label {
	color: currentColor !important;
	font-size: 15px !important;
	font-weight: 800 !important;
}

.header-cart-count {
	position: absolute !important;
	top: -8px !important;
	right: -8px !important;
	display: inline-flex !important;
	align-items: center !important;
	justify-content: center !important;
	min-width: 22px !important;
	height: 22px !important;
	padding: 0 6px !important;
	background: #D59C14 !important;
	color: #ffffff !important;
	border: 2px solid #ffffff !important;
	border-radius: 999px !important;
	font-size: 12px !important;
	font-weight: 900 !important;
	line-height: 1 !important;
}

/* Brand row layout improvement */
.brand-row {
	display: grid !important;
	grid-template-columns: auto minmax(280px, 1fr) auto !important;
	align-items: center !important;
	gap: 22px !important;
}

.logo-menu-row {
	display: flex !important;
	align-items: center !important;
	justify-content: space-between !important;
	gap: 12px !important;
	min-width: 0 !important;
}

.header-search {
	max-width: 620px !important;
	width: 100% !important;
}

/* السلة / Checkout Page Buttons */
.woocommerce-cart .wc-proceed-to-checkout a.checkout-button,
.woocommerce-cart .wc-proceed-to-checkout .checkout-button,
.woocommerce .wc-proceed-to-checkout a.checkout-button,
.woocommerce-page .wc-proceed-to-checkout a.checkout-button,
.woocommerce a.checkout-button,
.woocommerce button.button,
.woocommerce input.button {
	background: #D59C14 !important;
	border: 2px solid #D59C14 !important;
	color: #ffffff !important;
	font-size: 18px !important;
	font-weight: 900 !important;
	line-height: 1.2 !important;
	text-align: center !important;
	text-decoration: none !important;
	padding: 16px 22px !important;
	border-radius: 0 !important;
	box-shadow: none !important;
	transition: all .18s ease !important;
}

.woocommerce-cart .wc-proceed-to-checkout a.checkout-button:hover,
.woocommerce-cart .wc-proceed-to-checkout .checkout-button:hover,
.woocommerce .wc-proceed-to-checkout a.checkout-button:hover,
.woocommerce-page .wc-proceed-to-checkout a.checkout-button:hover,
.woocommerce a.checkout-button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover {
	background: #1B4062 !important;
	border-color: #1B4062 !important;
	color: #ffffff !important;
	text-decoration: none !important;
}

/* السلة page coupon / update cart buttons */
.woocommerce-cart table.cart td.actions .coupon .button,
.woocommerce-cart table.cart td.actions > .button {
	background: #1B4062 !important;
	border-color: #1B4062 !important;
	color: #ffffff !important;
	font-weight: 800 !important;
}

.woocommerce-cart table.cart td.actions .coupon .button:hover,
.woocommerce-cart table.cart td.actions > .button:hover {
	background: #D59C14 !important;
	border-color: #D59C14 !important;
	color: #ffffff !important;
}

/* WooCommerce notices professional styling */
.woocommerce-message,
.woocommerce-info,
.woocommerce-error {
	border-top-color: #D59C14 !important;
	background: #fff8ec !important;
	color: #222222 !important;
	font-size: 15px !important;
	font-weight: 600 !important;
}

.woocommerce-message::before,
.woocommerce-info::before {
	color: #D59C14 !important;
}

.woocommerce-error::before {
	color: #c0392b !important;
}

.woocommerce-message a,
.woocommerce-info a,
.woocommerce-error a {
	color: #1B4062 !important;
	font-weight: 900 !important;
}

/* Mobile responsive header cart */
@media (max-width: 800px) {
	.p2p-coupon-topbar .wrap {
		flex-direction: column !important;
		gap: 5px !important;
		font-size: 13px !important;
	}

	.p2p-coupon-code {
		font-size: 13px !important;
		padding: 4px 10px !important;
	}

	.brand-row {
		display: flex !important;
		flex-direction: column !important;
		align-items: stretch !important;
		gap: 14px !important;
	}

	.logo-menu-row {
		width: 100% !important;
	}

	.header-account-area {
		width: 100% !important;
		justify-content: space-between !important;
		display: grid !important;
		grid-template-columns: 1fr 1fr !important;
		gap: 10px !important;
	}

	.header-cart-btn,
	.header-account-btn {
		width: 100% !important;
		min-height: 44px !important;
	}

	.header-cart-label {
		display: inline-block !important;
	}
}

@media (max-width: 420px) {
	.header-account-area {
		grid-template-columns: 1fr !important;
	}

	.header-cart-count {
		top: -7px !important;
		right: -7px !important;
	}
}




/* ==========================================================
   FORCE FIX: WooCommerce Block السلة Proceed Checkout Button
   Paste at the very end of assets/css/base.css
   ========================================================== */

body .wp-block-woocommerce-cart .wc-block-cart__submit-container,
body .wc-block-cart__submit-container {
	width: 100% !important;
}

body .wp-block-woocommerce-cart .wc-block-cart__submit-button,
body .wp-block-woocommerce-cart .wc-block-components-button,
body .wc-block-cart__submit-button,
body .wc-block-components-button.wc-block-cart__submit-button {
	background: #D59C14 !important;
	background-color: #D59C14 !important;
	border: 2px solid #D59C14 !important;
	color: #ffffff !important;
	width: 100% !important;
	min-height: 58px !important;
	padding: 18px 24px !important;
	border-radius: 0 !important;
	box-shadow: none !important;
	text-decoration: none !important;
	opacity: 1 !important;
	display: flex !important;
	align-items: center !important;
	justify-content: center !important;
	font-size: 18px !important;
	font-weight: 900 !important;
	line-height: 1.2 !important;
}

body .wp-block-woocommerce-cart .wc-block-cart__submit-button span,
body .wp-block-woocommerce-cart .wc-block-components-button span,
body .wp-block-woocommerce-cart .wc-block-components-button__text,
body .wc-block-cart__submit-button span,
body .wc-block-components-button.wc-block-cart__submit-button span,
body .wc-block-components-button__text {
	color: #ffffff !important;
	font-size: 18px !important;
	font-weight: 900 !important;
	text-decoration: none !important;
}

body .wp-block-woocommerce-cart .wc-block-cart__submit-button:hover,
body .wp-block-woocommerce-cart .wc-block-components-button:hover,
body .wc-block-cart__submit-button:hover,
body .wc-block-components-button.wc-block-cart__submit-button:hover {
	background: #1B4062 !important;
	background-color: #1B4062 !important;
	border-color: #1B4062 !important;
	color: #ffffff !important;
}

body .wp-block-woocommerce-cart .wc-block-cart__submit-button:hover span,
body .wp-block-woocommerce-cart .wc-block-components-button:hover span,
body .wp-block-woocommerce-cart .wc-block-components-button:hover .wc-block-components-button__text,
body .wc-block-cart__submit-button:hover span,
body .wc-block-components-button.wc-block-cart__submit-button:hover span {
	color: #ffffff !important;
}




/* ==========================================================
   Restore WordPress Admin Bar Original Style
   ========================================================== */

body.admin-bar #wpadminbar {
	background: #1d2327 !important;
	color: #f0f0f1 !important;
}

body.admin-bar #wpadminbar a,
body.admin-bar #wpadminbar .ab-item,
body.admin-bar #wpadminbar .ab-label,
body.admin-bar #wpadminbar .display-name,
body.admin-bar #wpadminbar .username {
	color: #f0f0f1 !important;
	background: transparent !important;
	text-decoration: none !important;
	opacity: 1 !important;
}

body.admin-bar #wpadminbar .ab-icon,
body.admin-bar #wpadminbar .ab-icon::before,
body.admin-bar #wpadminbar .ab-item::before {
	font-family: dashicons !important;
	color: #a7aaad !important;
	opacity: 1 !important;
}

body.admin-bar #wpadminbar .ab-top-menu > li:hover > .ab-item,
body.admin-bar #wpadminbar .ab-top-menu > li.hover > .ab-item,
body.admin-bar #wpadminbar .ab-top-menu > li > .ab-item:focus {
	background: #2c3338 !important;
	color: #ffffff !important;
}

body.admin-bar #wpadminbar .ab-sub-wrapper {
	background: #2c3338 !important;
}

body.admin-bar #wpadminbar .ab-submenu .ab-item,
body.admin-bar #wpadminbar .ab-submenu a {
	color: #c3c4c7 !important;
}

body.admin-bar #wpadminbar .ab-submenu .ab-item:hover,
body.admin-bar #wpadminbar .ab-submenu a:hover {
	color: #72aee6 !important;
}
/* Arabic / RTL support for multisite Arabic version */
html[dir="rtl"], body.rtl {
  direction: rtl;
  text-align: right;
}
body,
button,
input,
select,
textarea {
  font-family: "Tajawal", "Cairo", "Noto Kufi Arabic", Arial, sans-serif;
}
html[dir="rtl"] .brand-row,
html[dir="rtl"] .logo-menu-row,
html[dir="rtl"] .header-account-area,
html[dir="rtl"] .simple-exam-meta p,
html[dir="rtl"] .footer-main,
body.rtl .brand-row,
body.rtl .logo-menu-row,
body.rtl .header-account-area,
body.rtl .simple-exam-meta p,
body.rtl .footer-main {
  direction: rtl;
}
html[dir="rtl"] ul,
html[dir="rtl"] ol,
body.rtl ul,
body.rtl ol {
  padding-left: 0;
  padding-right: 1.4rem;
}
html[dir="rtl"] .p2p-search-form input[type="search"],
body.rtl .p2p-search-form input[type="search"] {
  text-align: right;
}
html[dir="rtl"] .p2p-search-results,
body.rtl .p2p-search-results {
  left: auto;
  right: 0;
  text-align: right;
}
html[dir="rtl"] .footer-date,
body.rtl .footer-date {
  margin-left: 12px;
  margin-right: 0;
}
html[dir="rtl"] .simple-feature-grid div,
html[dir="rtl"] .simple-related-item,
body.rtl .simple-feature-grid div,
body.rtl .simple-related-item {
  text-align: right;
}
