/* =============================================================================
   Administrative Professional Today — theme.css
   Layout/style ported from the legacy Thesis 1.8.6 custom.css + layout.css.
   Built on Bootstrap 5 (loaded separately); this file owns the brand look.
   ========================================================================== */

/* ---------- baseline & page wrapper -------------------------------------- */

html, body {
	background: #e0e9ee;
	font-family: 'Arimo', system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
	color: #111;
	font-size: 16px;
	line-height: 1.55;
}

body.custom { background: #e0e9ee; }

.page-wrapper {
	max-width: 1060px;
	margin: 0 auto;
	background: #ffffff;
	box-shadow: 0 0 8px rgba(0, 0, 0, 0.05);
	/* Floats inside are cleared explicitly on #content_box::after and
	 * #content.homepage::after, so we don't need overflow:hidden here —
	 * which would clip the WCML currency dropdown when it extends below
	 * the wrapper. */
}
/* Belt-and-braces clearfix so the footer still sits below all floated
 * content without an overflow trap. */
.page-wrapper::after { content: ""; display: block; clear: both; }

.site-main { background: #ffffff; display: block; }
.site-content { background: #ffffff; }

a { color: #2361A1; text-decoration: none; text-underline-offset: 2px; }
a:hover { color: #1a4979; text-decoration: underline; }
.format_text a { text-decoration: underline; }
.format_text a:hover { text-decoration: none; }

/* ---------- header area --------------------------------------------------- */

#header_area {
	background-color: #ffffff;
	border-bottom: 4px double #cdd6dc;
}

.site-header {
	padding: 18px 0 14px;
}

.site-header .logo-link {
	display: block;
	width: 100%;
	max-width: 460px;
	height: 100px;
	background: url('/wp-content/uploads/2025/07/Adminpro-today-logo-3.png') left center / contain no-repeat;
}

#header_nav {
	font-size: 14px;
	text-align: right;
}
#header_nav ul,
#header_nav .utility-menu {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	justify-content: flex-end;
	flex-wrap: wrap;
	gap: 0;
}
#header_nav ul li,
#header_nav .utility-menu li {
	padding: 0 10px;
	border-left: 1px solid #cfd9df;
}
#header_nav ul li:first-child,
#header_nav .utility-menu li:first-child { border-left: 0; }
#header_nav a { color: #000; text-decoration: underline; }
#header_nav a:hover { color: #2361A1; text-decoration: none; }

/* ---------- primary nav: gray tabs --------------------------------------- */

.primary-tabs {
	background: #ffffff;
	border-bottom: 1px solid #aaa;
}

.primary-tabs-wrapper { display: block; }

.primary-tabs-list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
}

.primary-tabs-list > li,
.primary-tabs-list > li.menu-item {
	position: relative;
	background: linear-gradient(to bottom, #fafafa 0%, #ececec 50%, #dcdcdc 100%);
	border: 1px solid #aaa;
	border-bottom: 0;
	margin-right: -1px;
}

.primary-tabs-list > li > a {
	display: block;
	padding: 13px 26px;
	color: #111;
	text-transform: uppercase;
	letter-spacing: 1px;
	font-size: 14px;
	text-decoration: none;
}

.primary-tabs-list > li:hover,
.primary-tabs-list > li:focus-within {
	background: #F3AA1B;
}
.primary-tabs-list > li:hover > a,
.primary-tabs-list > li:focus-within > a {
	color: #111;
	background: transparent;
}

.primary-tabs-list > li.current-menu-item,
.primary-tabs-list > li.current_page_item,
.primary-tabs-list > li.current-menu-ancestor {
	background: #ffffff;
}

/* dropdowns */
.primary-tabs-list .sub-menu {
	list-style: none;
	margin: 0;
	padding: 0;
	position: absolute;
	top: 100%;
	left: -1px;
	min-width: 220px;
	background: #fff;
	border: 1px solid #aaa;
	z-index: 200;
	display: none;
}
.primary-tabs-list > li:hover > .sub-menu,
.primary-tabs-list > li:focus-within > .sub-menu { display: block; }
.primary-tabs-list .sub-menu li { border-top: 1px solid #eee; background: #fff; }
.primary-tabs-list .sub-menu li:first-child { border-top: 0; }
.primary-tabs-list .sub-menu a {
	display: block;
	padding: 8px 14px;
	color: #111;
	text-transform: none;
	letter-spacing: 0;
	font-size: 14px;
	text-decoration: none;
}
.primary-tabs-list .sub-menu a:hover { background: #F3AA1B; }

.primary-tabs-toggle {
	display: none;
	background: transparent;
	border: 1px solid #aaa;
	padding: 6px 10px;
	margin: 8px 0;
}
.primary-tabs-toggle span {
	display: block;
	width: 22px;
	height: 2px;
	margin: 4px 0;
	background: #444;
}

@media (max-width: 991.98px) {
	.primary-tabs-toggle { display: inline-block; }
	.primary-tabs-wrapper { display: none; }
	.primary-tabs-wrapper.is-open { display: block; }
	.primary-tabs-list { flex-direction: column; }
	.primary-tabs-list > li { margin-right: 0; }
	.primary-tabs-list .sub-menu { position: static; border: 0; padding-left: 1em; display: block; }
}

/* ---------- 3-column body layout (no Bootstrap grid here) ---------------- */

#content_box {
	background: transparent;
}

/* clearfix on float containers so following siblings (and the footer) sit below */
#content_box::after,
#content.homepage::after {
	content: "";
	display: block;
	clear: both;
}

/* default: main content left, sidebar right (inside #content_box) */
#content {
	float: left;
	width: calc(100% - 260px);
	padding-right: 24px;
	box-sizing: border-box;
}
#sidebars {
	float: right;
	width: 240px;
	box-sizing: border-box;
}

