/* Pro Website Public Styles - 3D Animated Minimalist */

.pro-landing-wrapper {
	font-family: inherit;
	background-color: transparent;
	color: #333333;
	perspective: 2000px; /* Base perspective for 3D effects */
	overflow: hidden;
	max-width: 100%;
	margin: 0 auto;
	width: 100%;
}

/* --- Hero Section Boxed --- */
.pro-hero-section {
	margin-top: 0 !important;
	padding: 0;
	display: flex;
	justify-content: center;
	align-items: center;
	background-color: transparent;
	width: 100%;
	max-width: 100%;
	margin: 0 auto;
}

.pro-hero-container {
	max-width: 100%;
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 50px;
	background: var(--global-color-8, #ffffff);
	padding: 20px 35px;
	border-radius: 16px;
	border: 1px solid #eaeaea;
	opacity: 0;
	animation: slideUpFade 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
	transform-style: preserve-3d;
}

/* Container 3D hover effect */
.pro-hero-container:hover {
	transform: translateY(-5px) rotateX(2deg);
	box-shadow: 
		0 30px 60px rgba(0, 100, 0, 0.08),
		0 10px 20px rgba(0, 100, 0, 0.03);
}

.pro-hero-content-left {
	flex: 1;
	transform: translateZ(30px); /* 3D Depth */
	transition: transform 0.5s ease;
}

/* Staggered Animations */
.pro-hero-title {
	font-size: clamp(1.6rem, 4.5vw, 3rem);
	font-weight: 800;
	line-height: 1.1;
	color: var(--global-color-9, #006400); 
	margin-top: 0;
	margin-bottom: 20px;
	opacity: 0;
	animation: slideUpFade 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.2s forwards;
	position: relative;
	display: inline-block;
}

.pro-hero-subtitle {
	font-size: clamp(1rem, 2vw, 1.15rem);
	font-weight: 500;
	color: #4b5563;
	letter-spacing: 0.2px;
	line-height: 1.7;
	margin-bottom: 35px;
	opacity: 0;
	animation: slideUpFade 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.4s forwards;
}

.pro-hero-actions {
	margin-top: 20px;
	display: flex;
	flex-wrap: wrap;
	gap: 15px;
	align-items: center;
	opacity: 0;
	animation: slideUpFade 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.6s forwards;
}

.pro-social-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 48px;
	height: 48px;
	border-radius: 50%;
	background-color: var(--global-color-8, #ffffff);
	border: 1px solid #eaeaea;
	text-decoration: none;
	position: relative;
	transition: all 0.3s ease;
	box-shadow: 0 4px 10px rgba(0,0,0,0.03);
}

.pro-social-wa { 
	color: #25D366; 
	border-color: #25D366;
}
.pro-social-wa:hover {
	transform: translateY(-3px);
	background-color: #25D366;
	color: #ffffff;
	box-shadow: 0 8px 20px rgba(37, 211, 102, 0.25);
}

.pro-social-tg { 
	color: #229ED9; 
	border-color: #229ED9;
}
.pro-social-tg:hover {
	transform: translateY(-3px);
	background-color: #229ED9;
	color: #ffffff;
	box-shadow: 0 8px 20px rgba(34, 158, 217, 0.25);
}

.pro-social-yt { 
	color: #FF0000; 
	border-color: #FF0000;
}
.pro-social-yt:hover {
	transform: translateY(-3px);
	background-color: #FF0000;
	color: #ffffff;
	box-shadow: 0 8px 20px rgba(255, 0, 0, 0.25);
}

.pro-social-ig { 
	color: #E1306C; 
	border-color: #E1306C;
}
.pro-social-ig:hover {
	transform: translateY(-3px);
	background-color: #E1306C;
	color: #ffffff;
	box-shadow: 0 8px 20px rgba(225, 48, 108, 0.25);
}

.pro-social-btn svg {
	width: 22px;
	height: 22px;
}

/* Tooltip Popup */
.pro-social-btn[data-tooltip]::after {
	content: attr(data-tooltip);
	position: absolute;
	bottom: 120%;
	left: 50%;
	transform: translateX(-50%) translateY(10px);
	background: #111827;
	color: #fff;
	padding: 6px 12px;
	font-size: 0.75rem;
	font-weight: 500;
	border-radius: 6px;
	white-space: nowrap;
	opacity: 0;
	visibility: hidden;
	transition: all 0.25s ease;
	pointer-events: none;
	z-index: 10;
}

.pro-social-btn[data-tooltip]::before {
	content: '';
	position: absolute;
	bottom: 120%;
	left: 50%;
	transform: translateX(-50%) translateY(10px);
	border: 5px solid transparent;
	border-top-color: #111827;
	opacity: 0;
	visibility: hidden;
	transition: all 0.25s ease;
	margin-bottom: -10px;
	pointer-events: none;
	z-index: 10;
}

.pro-social-btn:hover::after,
.pro-social-btn:hover::before {
	opacity: 1;
	visibility: visible;
	transform: translateX(-50%) translateY(0);
}

/* 3D Isometric Button */
.pro-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 14px 32px;
	border-radius: 8px; 
	font-weight: 700;
	font-size: 1.1rem;
	text-decoration: none !important;
	transition: all 0.2s cubic-bezier(0.34, 1.56, 0.64, 1);
	cursor: pointer;
	position: relative;
}

.pro-btn-primary {
	background-color: var(--global-color-8, #ffffff);
	color: var(--global-color-9, #006400) !important;
	border: 2px solid var(--global-color-9, #006400);
	/* 3D Isometric shadow */
	box-shadow: 4px 4px 0px var(--global-color-10, #90EE90);
	transform: translateY(-2px);
}

.pro-btn-primary:hover {
	/* Press Effect */
	transform: translate(2px, 2px);
	box-shadow: 0px 0px 0px var(--global-color-10, #90EE90);
	background-color: var(--global-color-9, #006400);
	color: var(--global-color-8, #ffffff) !important;
}

/* Image on the right */
.pro-hero-content-right {
	flex: 1;
	display: flex;
	justify-content: flex-end;
	opacity: 0;
	animation: slideUpFade 1s cubic-bezier(0.16, 1, 0.3, 1) 0.5s forwards;
}

.pro-hero-image {
	width: 100%;
	max-width: 500px;
	height: auto;
	border-radius: 20px;
	animation: float 6s ease-in-out infinite;
}

/* Keyframes */
@keyframes slideUpFade {
	0% { opacity: 0; transform: translateY(40px); }
	100% { opacity: 1; transform: translateY(0); }
}

/* --- Expertise Section --- */
.pro-expertise-section {
	width: 100%;
	padding: 0;
	margin: 0;
	background-color: transparent;
}

.pro-expertise-container {
	max-width: 100%;
	margin: 0 auto;
	width: 100%;
	opacity: 0;
	animation: slideUpFade 1s cubic-bezier(0.16, 1, 0.3, 1) 0.6s forwards;
}

.pro-section-title {
	text-align: center;
	font-size: clamp(1.5rem, 4vw, 2.5rem);
	font-weight: 800;
	color: var(--global-color-9, #006400);
	margin-top: 20px;
	margin-bottom: 50px;
	position: relative;
	display: inline-block;
	left: 50%;
	transform: translateX(-50%);
}

.pro-section-title::after {
	content: '';
	position: absolute;
	bottom: -10px;
	left: 50%;
	transform: translateX(-50%);
	width: 50px;
	height: 4px;
	background: var(--global-color-10, #90EE90);
	border-radius: 2px;
}

.pro-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 30px;
}

.pro-card {
	background: var(--global-color-8, #ffffff);
	border: 1px solid #eaeaea;
	border-radius: 16px;
	padding: 30px 20px;
	text-align: center;
	transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
	position: relative;
	top: 0;
}

.pro-card:hover {
	top: -10px;
	border-color: var(--global-color-9, #006400);
	/* 3D Box effect on hover */
	box-shadow: 
		8px 8px 0 var(--global-color-10, #90EE90),
		0 20px 40px rgba(0, 100, 0, 0.05);
}

.pro-card-icon {
	margin-bottom: 20px;
	transition: transform 0.3s ease;
	display: flex;
	justify-content: center;
}

.pro-card-icon svg {
	color: var(--global-color-9, #006400);
}

.pro-card:hover .pro-card-icon {
	transform: scale(1.1) rotate(5deg);
}

.pro-card h3 {
	font-size: 1.4rem;
	font-weight: 700;
	color: var(--global-color-9, #006400);
	margin-bottom: 15px;
}

.pro-card p {
	color: #555555;
	line-height: 1.6;
	margin: 0;
}

/* --- Blog Section --- */
.pro-blog-section {
	width: 100%;
	padding: 80px 0;
	background-color: transparent;
}

.pro-blog-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 30px;
}

.pro-blog-card {
	background: var(--global-color-8, #ffffff);
	border: 1px solid #eaeaea;
	border-radius: 16px;
	overflow: hidden;
	transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
	display: flex;
	flex-direction: column;
}

.pro-blog-card:hover {
	transform: translateY(-10px);
	border-color: var(--global-color-9, #006400);
	box-shadow: 
		8px 8px 0 var(--global-color-10, #90EE90),
		0 20px 40px rgba(0, 100, 0, 0.05);
}

.pro-blog-image {
	width: 100%;
	height: 220px;
	overflow: hidden;
	background: #f8f9fa;
	position: relative;
}

.pro-blog-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.6s ease;
}

.pro-blog-card:hover .pro-blog-image img {
	transform: scale(1.08);
}

.pro-blog-image-fallback {
	display: flex;
	align-items: center;
	justify-content: center;
	color: #ccc;
}

.pro-blog-image-fallback a {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
	color: inherit;
}

.pro-blog-content {
	padding: 30px;
	flex: 1;
	display: flex;
	flex-direction: column;
}

.pro-blog-title {
	font-size: 1.3rem;
	font-weight: 700;
	margin-top: 0;
	margin-bottom: 25px;
	line-height: 1.4;
	flex: 1;
}

.pro-blog-title a {
	color: #333333;
	text-decoration: none;
	transition: color 0.3s ease;
}

.pro-blog-title a:hover {
	color: var(--global-color-9, #006400);
}

.pro-blog-meta {
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-size: 0.95rem;
	font-weight: 600;
	border-top: 1px solid #eaeaea;
	padding-top: 20px;
}

.pro-blog-date {
	color: #888888;
	font-weight: 400;
}

.pro-blog-read-more {
	color: var(--global-color-9, #006400);
	text-decoration: none;
	transition: color 0.3s ease;
}

.pro-blog-read-more:hover {
	color: var(--global-color-10, #90EE90);
}

/* Responsive */
@media (max-width: 768px) {
	.pro-hero-container {
		flex-direction: column;
		text-align: center;
		padding: 20px 15px;
		gap: 15px;
	}
	
	.pro-hero-content-right {
		justify-content: center;
		margin-top: 0;
	}

	.pro-hero-actions {
		justify-content: center;
		flex-wrap: wrap;
		gap: 10px;
	}
	
	.pro-btn {
		padding: 10px 20px;
		font-size: 1rem;
	}

	.pro-social-btn {
		width: 38px;
		height: 38px;
	}
	
	.pro-social-btn svg {
		width: 18px;
		height: 18px;
	}
	
	.pro-expertise-section {
		padding: 0;
	}

	.pro-grid, .pro-blog-grid {
		grid-template-columns: 1fr;
		gap: 20px;
	}
	
	.pro-section-title {
		margin-bottom: 30px;
	}
	
	.pro-blog-section {
		padding: 40px 15px;
	}
}


/* ==========================================================================
   Plugin Post Template Styles
   ========================================================================== */

.pro-plugin-article {
	max-width: 900px;
	margin: 0 auto;
	padding: 20px 0;
	font-family: 'Inter', sans-serif;
}

.pro-breadcrumbs {
	font-size: 0.9rem;
	color: #666;
	margin-bottom: 20px;
}

.pro-breadcrumbs a {
	color: var(--global-color-9);
	text-decoration: none;
	transition: color 0.3s ease;
}

.pro-breadcrumbs a:hover {
	color: var(--global-color-10);
	text-decoration: underline;
}

.pro-plugin-header {
	background-color: var(--global-color-10);
	padding: 20px 30px;
	border-radius: 12px;
	margin-bottom: 30px;
	text-align: center;
	box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.pro-plugin-title {
	color: var(--global-color-9);
	margin: 0;
	font-size: 2.5rem;
	font-weight: 800;
	line-height: 1.2;
}

.pro-plugin-meta-bar {
	display: flex;
	justify-content: space-between;
	align-items: center;
	background: #f8f9fa;
	padding: 15px 25px;
	border-radius: 50px;
	margin-bottom: 40px;
	flex-wrap: wrap;
	gap: 20px;
}

.pro-plugin-author-meta {
	display: flex;
	align-items: center;
	gap: 15px;
}

.pro-author-avatar-small {
	width: 50px;
	height: 50px;
	border-radius: 50%;
	object-fit: cover;
	border: 2px solid var(--global-color-10);
}

.pro-author-avatar-small.pro-avatar-placeholder {
	background: #e9ecef;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #adb5bd;
}

.pro-author-details {
	display: flex;
	flex-direction: column;
}

.pro-author-name {
	font-size: 1.1rem;
	color: #333;
	display: flex;
	align-items: center;
	gap: 5px;
}

.pro-verified-badge {
	width: 16px;
	height: 16px;
}

.pro-post-date {
	font-size: 0.85rem;
	color: #777;
}

.pro-plugin-share {
	display: flex;
	align-items: center;
	gap: 10px;
}

.pro-share-label {
	font-weight: 700;
	margin-right: 5px;
	color: #333;
}

.pro-share-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	color: #fff;
	text-decoration: none;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	border: none;
	cursor: pointer;
	padding: 0;
}

.pro-share-btn:hover {
	transform: translateY(-3px);
	box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.pro-share-fb { background: #1877F2; }
.pro-share-wa { background: #25D366; }
.pro-share-tg { background: #0088cc; }
.pro-share-link { background: #333; }

.pro-plugin-featured-image {
	margin-bottom: 40px;
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.pro-plugin-featured-image img {
	width: 100%;
	height: auto;
	display: block;
}

.pro-plugin-info-box {
	background: #fff;
	border: 1px solid #eaeaea;
	border-left: 5px solid var(--global-color-10);
	border-radius: 8px;
	padding: 25px;
	margin-bottom: 40px;
	box-shadow: 0 4px 15px rgba(0,0,0,0.03);
}

.pro-info-row {
	display: flex;
	padding: 10px 0;
	border-bottom: 1px solid #f0f0f0;
}

.pro-info-row:last-child {
	border-bottom: none;
}

.pro-info-label {
	font-weight: 700;
	width: 200px;
	color: #444;
}

.pro-info-value {
	color: #666;
	flex: 1;
}

.pro-info-value a {
	color: var(--global-color-10);
	text-decoration: none;
	font-weight: 600;
}

.pro-info-value a:hover {
	text-decoration: underline;
}

.pro-plugin-content-box {
	font-size: 1.1rem;
	line-height: 1.8;
	color: #333;
	margin-bottom: 50px;
}

.pro-plugin-content-box h2, .pro-plugin-content-box h3 {
	margin-top: 40px;
	margin-bottom: 20px;
	color: var(--global-color-9);
}

.pro-related-posts-box {
	margin-top: 50px;
	padding-top: 30px;
	border-top: 2px solid #eaeaea;
}

.pro-related-posts-box h3 {
	font-size: 1.8rem;
	margin-bottom: 25px;
}

.pro-related-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 20px;
}

.pro-related-card {
	background: #fff;
	border-radius: 8px;
	overflow: hidden;
	box-shadow: 0 4px 15px rgba(0,0,0,0.05);
	transition: transform 0.3s ease;
}

.pro-related-card:hover {
	transform: translateY(-5px);
}

.pro-related-card a {
	text-decoration: none;
	color: inherit;
}

.pro-related-thumb img {
	width: 100%;
	height: 150px;
	object-fit: cover;
	display: block;
}

.pro-related-card h4 {
	padding: 15px;
	margin: 0;
	font-size: 1.1rem;
}

.pro-author-box {
	display: flex;
	background: #f8f9fa;
	padding: 30px;
	border-radius: 12px;
	margin-top: 50px;
	align-items: center;
	gap: 30px;
}

.pro-author-box-image img {
	width: 120px;
	height: 120px;
	border-radius: 50%;
	object-fit: cover;
	border: 4px solid #fff;
	box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.pro-avatar-placeholder-large {
	width: 120px;
	height: 120px;
	border-radius: 50%;
	background: #e9ecef;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #adb5bd;
}

.pro-author-box-content {
	flex: 1;
}

.pro-author-box-name {
	margin: 0 0 10px 0;
	font-size: 1.5rem;
	color: #333;
}

.pro-author-box-bio {
	margin: 0;
	color: #666;
	line-height: 1.6;
}

.pro-comments-section {
	margin-top: 50px;
	padding-top: 30px;
	border-top: 2px solid #eaeaea;
}

/* Premium Comments Styling */
.pro-comments-section h3#reply-title, 
.pro-comments-section .comments-title {
	font-size: 1.8rem;
	font-weight: 700;
	margin-bottom: 25px;
	color: #333;
}

.pro-comments-section .comment-list {
	list-style: none;
	padding: 0;
	margin: 0 0 40px 0;
}

.pro-comments-section .comment {
	background: #f8f9fa;
	border-radius: 12px;
	padding: 25px;
	margin-bottom: 20px;
	box-shadow: 0 4px 15px rgba(0,0,0,0.02);
}

.pro-comments-section .comment-author img {
	border-radius: 50%;
	margin-right: 15px;
	float: left;
}

.pro-comments-section .comment-author b {
	font-size: 1.1rem;
	color: var(--global-color-9, #333);
}

.pro-comments-section .comment-meta {
	font-size: 0.85rem;
	color: #777;
	margin-bottom: 15px;
}

.pro-comments-section .comment-content {
	clear: both;
	line-height: 1.6;
	color: #444;
	font-size: 1.05rem;
}

.pro-comments-section .reply a {
	display: inline-block;
	background: #fff;
	border: 1px solid #ddd;
	padding: 5px 15px;
	border-radius: 20px;
	font-size: 0.85rem;
	font-weight: 600;
	color: #555;
	text-decoration: none;
	transition: all 0.2s ease;
}

.pro-comments-section .reply a:hover {
	background: var(--global-color-10, #eee);
	color: var(--global-color-9, #333);
	border-color: var(--global-color-10, #eee);
}

.pro-comments-section .comment-form {
	background: #fff;
	padding: 30px;
	border-radius: 12px;
	border: 1px solid #eaeaea;
	box-shadow: 0 10px 30px rgba(0,0,0,0.03);
}

.pro-comments-section .comment-form label {
	display: block;
	font-weight: 600;
	margin-bottom: 8px;
	color: #444;
}

.pro-comments-section .comment-form input[type="text"],
.pro-comments-section .comment-form input[type="email"],
.pro-comments-section .comment-form input[type="url"],
.pro-comments-section .comment-form textarea {
	width: 100%;
	padding: 12px 15px;
	border: 1px solid #ddd;
	border-radius: 8px;
	font-family: inherit;
	margin-bottom: 20px;
	transition: border-color 0.3s ease;
	box-sizing: border-box;
}

.pro-comments-section .comment-form input:focus,
.pro-comments-section .comment-form textarea:focus {
	outline: none;
	border-color: var(--global-color-10);
	box-shadow: 0 0 0 3px rgba(144, 238, 144, 0.2);
}

.pro-comments-section .comment-form input[type="submit"] {
	background-color: var(--global-color-9, #006400);
	color: #fff;
	border: none;
	padding: 12px 30px;
	border-radius: 8px;
	font-weight: 700;
	font-size: 1rem;
	cursor: pointer;
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.pro-comments-section .comment-form input[type="submit"]:hover {
	transform: translateY(-2px);
	box-shadow: 0 5px 15px rgba(0, 100, 0, 0.2);
}

@media (max-width: 768px) {
	.pro-plugin-article {
		padding: 10px 15px;
	}

	.pro-plugin-header {
		padding: 25px 15px;
	}

	.pro-plugin-title {
		font-size: 1.8rem;
	}

	.pro-plugin-meta-bar {
		flex-direction: column;
		align-items: center;
		border-radius: 12px;
		padding: 20px;
		gap: 20px;
	}

	.pro-plugin-author-meta {
		flex-direction: column;
		text-align: center;
	}

	.pro-plugin-share {
		justify-content: center;
		flex-wrap: wrap;
	}

	.pro-plugin-info-box {
		padding: 15px;
	}

	.pro-info-row {
		flex-direction: column;
		gap: 5px;
	}

	.pro-info-label {
		width: 100%;
	}

	.pro-author-box {
		flex-direction: column;
		text-align: center;
		padding: 20px;
	}

	.pro-author-box-image img, 
	.pro-avatar-placeholder-large {
		width: 90px;
		height: 90px;
	}

	.pro-related-grid {
		grid-template-columns: 1fr;
	}
}

/* ==========================================================================
   Category Archive & Pagination Styles
   ========================================================================== */
.pro-category-archive-wrapper {
	margin: 40px 0;
}

.pro-pagination {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
	gap: 10px;
	margin-top: 50px;
}

.pro-pagination a,
.pro-pagination span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 40px;
	height: 40px;
	padding: 0 15px;
	border-radius: 8px;
	background: #fff;
	color: #333;
	text-decoration: none;
	font-weight: 600;
	border: 1px solid #eaeaea;
	transition: all 0.3s ease;
}

.pro-pagination a:hover {
	background: var(--global-color-10, #90EE90);
	color: var(--global-color-9, #006400);
	border-color: var(--global-color-10, #90EE90);
}

.pro-pagination .current {
	background: var(--global-color-9, #006400);
	color: #fff;
	border-color: var(--global-color-9, #006400);
}

.pro-pagination .dots {
	border: none;
	background: transparent;
}

.pro-archive-header {
	text-align: center;
	margin-bottom: 30px;
	background-color: var(--global-color-10, #f0fdf4);
	padding: 30px 20px;
	border-radius: 12px;
	box-shadow: 0 5px 15px rgba(0,0,0,0.03);
	border: 1px solid rgba(0,0,0,0.03);
}

.pro-archive-title {
	font-size: clamp(1.8rem, 3.5vw, 2.5rem);
	font-weight: 800;
	color: var(--global-color-9, #006400);
	margin-top: 0;
	margin-bottom: 10px;
}

.pro-archive-description {
	font-size: 1.05rem;
	color: #555;
	max-width: 800px;
	margin: 0 auto;
	line-height: 1.5;
}

/* Mobile optimizations for archive */
@media (max-width: 768px) {
	.pro-category-archive-wrapper {
		margin: 20px 6px;
	}

	.pro-archive-header {
		padding: 20px 15px;
		margin-bottom: 25px;
		border-radius: 10px;
	}
	
	.pro-archive-title {
		font-size: 1.5rem;
		margin-bottom: 8px;
	}
	
	.pro-archive-description {
		font-size: 0.95rem;
	}
}

/* ==========================================================================
   Page Template Styles
   ========================================================================== */
.pro-page-article {
	max-width: 900px;
	margin: 0 auto;
	padding: 20px 0;
	font-family: 'Inter', sans-serif;
}

.pro-page-header {
	background: linear-gradient(135deg, var(--global-color-10, #f0fdf4) 0%, rgba(255,255,255,1) 100%);
	padding: 50px 40px;
	border-radius: 16px;
	margin-bottom: 40px;
	text-align: center;
	box-shadow: 0 10px 30px rgba(0,0,0,0.03);
	border: 1px solid rgba(0,0,0,0.03);
}

.pro-page-title {
	color: var(--global-color-9, #006400);
	margin: 0;
	font-size: clamp(2rem, 4vw, 3rem);
	font-weight: 800;
	line-height: 1.2;
}

.pro-page-content-box {
	background: #fff;
	border: 1px solid #eaeaea;
	border-radius: 16px;
	padding: 40px;
	box-shadow: 0 4px 15px rgba(0,0,0,0.03);
	font-size: 1.1rem;
	line-height: 1.8;
	color: #333;
}

@media (max-width: 768px) {
	.pro-page-article {
		margin: 10px 6px;
	}
	.pro-page-header {
		padding: 30px 20px;
		margin-bottom: 30px;
	}
	.pro-page-content-box {
		padding: 20px;
		border-radius: 12px;
	}
}

/* ==========================================================================
   Search Template Styles
   ========================================================================== */
.pro-search-archive-wrapper {
	margin: 40px 0;
}
.pro-no-results {
	grid-column: 1 / -1;
	text-align: center;
	padding: 50px 20px;
	background: #fff;
	border-radius: 12px;
	border: 1px solid #eaeaea;
}
.pro-no-results p {
	font-size: 1.1rem;
	color: #555;
	margin-bottom: 25px;
}
.pro-search-form {
	display: flex;
	max-width: 500px;
	margin: 0 auto;
	gap: 10px;
}
.pro-search-field {
	flex: 1;
	padding: 12px 20px;
	border: 1px solid #ddd;
	border-radius: 8px;
	font-size: 1rem;
}
.pro-search-field:focus {
	outline: none;
	border-color: var(--global-color-10, #90EE90);
	box-shadow: 0 0 0 3px rgba(144,238,144,0.2);
}
.pro-search-submit {
	padding: 12px 25px;
	background: var(--global-color-9, #006400);
	color: #fff;
	border: none;
	border-radius: 8px;
	font-weight: 700;
	cursor: pointer;
	transition: background 0.3s;
}
.pro-search-submit:hover {
	background: #004d00;
}
@media (max-width: 768px) {
	.pro-search-archive-wrapper {
		margin: 20px 6px;
	}
	.pro-no-results {
		padding: 30px 15px;
	}
	.pro-no-results p {
		font-size: 1rem;
	}
	.pro-search-form {
		flex-direction: column;
	}
	.pro-search-submit {
		width: 100%;
	}
}

/* ==========================================================================
   Footer Template Styles
   ========================================================================== */
.pro-footer-template {
	background-color: #111827;
	color: #e5e7eb;
	padding: 80px 0 30px;
	margin-top: 60px;
	font-family: 'Inter', sans-serif;
	border-top-left-radius: 40px;
	border-top-right-radius: 40px;
}

.pro-footer-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 30px;
}

.pro-footer-grid {
	display: grid;
	grid-template-columns: 2fr 1fr 1fr 1fr;
	gap: 40px;
	margin-bottom: 60px;
}

.pro-footer-logo {
	color: #fff;
	font-size: 2rem;
	font-weight: 800;
	margin: 0 0 20px;
	background: linear-gradient(90deg, #fff 0%, var(--global-color-10, #90EE90) 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

.pro-footer-desc {
	font-size: 1rem;
	line-height: 1.6;
	color: #9ca3af;
	margin-bottom: 30px;
	max-width: 400px;
}

.pro-footer-socials {
	display: flex;
	gap: 15px;
}

.pro-footer-social-link {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: rgba(255,255,255,0.05);
	color: #fff;
	transition: all 0.3s ease;
	text-decoration: none;
}

.pro-footer-social-link:hover {
	background: var(--global-color-9, #006400);
	transform: translateY(-3px);
}

.pro-footer-heading {
	color: #fff;
	font-size: 1.2rem;
	font-weight: 700;
	margin: 0 0 25px;
}

.pro-footer-menu {
	list-style: none;
	padding: 0;
	margin: 0;
}

.pro-footer-menu li {
	margin-bottom: 15px;
}

.pro-footer-menu li:last-child {
	margin-bottom: 0;
}

.pro-footer-menu a {
	color: #9ca3af;
	text-decoration: none;
	font-size: 1rem;
	transition: color 0.2s ease, padding-left 0.2s ease;
}

.pro-footer-menu a:hover {
	color: var(--global-color-10, #90EE90);
	padding-left: 5px;
}

.pro-footer-bottom {
	text-align: center;
	padding-top: 30px;
	border-top: 1px solid rgba(255,255,255,0.1);
	color: #6b7280;
	font-size: 0.9rem;
}

@media (max-width: 768px) {
	.pro-footer-template {
		border-radius: 0;
		padding: 50px 0 20px;
		margin-top: 40px;
	}
	
	.pro-footer-grid {
		grid-template-columns: 1fr;
		gap: 40px;
	}
	
	.pro-footer-desc {
		max-width: 100%;
	}
}

/* ==========================================================================
   404 Template Styles
   ========================================================================== */
.pro-404-wrapper {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 60vh;
	text-align: center;
	padding: 40px 20px;
}
.pro-404-content {
	max-width: 600px;
	background: #fff;
	padding: 60px 40px;
	border-radius: 16px;
	box-shadow: 0 10px 30px rgba(0,0,0,0.03);
	border: 1px solid rgba(0,0,0,0.03);
}
.pro-404-title {
	font-size: 8rem;
	font-weight: 900;
	margin: 0;
	background: linear-gradient(135deg, var(--global-color-9, #006400) 0%, var(--global-color-10, #90EE90) 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	line-height: 1;
}
.pro-404-subtitle {
	font-size: 2rem;
	font-weight: 700;
	color: #333;
	margin: 10px 0 20px;
}
.pro-404-desc {
	font-size: 1.1rem;
	color: #666;
	line-height: 1.6;
	margin-bottom: 30px;
}
.pro-404-search {
	margin-bottom: 30px;
}
@media (max-width: 768px) {
	.pro-404-title {
		font-size: 5rem;
	}
	.pro-404-subtitle {
		font-size: 1.5rem;
	}
	.pro-404-content {
		padding: 40px 20px;
	}
}

/* ==========================================================================
   Table of Contents Styles
   ========================================================================== */
.pro-toc {
	background: var(--global-color-10, #f0fdf4);
	border: 1px solid rgba(0,0,0,0.05);
	border-radius: 12px;
	padding: 25px;
	margin: 30px 0;
	box-shadow: 0 4px 15px rgba(0,0,0,0.02);
}
.pro-toc-header {
	font-size: 1.25rem;
	font-weight: 800;
	color: var(--global-color-9, #006400);
	margin-bottom: 15px;
	display: flex;
	align-items: center;
	gap: 8px;
}
.pro-toc-list {
	list-style: none;
	padding: 0;
	margin: 0;
}
.pro-toc-list > li {
	margin-bottom: 10px;
}
.pro-toc-list > li:last-child {
	margin-bottom: 0;
}
.pro-toc-list a {
	color: #4b5563;
	text-decoration: none;
	font-weight: 600;
	transition: color 0.2s ease;
}
.pro-toc-list a:hover {
	color: var(--global-color-9, #006400);
	text-decoration: underline;
}
.pro-toc-sublist {
	list-style: none;
	padding-left: 20px;
	margin-top: 8px;
	border-left: 2px solid rgba(0,0,0,0.05);
}
.pro-toc-sublist li {
	margin-bottom: 8px;
}
.pro-toc-sublist a {
	font-size: 0.95rem;
	font-weight: 500;
	color: #6b7280;
}