/* homepage: #content itself splits into col_left + col_middle */
#content.homepage .col_left {
	float: left;
	width: 56%;
	padding-right: 18px;
	box-sizing: border-box;
}
#content.homepage .col_middle {
	float: right;
	width: 44%;
	box-sizing: border-box;
}

@media (max-width: 991.98px) {
	#content,
	.homepage #content { float: none; width: 100%; padding-right: 0; }
	#sidebars { float: none; width: 100%; clear: both; padding-top: 24px; }
	#content.homepage .col_left,
	#content.homepage .col_middle { float: none; width: 100%; padding-right: 0; }
}

/* ---------- content typography ------------------------------------------- */

.post_box { padding: 18px 0 0; }
.headline_area { margin-bottom: 14px; }
.headline_area h1,
.headline_area h2,
#archive_intro h1 {
	font-size: 26px;
	line-height: 1.25;
	color: #111;
	margin: 0 0 6px;
}
.headline_area .entry-title a,
h2.entry-title a { color: #2361A1; }

.format_text { font-size: 16px; line-height: 1.6; }
.format_text p { margin-bottom: 16px; }

.apt-byline { font-size: 13px; color: #888; margin: 0 0 14px; }
.apt-byline .cat_list {
	display: inline-block;
	border-left: 1px dashed #D2D2D2;
	padding: 0 10px !important;
	margin-left: 6px;
}

/* ---------- homepage cards ------------------------------------------------ */

#current_issue_wrapper,
#Featured_Article {
	border: 1px solid #cccccc;
	padding: 10px 12px;
	border-radius: 5px;
	margin-bottom: 18px;
	background: #fff;
}

#current_issue_wrapper #current_issue { margin: 0; font-weight: normal; }

/* Top heading in Featured_Article: no top margin so it sits flush with padding-top */
#Featured_Article > :first-child { margin-top: 0; }
#Featured_Article > :last-child { margin-bottom: 0; }
#Featured_Article h2.col_category { margin-top: 0; margin-bottom: 4px; }
#Featured_Article h3 {
	font-size: 18px;
	line-height: 1.3;
	margin: 0 0 6px;
}
#Featured_Article h3 a { color: #2361A1; }
#Featured_Article p { font-size: 15px; line-height: 1.5; margin: 0; }

.recent-item { margin-bottom: 14px; }

.daily-tips { margin: 16px 0; font-size: 15px; line-height: 1.55; }
.daily-tips p { margin: 0; }
.daily-tips-body p { margin: 0 0 8px; }
.daily-tips-body p:last-child { margin-bottom: 0; }
.calender_icon {
	float: left;
	width: 44px;
	margin: 2px 8px 4px 0;
	border: 1px solid #999;
	background: #fff;
	text-align: center;
	font-family: Arial, sans-serif;
	overflow: hidden;
	border-radius: 3px;
}
.calender_icon_month {
	display: block;
	background: #c81016;
	color: #fff;
	font-size: 10px;
	font-weight: bold;
	letter-spacing: 1px;
	padding: 2px 0;
}
.calender_icon_day {
	display: block;
	color: #111;
	font-size: 20px;
	font-weight: bold;
	line-height: 1.1;
	padding: 2px 0 4px;
}
.strategy_headline {
	color: #2361A1;
	text-align: center;
	margin: 14px 0 6px;
	font-size: 20px;
}

#expert_advice_container {
	background-color: #BDCEDB;
	border-radius: 5px;
	padding: 12px 14px 14px;
	margin: 18px 0;
}
#expert_advice_container h2.headline {
	font-weight: bold;
	text-align: center;
	margin: 0 0 8px;
	font-size: 18px;
}
.expert_row { position: relative; min-height: 80px; margin: 8px 0; padding-left: 84px; }
.expert_row::after { content: ""; display: block; clear: both; }
.expert_row .expert_author_link {
	position: absolute;
	left: 0;
	top: 2px;
	width: 72px;
	display: block;
}
.expert_row .auth_img {
	width: 72px;
	height: auto;
	display: block;
	border: 1px solid #fff;
	background: #fff;
	border-radius: 2px;
}
.expert_row .resource-header { margin: 0; }
.expert_row .expert_cat {
	font-size: 13px;
	font-weight: bold;
	color: #111;
	text-decoration: none;
	text-transform: none;
}
.expert_row .resource-title { margin: 2px 0 4px; font-size: 15px; font-weight: bold; line-height: 1.3; }
.expert_title { font-size: 15px; font-weight: bold; color: #2361A1; text-decoration: underline; }
.expert_title:hover { text-decoration: none; }
.expert_row .byline { font-size: 14px; color: #111; }
.expert_row .byline a { color: #2361A1; }
.expert_row p { font-size: 14px; line-height: 1.45; margin: 4px 0 0; }
.expert_row:not(:has(> .expert_author_link)) { padding-left: 0; min-height: 0; }

/* category labels above each homepage article (Recognition / Self-Assessment / etc.).
   Margin lives on the wrapping h2 only; the inner <a>/<span> is inline with zero margin
   so it can't compound and shift right of the title below it. */
.homepage h2.col_category {
	color: #f3aa1b;
	font-weight: bold;
	font-size: 13px;
	line-height: 1.1;
	margin: 14px 0 4px;
	padding: 0;
	letter-spacing: 0.04em;
	text-transform: uppercase;
}
.homepage h2.col_category a.homepage_header,
.homepage h2.col_category span.homepage_header,
.homepage_header {
	color: #f3aa1b;
	font-weight: bold;
	font-size: inherit;
	line-height: inherit;
	letter-spacing: inherit;
	text-transform: inherit;
	text-decoration: none !important;
	margin: 0;
	padding: 0;
	display: inline;
}

/* article title in left column (h3.col_title) */
.homepage h3.col_title {
	font-size: 17px;
	line-height: 1.3;
	margin: 0 0 4px;
	font-weight: bold;
}
.homepage h3.col_title a.headline {
	color: #2361A1;
	text-decoration: none;
}
.homepage h3.col_title a.headline:hover { text-decoration: underline; }

.homepage h4.col_date {
	margin: 0 0 6px;
	color: #2361a1;
	font-size: 13px;
	font-weight: normal;
	line-height: 1.2;
}

.homepage .homepage_p {
	margin: 4px 0 12px;
	font-size: 15px;
	line-height: 1.5;
	color: #111;
}

/* "Article Archives" + "Most Popular Articles" — block-style section headings */
.homepage h2.col_category.homepage_header {
	display: block;
	font-size: 16px;
	margin: 22px 0 10px;
}

.hp_section.right.wrapper { margin: 4px 0 10px; }
.hp_section.right.wrapper h3.col_title { margin-bottom: 1px; }

#Poll_header {
	background-color: #292929;
	border-radius: 5px;
	color: #fff;
	font-family: arial, sans-serif;
	font-size: 14px;
	font-weight: 700;
	line-height: 1.2;
	padding: 4px 6px 4px 17px;
	margin: 18px 0 10px;
}

/* Most Popular Articles list — WP Popular Posts wraps items in <ul>; zero the default padding */
.homepage .col_middle .wpp-list,
.homepage .col_middle ul.wpp-list {
	list-style: none;
	margin: 0;
	padding: 0;
}
.homepage .col_middle .wpp-list > li {
	margin: 0 0 12px;
	padding: 0;
}
.homepage h3.col_title.most-popular {
	font-size: 15px;
	line-height: 1.4;
	margin: 0 0 14px;
	font-weight: bold;
}
.homepage h3.col_title.most-popular a.headline { color: #2361A1; text-decoration: none; }
.homepage h3.col_title.most-popular a.headline:hover { text-decoration: underline; }

/* ---------- sidebar widgets (matches the imported widget IDs) ----------- */

.sidebar ul.sidebar_list {
	list-style: none;
	margin: 0;
	padding: 0;
}
.sidebar li.widget {
	margin-bottom: 22px;
	font-size: 14px;
	line-height: 1.45;
}
.sidebar li.widget h3 {
	background: #6d8497 no-repeat scroll 5px 0;
	color: #fff;
	font-weight: bold;
	font-size: 15px;
	padding: 7px 12px;
	margin: 0 0 4px;
	border-radius: 4px;
	text-transform: uppercase;
	letter-spacing: 1px;
}

/* Tools menu (nav_menu-4) */
.sidebar #nav_menu-4 .menu-tools-container ul,
.sidebar #nav_menu-4 ul.menu {
	list-style: none;
	margin: 0;
	padding: 0;
}
.sidebar #nav_menu-4 .menu-tools-container li,
.sidebar #nav_menu-4 ul.menu > li {
	background: #E7EEF2 no-repeat scroll 5px 0;
	border-radius: 4px;
	color: #000;
	border: 0;
	padding: 0;
	font-weight: bold;
	font-size: 13px;
	margin: 0 0 3px;
}
.sidebar #nav_menu-4 .menu-tools-container li a,
.sidebar #nav_menu-4 ul.menu > li > a {
	display: block;
	padding: 7px 15px;
	color: #000;
	text-decoration: none;
}
.sidebar #nav_menu-4 .menu-tools-container li a:hover,
.sidebar #nav_menu-4 ul.menu > li > a:hover { color: #c00; }

/* Articles menu (nav_menu-3) — top-level dark, sub-menu lighter */
.sidebar #nav_menu-3 ul.menu,
.sidebar #nav_menu-3 .menu-articles-container ul {
	list-style: none;
	margin: 0;
	padding: 0;
}
.sidebar #nav_menu-3 ul.menu > li,
.sidebar #nav_menu-3 .menu-articles-container > ul > li {
	background: #E7EEF2;
	border-radius: 4px;
	border: 0;
	margin: 0 0 4px;
}
.sidebar #nav_menu-3 ul.menu > li > a,
.sidebar #nav_menu-3 .menu-articles-container > ul > li > a {
	display: block;
	padding: 7px 15px;
	color: #000;
	font-weight: bold;
	font-size: 13px;
	text-decoration: none;
}
.sidebar #nav_menu-3 ul.menu > li > a:hover { color: #c00; }
.sidebar #nav_menu-3 .sub-menu {
	list-style: none;
	margin: 4px 0 6px;
	padding: 0;
}
.sidebar #nav_menu-3 .sub-menu li {
	background: #E7EEF2;
	border-radius: 4px;
	border: 0;
	margin: 0 0 2px;
	font-weight: normal;
	font-size: 12px;
}
.sidebar #nav_menu-3 .sub-menu a {
	display: block;
	padding: 5px 15px 5px 30px !important;
	color: #000;
	font-weight: normal !important;
	text-decoration: none;
}
.sidebar #nav_menu-3 .sub-menu a:hover { color: #c00 !important; }

/* Newsletter block (block-10) — image + list */
.sidebar #block-10 ul {
	list-style: none;
	margin: 0;
	padding: 0;
}
.sidebar #block-10 li {
	border-bottom: 1px solid #ddd;
	padding: 4px 0;
}
.sidebar #block-10 li:last-child { border-bottom: 0; }
.sidebar #block-10 li a.remove_border { border-bottom: 0; }
.sidebar #block-10 #issue_img {
	border: 1px solid #ccc;
	float: left;
	margin: 0 6px 6px 0;
	max-width: 100%;
	height: auto;
}

/* ---------- search box (sidebar) ----------------------------------------- */

.sidebar .search_form {
	margin-bottom: 18px;
	display: flex;
	gap: 6px;
}
.sidebar .search_form input[type="search"],
.sidebar .search_form #s {
	flex: 1;
	min-width: 0;
	padding: 7px 10px;
	border: 1px solid #f19b16;
	border-radius: 2px;
	font-size: 14px;
}
.sidebar .search_form input[type="submit"] {
	cursor: pointer;
	padding: 7px 14px;
	color: #fff;
	border: 0;
	border-radius: 2px;
	background: #e93720;
	background: linear-gradient(#e93720, #c81016);
	font-weight: bold;
	font-size: 14px;
}
.sidebar .search_form input[type="submit"]:hover {
	background: linear-gradient(#c81016, #a40c12);
}

/* ---------- pagination (wp-pagenavi) -------------------------------------- */

.wp-pagenavi { margin: 1em 0; display: inline-block; }
.wp-pagenavi .page { padding: 3px 10px !important; margin: 0 0.5em !important; }
.wp-pagenavi a,
.wp-pagenavi span {
	padding: 3px 10px;
	border: 1px solid #ccc;
	border-radius: 3px;
	margin-right: 4px;
}
.wp-pagenavi span.current {
	background: #2361A1;
	color: #fff;
	border-color: #2361A1;
}
.bottom .wp-pagenavi { margin-top: 3em; }

/* ---------- 404 page ----------------------------------------------------- */

#not-found-list a { display: inline-block; margin-bottom: 4px; }

/* ---------- forms / login ------------------------------------------------- */

.login-form,
.apt-login-form {
	background: transparent;
}

/* ---------- /login page (rich layout: form + photo + subscribe pitch) ---- */

.apt-login-page { color: #111; }

.apt-login-card,
.apt-subscribe-pitch {
	border: 1px solid #cccccc;
	border-radius: 5px;
	background: #fff;
	padding: 22px 26px;
	margin: 0 0 24px;
}

.apt-login-card {
	display: flex;
	gap: 28px;
	align-items: flex-start;
}
.apt-login-card__form { flex: 1 1 auto; min-width: 0; }
.apt-login-card__art {
	flex: 0 0 240px;
	min-height: 200px;
	border-radius: 4px;
	background: #ecf0f3 url('/wp-content/uploads/login-art.jpg') center / cover no-repeat;
	box-shadow: 4px 4px 11px 0 rgba(0, 0, 0, 0.18);
}

.apt-login-heading {
	font-size: 20px;
	font-weight: bold;
	margin: 0 0 16px;
	color: #111;
}

.apt-login-form { max-width: none; padding: 0; border: 0; }
.apt-login-field { margin: 0 0 14px; }
.apt-login-field label {
	display: block;
	font-weight: bold;
	font-size: 14px;
	margin: 0 0 4px;
	color: #111;
}
.apt-login-field input.input {
	width: 100%;
	max-width: 360px;
	padding: 8px 10px;
	font-size: 15px;
	border: 1px solid #b0b0b0;
	border-radius: 3px;
	background: #fff;
}
.apt-login-field input.input:focus {
	outline: none;
	border-color: #2361A1;
	box-shadow: 0 0 0 3px rgba(35, 97, 161, 0.18);
}

.apt-login-submit { margin: 18px 0 10px; text-align: right; max-width: 360px; }
.apt-login-button {
	font-family: 'Arimo', sans-serif;
	font-size: 16px;
	font-weight: bold;
	color: #fff;
	border: 1px solid #0076a3;
	background: linear-gradient(#00adee, #0078a5);
	border-radius: 3px;
	padding: 9px 28px;
	cursor: pointer;
}
.apt-login-button:hover { background: linear-gradient(#0095cc, #00678e); }

.apt-login-help { margin: 0; font-size: 14px; }
.apt-login-help a { text-decoration: underline; }
.apt-login-help a:hover { text-decoration: none; }

.apt-subscribe-pitch p { margin: 0 0 14px; line-height: 1.55; }
.apt-subscribe-pitch__title { font-size: 18px; font-weight: normal; margin: 0 0 14px; }
.apt-subscribe-pitch__title strong { font-weight: bold; }
.apt-subscribe-pitch__includes {
	margin: 0 0 16px 22px;
	padding: 0;
	list-style: disc;
}
.apt-subscribe-pitch__includes li { margin-bottom: 6px; line-height: 1.5; }
.apt-subscribe-pitch a { color: #2361A1; text-decoration: underline; }
.apt-subscribe-pitch a:hover { text-decoration: none; }

.apt-subscribe-button {
	display: inline-block;
	background: #f3aa1b;
	background: linear-gradient(#f3aa1b, #d6900b);
	color: #fff !important;
	font-size: 16px;
	font-weight: bold;
	padding: 11px 22px;
	border-radius: 4px;
	text-decoration: none !important;
	box-shadow: 0 2px 0 rgba(0, 0, 0, 0.08);
}
.apt-subscribe-button:hover { background: linear-gradient(#d6900b, #b07706); }

@media (max-width: 700px) {
	.apt-login-card { flex-direction: column; }
	.apt-login-card__art { width: 100%; flex-basis: 200px; }
	.apt-login-submit { text-align: left; }
}
.input-submit,
.wpcf7-submit {
	font-family: 'Arimo', sans-serif;
	border-radius: 3px;
	color: #fff;
	border: 1px solid #0076a3;
	background: linear-gradient(#00adee, #0078a5);
	cursor: pointer;
	padding: 10px 18px;
}
.input-submit:hover,
.wpcf7-submit:hover { background: linear-gradient(#0095cc, #00678e); }

/* ---------- footer -------------------------------------------------------- */

.site-footer {
	max-width: 1060px;
	margin: 0 auto;
	background-color: #6d8497;
	color: #ffffff;
	padding: 30px 20px 20px;
	font-family: 'Segoe UI', sans-serif;
	border-style: outset;
}
.site-footer a {
	color: #ffffff;
	border-bottom: 1px solid #fff;
}
.site-footer a:hover { color: #d0e3f0; }

.footer-content {
	display: flex;
	flex-direction: column;
	align-items: center;
	margin-bottom: 15px;
}
.footer-nav .footer-menu {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	align-items: center;
	font-size: 15px;
}
.footer-nav .footer-menu li:not(:last-child)::after {
	content: '|';
	margin-left: 10px;
	color: #fff;
}
.footer-nav a {
	color: #ffffff;
	text-decoration: none;
	transition: color 0.3s ease;
	border-bottom: 0;
}
.footer-nav a:hover { color: #d0e3f0; }

.footer-bottom {
	text-align: center;
	font-size: 13px;
	border-top: 1px solid rgba(255, 255, 255, 0.2);
	padding-top: 10px;
	color: #e0e0e0;
}

.footer-social { text-align: center; margin-top: 20px; }
.footer-social a {
	display: inline-block;
	margin: 0 10px;
	text-decoration: none;
	border-bottom: 0;
}
.footer-social img { display: inline-block; vertical-align: middle; border: 0; }
.social-icon { width: 24px; height: 24px; vertical-align: middle; }

/* ---------- cart icon in nav --------------------------------------------- */

.cart-icon-nav { position: relative; }
.cart-icon-nav .nav-link { padding: 12px 18px; display: block; }
.cart-icon-nav .cart-count-badge {
	position: absolute;
	top: 4px;
	right: -2px;
	background-color: #dc3545;
	color: #fff;
	border-radius: 50%;
	padding: 2px 6px;
	font-size: 0.7em;
	line-height: 1;
}

/* ---------- WooCommerce --------------------------------------------------- */

/* Give WooCommerce screens room — hide the right widget sidebar on
 * single products, cart, checkout, My Account, and the shop archive */
body.single-product #sidebars,
body.woocommerce-account #sidebars,
body.woocommerce-cart #sidebars,
body.woocommerce-checkout #sidebars,
body.post-type-archive-product #sidebars,
body.tax-product_cat #sidebars,
body.tax-product_tag #sidebars { display: none; }
body.single-product #content,
body.woocommerce-account #content,
body.woocommerce-cart #content,
body.woocommerce-checkout #content,
body.post-type-archive-product #content,
body.tax-product_cat #content,
body.tax-product_tag #content {
	float: none;
	width: 100%;
	padding-right: 0;
}

/* My Account two-column wrapper (nav + content) */
.woocommerce-account .woocommerce {
	display: flex;
	gap: 28px;
	align-items: flex-start;
}
.woocommerce-account .woocommerce-MyAccount-navigation { flex: 0 0 200px; }
.woocommerce-account .woocommerce-MyAccount-content { flex: 1 1 auto; min-width: 0; }

/* My Account nav — lighter vertical list with a left-rule active state */
.woocommerce-MyAccount-navigation ul {
	list-style: none;
	margin: 0 0 1.5em;
	padding: 0;
	display: block;
	border-top: 1px solid #e2e2e2;
}
.woocommerce-MyAccount-navigation ul li {
	margin: 0;
	border-bottom: 1px solid #e2e2e2;
}
.woocommerce-MyAccount-navigation ul li a {
	display: block;
	padding: 12px 14px;
	background: transparent;
	color: #2361A1;
	text-decoration: none;
	font-weight: 600;
	font-size: 15px;
	border-left: 3px solid transparent;
	transition: background-color 0.15s, border-color 0.15s, color 0.15s;
}
.woocommerce-MyAccount-navigation ul li a:hover {
	background: #f4f7fa;
	color: #1a4979;
	text-decoration: none;
}
.woocommerce-MyAccount-navigation ul li.is-active a {
	background: #f4f7fa;
	color: #111;
	border-left-color: #2361A1;
}

/* My Account page title */
.woocommerce-account .woocommerce-MyAccount-content > h1,
.woocommerce-account .woocommerce-MyAccount-content > h2:first-child {
	font-size: 26px;
	font-weight: bold;
	color: #111;
	margin: 0 0 18px;
	padding-bottom: 10px;
	border-bottom: 1px solid #e2e2e2;
}

/* Profile image upload (My Account → Edit Account) */
.apt-profile-image-field {
	margin: 0 0 20px;
	padding: 16px 18px;
	border: 1px solid #e2e2e2;
	border-radius: 4px;
	background: #fafcfd;
}
.apt-profile-image-field legend {
	padding: 0 6px;
	font-size: 14px;
	font-weight: bold;
	color: #111;
}
.apt-profile-image-preview {
	margin: 0 0 12px;
}
.apt-profile-image-preview img {
	width: 96px;
	height: 96px;
	object-fit: cover;
	border-radius: 50%;
	border: 1px solid #d4dde4;
}
.apt-profile-image-remove {
	margin: 0 0 12px;
	font-size: 14px;
	color: #6e2018;
}
.apt-profile-image-remove input[type="checkbox"] { margin-right: 6px; }
.apt-profile-image-field input[type="file"] { padding: 8px 0; }
.apt-field-hint {
	display: block;
	margin-top: 4px;
	font-size: 12px;
	color: #888;
}

/* Dashboard expiry callout */
.apt-account-expiry {
	margin: 14px 0 18px;
	padding: 12px 16px;
	background: #f4f7fa;
	border-left: 4px solid #2361A1;
	border-radius: 4px;
	font-size: 15px;
	line-height: 1.5;
}
.apt-account-expiry.is-expired {
	background: #fde7ea;
	border-left-color: #c0392b;
	color: #6e2018;
}
.apt-account-expiry__renew {
	display: inline-block;
	margin-left: 8px;
	padding: 4px 12px;
	background: #2361A1;
	color: #fff !important;
	border-radius: 4px;
	font-weight: 600;
	font-size: 14px;
	text-decoration: none !important;
}
.apt-account-expiry__renew:hover { background: #1a4979; }

/* Orders / Subscriptions tables */
.woocommerce-orders-table,
.woocommerce-MyAccount-content table.shop_table {
	width: 100%;
	border-collapse: collapse;
	margin: 0 0 1.5em;
	font-size: 15px;
}
.woocommerce-orders-table thead th,
.woocommerce-MyAccount-content table.shop_table thead th {
	background: #f4f7fa;
	color: #111;
	font-weight: bold;
	text-align: left;
	padding: 12px 14px;
	border-bottom: 2px solid #d4dde4;
	font-size: 14px;
}
.woocommerce-orders-table tbody td,
.woocommerce-MyAccount-content table.shop_table tbody td {
	padding: 14px;
	border-bottom: 1px solid #ecf0f3;
	vertical-align: middle;
}
.woocommerce-orders-table tbody tr:hover td,
.woocommerce-MyAccount-content table.shop_table tbody tr:hover td {
	background: #fafcfd;
}
.woocommerce-orders-table a,
.woocommerce-MyAccount-content table.shop_table a { color: #2361A1; }

/* Status badge (rendered via the apt_wc_status_badge filter) */
.apt-status-badge {
	display: inline-block;
	padding: 4px 10px;
	border-radius: 999px;
	font-size: 12px;
	font-weight: bold;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	line-height: 1.2;
	white-space: nowrap;
	background: #eef2f5;
	color: #4a5b6b;
}
.apt-status-badge.is-active   { background: #e2f5e8; color: #1f6f3a; }
.apt-status-badge.is-pending  { background: #fff4d8; color: #8a5a00; }
.apt-status-badge.is-on-hold  { background: #fff4d8; color: #8a5a00; }
.apt-status-badge.is-cancelled,
.apt-status-badge.is-pending-cancel,
.apt-status-badge.is-expired,
.apt-status-badge.is-failed { background: #fde7ea; color: #9a1f2a; }
.apt-status-badge.is-completed,
.apt-status-badge.is-processing { background: #e2f5e8; color: #1f6f3a; }

/* View / action buttons inside tables */
.woocommerce-orders-table .woocommerce-button,
.woocommerce-orders-table .button,
.woocommerce-MyAccount-content table.shop_table .woocommerce-button,
.woocommerce-MyAccount-content table.shop_table .button {
	display: inline-block;
	padding: 7px 14px;
	background: #2361A1;
	color: #fff !important;
	text-decoration: none;
	border-radius: 4px;
	border: 0;
	font-weight: 600;
	font-size: 14px;
	line-height: 1.2;
	cursor: pointer;
	transition: background-color 0.15s;
}
.woocommerce-orders-table .woocommerce-button:hover,
.woocommerce-orders-table .button:hover,
.woocommerce-MyAccount-content table.shop_table .woocommerce-button:hover,
.woocommerce-MyAccount-content table.shop_table .button:hover {
	background: #1a4979;
	text-decoration: none;
}

/* Responsive: stack the nav above content on small screens */
@media (max-width: 767.98px) {
	.woocommerce-account .woocommerce { flex-direction: column; }
	.woocommerce-account .woocommerce-MyAccount-navigation { flex: 0 0 auto; width: 100%; }
}

/* ---------- single product page ----------------------------------------- */

/* breadcrumb */
.woocommerce-breadcrumb {
	font-size: 13px;
	color: #888;
	margin: 0 0 18px;
	padding-bottom: 12px;
	border-bottom: 1px solid #ecf0f3;
}
.woocommerce-breadcrumb a { color: #2361A1; }

/* two-column layout: image | summary */
.woocommerce div.product { display: block; }
.woocommerce div.product .woocommerce-product-gallery {
	float: left;
	width: 46%;
	margin-bottom: 24px;
}
.woocommerce div.product .summary {
	float: right;
	width: 50%;
	margin-bottom: 24px;
}
.woocommerce div.product .woocommerce-tabs,
.woocommerce div.product .related,
.woocommerce div.product .upsells {
	clear: both;
}
@media (max-width: 767.98px) {
	.woocommerce div.product .woocommerce-product-gallery,
	.woocommerce div.product .summary { float: none; width: 100%; }
}

/* product title */
.woocommerce div.product .product_title {
	font-size: 28px;
	line-height: 1.2;
	font-weight: bold;
	color: #111;
	margin: 0 0 14px;
}

/* price — brand blue, no muddy olive */
.woocommerce:where(body:not(.woocommerce-uses-block-theme)) div.product p.price,
.woocommerce:where(body:not(.woocommerce-uses-block-theme)) div.product span.price {
	color: #2361A1 !important;
	font-size: 30px !important;
	font-weight: bold;
	line-height: 1.2;
	margin: 0 0 16px !important;
}
/* "From:" prefix — soften it */
.woocommerce div.product p.price .from {
	display: inline-block;
	margin-right: 6px;
	font-size: 14px;
	font-weight: normal;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	color: #888;
	vertical-align: middle;
}

/* short description */
.woocommerce div.product .woocommerce-product-details__short-description {
	font-size: 15px;
	line-height: 1.55;
	color: #333;
	margin: 0 0 18px;
}

/* variation form */
.woocommerce div.product form.cart {
	text-align: left;
	margin-top: 18px;
}
.woocommerce div.product form.cart .variations {
	width: 100%;
	margin-bottom: 14px;
	border: 0;
}
.woocommerce div.product form.cart .variations th.label {
	padding: 8px 12px 8px 0;
	font-weight: bold;
	font-size: 14px;
	width: auto;
	vertical-align: middle;
}
.woocommerce div.product form.cart .variations td.value { padding: 6px 0; }
.woocommerce div.product form.cart .variations select {
	font-size: 15px;
	padding: 10px 12px;
	min-width: 220px;
	border: 1px solid #c8d1d8;
	border-radius: 4px;
	background-color: #fff;
}
.woocommerce div.product form.cart .reset_variations { font-size: 13px; }

/* CTA button — strong, attention-grabbing */
.woocommerce div.product form.cart .button,
.woocommerce div.product .single_add_to_cart_button {
	float: none;
	display: inline-block;
	font-size: 17px;
	font-weight: bold;
	padding: 14px 32px;
	background: #f3aa1b;
	background: linear-gradient(#f3aa1b, #d6900b);
	color: #fff !important;
	border: 0;
	border-radius: 4px;
	cursor: pointer;
	text-transform: none;
	letter-spacing: 0.02em;
	box-shadow: 0 2px 0 rgba(0, 0, 0, 0.08);
	transition: background 0.15s, transform 0.05s;
}
.woocommerce div.product form.cart .button:hover,
.woocommerce div.product .single_add_to_cart_button:hover {
	background: linear-gradient(#d6900b, #b07706);
}
.woocommerce div.product form.cart .button:active,
.woocommerce div.product .single_add_to_cart_button:active {
	transform: translateY(1px);
}

/* currency switcher — show once, position cleanly. Hide all duplicates
 * after the first inside .summary (WCML places one before the price,
 * the apt MU plugin appends another after). */
.woocommerce div.product .summary .wcml-dropdown {
	margin: 0 0 10px;
	max-width: 200px;
}
.woocommerce div.product .summary .wcml-dropdown ~ .wcml-dropdown { display: none; }

/* WCML currency switcher dropdown — long currency lists need to scroll
 * inside the popup rather than overflow the page, and the popup needs
 * a high stacking order to clear the footer / sibling content. */
.wcml-dropdown,
.wcml_currency_switcher {
	position: relative;
	z-index: 50;
}
.wcml-cs-submenu {
	background: #fff;
	border: 1px solid #ccc;
	margin-top: 5px;
	padding: 5px 0;
	max-height: 320px;
	overflow-y: auto;
	box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
	z-index: 100;
}
.wcml-cs-item-toggle,
.wcml-cs-submenu a {
	padding: 8px 14px;
	font-size: 14px;
	display: block;
}
.wcml-cs-submenu a:hover { background: #eef2f5; color: #000; }

/* product meta (SKU / Category / Tags) — subscription product doesn't
 * need SKU display; categories are useful, keep them. */
.woocommerce div.product .product_meta {
	margin: 18px 0 0;
	padding: 12px 0 0;
	border-top: 1px solid #ecf0f3;
	font-size: 13px;
	color: #888;
}
.woocommerce div.product .product_meta > span { display: block; margin-bottom: 4px; }
.woocommerce div.product .product_meta a { color: #2361A1; }
.woocommerce div.product .product_meta .sku_wrapper { display: none; }

/* tabs */
.woocommerce div.product .woocommerce-tabs {
	margin-top: 36px;
	clear: both;
}
.woocommerce div.product .woocommerce-tabs ul.tabs {
	list-style: none;
	margin: 0 0 -1px;
	padding: 0;
	border-bottom: 1px solid #d4dde4;
}
.woocommerce div.product .woocommerce-tabs ul.tabs::before,
.woocommerce div.product .woocommerce-tabs ul.tabs::after { display: none; }
.woocommerce div.product .woocommerce-tabs ul.tabs li {
	display: inline-block;
	margin: 0;
	padding: 0;
	background: transparent;
	border: 0;
	border-radius: 0;
}
.woocommerce div.product .woocommerce-tabs ul.tabs li a {
	display: block;
	padding: 12px 20px;
	font-weight: bold;
	font-size: 15px;
	color: #666;
	text-decoration: none;
	border-bottom: 2px solid transparent;
}
.woocommerce div.product .woocommerce-tabs ul.tabs li:hover a { color: #2361A1; }
.woocommerce div.product .woocommerce-tabs ul.tabs li.active a {
	color: #111;
	border-bottom-color: #2361A1;
}
.woocommerce div.product .woocommerce-tabs .panel {
	margin: 0 !important;
	padding: 22px 0 !important;
}
.woocommerce div.product .woocommerce-tabs .panel h2 {
	font-size: 20px;
	margin: 0 0 14px;
}

/* description list spacing inside tabs */
.woocommerce-Tabs-panel ul,
.woocommerce-Tabs-panel ol { margin: 0 0 1.2em 1.4em; padding: 0; }
.woocommerce-Tabs-panel li { margin-bottom: 6px; line-height: 1.5; }
.cart #content,
.checkout #content,
.my-account #content { width: 100%; float: none; padding-right: 0; }

.wc-block-cart__submit-button,
.wc-block-components-checkout-place-order-button {
	display: inline-block;
	background-color: #0073aa;
	color: #fff;
	font-size: 18px;
	font-weight: bold;
	padding: 14px 28px;
	border: 0;
	border-radius: 6px;
	cursor: pointer;
	text-align: center;
}

/* ---------- misc --------------------------------------------------------- */

.icegram { display: none; }
body[class^='cat_'] .cat_list,
body[class*=' cat_'] .cat_list { display: none; }
