/*
Theme Name: Elemental Starter
Main Stylesheet - All Custom Styles
*/

/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
0.0 - Icon Fixes (CRITICAL)
0.5 - Typography & Base Styles
1.0 - Header & Top Bar
2.0 - Navigation
3.0 - Footer
4.0 - Blog & Posts
5.0 - Team & Testimonials
6.0 - Buttons & Forms
7.0 - Animations
8.0 - Responsive
--------------------------------------------------------------*/

/*--------------------------------------------------------------
0.0 - Icon Fixes - CRITICAL FOR DASHICONS
--------------------------------------------------------------*/
/* Icon Containers */
.icon {
	display: inline-flex !important;
	align-items: center !important;
	justify-content: center !important;
	width: 1.5rem !important;
	height: 1.5rem !important;
	vertical-align: middle !important;
}

.icon.is-small {
	width: 1rem !important;
	height: 1rem !important;
}

.icon.is-large {
	width: 3rem !important;
	height: 3rem !important;
}

.icon-text {
	display: inline-flex !important;
	align-items: center !important;
	gap: 0.5rem !important;
}

.icon-text .icon {
	width: auto !important;
	height: auto !important;
}

/* Heading Icons - Make them bigger and more prominent! */
h1 .icon-text .dashicons,
h2 .icon-text .dashicons,
h3 .icon-text .dashicons,
.title .icon-text .dashicons,
.subtitle .icon-text .dashicons {
	font-size: 32px !important;
	width: 32px !important;
	height: 32px !important;
}

/* Smaller headings get slightly smaller icons */
h4 .icon-text .dashicons,
h5 .icon-text .dashicons,
h6 .icon-text .dashicons {
	font-size: 24px !important;
	width: 24px !important;
	height: 24px !important;
}

/* Ensure icons are not hidden by animations */
.icon * {
	opacity: 1 !important;
	visibility: visible !important;
}

/* Dashicons Support (WordPress Built-in) */
.dashicons,
.dashicons-before::before {
	display: inline-block !important;
	font-size: 20px !important;
	line-height: 1 !important;
	vertical-align: middle !important;
	width: 20px !important;
	height: 20px !important;
	font-family: dashicons !important;
	text-decoration: inherit !important;
	font-weight: normal !important;
	font-style: normal !important;
	-webkit-font-smoothing: antialiased !important;
	-moz-osx-font-smoothing: grayscale !important;
}

.top-bar-item .dashicons {
	font-size: 18px !important;
	width: 18px !important;
	height: 18px !important;
	margin-right: 0.5rem !important;
	vertical-align: middle !important;
	color: rgba(255, 255, 255, 0.9) !important;
}

.icon .dashicons {
	font-size: 20px !important;
	width: 20px !important;
	height: 20px !important;
}

.social-icons .dashicons {
	font-size: 16px !important;
	width: 16px !important;
	height: 16px !important;
}

#theme-toggle .dashicons {
	font-size: 18px !important;
	width: 18px !important;
	height: 18px !important;
	color: white !important;
}

/*--------------------------------------------------------------
0.5 - Typography & Base Styles
--------------------------------------------------------------*/
body {
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
	line-height: 1.6;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

/* Title Spacing - Fix Overlaps */
h1, h2, h3, h4, h5, h6,
.title, .subtitle {
	padding-bottom: 0.75rem !important;
	margin-bottom: 1rem !important;
}

h1.title, .title.is-1 {
	padding-bottom: 1rem !important;
	margin-bottom: 1.5rem !important;
}

h2.title, .title.is-2 {
	padding-bottom: 0.875rem !important;
	margin-bottom: 1.25rem !important;
}

h3.title, .title.is-3 {
	padding-bottom: 0.75rem !important;
	margin-bottom: 1rem !important;
}

.subtitle {
	padding-top: 0.5rem !important;
	margin-top: 0 !important;
}

/* Card Titles */
.card-content .title {
	line-height: 1.3 !important;
	padding-bottom: 0.5rem !important;
}

/* Entry Titles */
.entry-title {
	line-height: 1.2 !important;
	padding-bottom: 1rem !important;
	margin-bottom: 1.5rem !important;
}

/* Section Titles */
.section .title {
	padding-bottom: 1.5rem !important;
	margin-bottom: 2rem !important;
}

/* Hero Titles */
.hero-body .title {
	padding-bottom: 0.75rem !important;
}

.hero-body .subtitle {
	padding-top: 0.5rem !important;
}

/* Paragraph & Content Spacing */
p {
	margin-bottom: 1rem;
}

.content p {
	margin-bottom: 1.25rem;
}

/* Better readability */
.content {
	font-size: 1rem;
	line-height: 1.7;
}

/* Icon Text Alignment */
.icon-text {
	align-items: center;
	vertical-align: middle;
}

/* Button Typography */
.button {
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
	font-weight: 500;
	letter-spacing: 0.025em;
}

/* Box Elements */
.box {
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
	padding: 1.5rem;
	margin-bottom: 1.5rem;
}

.box .title {
	margin-top: 0;
}

/* Entry Meta Spacing */
.entry-meta {
	margin-bottom: 1.5rem;
	padding-bottom: 1rem;
}

/* Media Elements */
.media-content {
	padding-top: 0.25rem;
}

/* Tags Spacing */
.tags {
	margin-top: 0.75rem;
}

.tags .tag {
	margin-right: 0.5rem;
	margin-bottom: 0.5rem;
}

/*--------------------------------------------------------------
1.0 - Header & Top Bar - Classy Edition
--------------------------------------------------------------*/
.top-bar {
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	padding: 0.75rem 0;
	font-size: 0.875rem;
	border-bottom: none;
	box-shadow: 0 2px 8px rgba(102, 126, 234, 0.2);
}

.top-bar-item {
	margin-right: 1.5rem;
	color: rgba(255, 255, 255, 0.95);
}

.top-bar-item i {
	margin-right: 0.3rem;
	color: rgba(255, 255, 255, 0.8);
}

.top-bar-item a {
	color: rgba(255, 255, 255, 0.95);
	text-decoration: none;
	transition: all 0.3s ease;
	padding: 0.25rem 0.5rem;
	border-radius: 4px;
}

.top-bar-item a:hover {
	color: #ffffff;
	background: rgba(255, 255, 255, 0.15);
	transform: translateY(-1px);
}

/* Social Icons in Top Bar - ENHANCED VISIBILITY */
.social-icons {
	display: inline-flex !important;
	gap: 0.75rem;
	align-items: center;
	margin-left: 1rem;
}

.social-icons a {
	color: rgba(255, 255, 255, 0.9) !important;
	transition: all 0.3s ease;
	padding: 0.35rem 0.6rem;
	border-radius: 6px;
	display: inline-flex !important;
	align-items: center;
	background: rgba(255, 255, 255, 0.1);
	border: 1px solid rgba(255, 255, 255, 0.2);
}

.social-icons a:hover {
	color: #ffffff !important;
	background: rgba(255, 255, 255, 0.25);
	transform: translateY(-2px) scale(1.15);
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* Ensure social icons Dashicons are visible */
.social-icons .dashicons {
	font-size: 18px !important;
	width: 18px !important;
	height: 18px !important;
	color: rgba(255, 255, 255, 0.95) !important;
}

.social-icons a:hover .dashicons {
	color: #ffffff !important;
}

/* Dark Mode Toggle */
#theme-toggle {
	margin-left: 1rem;
	background: rgba(255, 255, 255, 0.2);
	border: 1px solid rgba(255, 255, 255, 0.3);
	color: white;
}

#theme-toggle:hover {
	background: rgba(255, 255, 255, 0.3);
	border-color: rgba(255, 255, 255, 0.5);
	transform: rotate(180deg);
}

/*--------------------------------------------------------------
2.0 - Navigation - Professional & Clean
--------------------------------------------------------------*/
.navbar {
	background: var(--header-bg, #ffffff);
	padding: 0.75rem 0;
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.navbar-brand .custom-logo {
	transition: all 0.3s ease;
	filter: brightness(1);
}

.navbar-brand .custom-logo:hover {
	filter: brightness(1.1);
	transform: scale(1.05);
}

.navbar-item {
	color: var(--text-color, #333);
	font-weight: 500;
	position: relative;
	transition: all 0.3s ease;
	padding: 0.75rem 1rem;
}

.navbar-item::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 50%;
	width: 0;
	height: 2px;
	background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
	transition: all 0.3s ease;
	transform: translateX(-50%);
}

.navbar-item:hover {
	color: #667eea;
	background: rgba(102, 126, 234, 0.05);
}

.navbar-item:hover::after {
	width: 80%;
}

/* Cart Icon */
.cart-icon {
	position: relative;
	padding: 0.5rem;
	transition: all 0.3s ease;
}

.cart-icon:hover {
	transform: scale(1.1);
}

.cart-count {
	position: absolute;
	top: 0;
	right: 0;
	background: #f14668;
	color: white;
	border-radius: 50%;
	padding: 0.2rem 0.5rem;
	font-size: 0.75rem;
	font-weight: 700;
	min-width: 1.5rem;
	text-align: center;
	animation: pulse 2s infinite;
}

@keyframes pulse {
	0%, 100% {
		transform: scale(1);
	}
	50% {
		transform: scale(1.1);
	}
}

/* Navbar Burger - Mobile */
.navbar-burger {
	transition: all 0.3s ease;
}

.navbar-burger:hover {
	background: rgba(102, 126, 234, 0.1);
}

.navbar-burger.is-active span:nth-child(1) {
	transform: translateY(7px) rotate(45deg);
}

.navbar-burger.is-active span:nth-child(2) {
	opacity: 0;
}

.navbar-burger.is-active span:nth-child(3) {
	transform: translateY(-7px) rotate(-45deg);
}

/*--------------------------------------------------------------
3.0 - Footer - Elegant & Dark
--------------------------------------------------------------*/
.site-footer {
	margin-top: 4rem;
	padding: 3rem 0 2rem;
}

.site-footer .widget {
	margin-bottom: 2rem;
}

.site-footer .widget-title {
	color: #ffffff;
	margin-bottom: 1rem;
	padding-bottom: 0.5rem;
	border-bottom: 2px solid rgba(255, 255, 255, 0.1);
}

.site-footer a {
	color: rgba(255, 255, 255, 0.8);
	transition: all 0.3s ease;
}

.site-footer a:hover {
	color: #ffffff;
	padding-left: 0.5rem;
}

.footer-bottom {
	color: rgba(255, 255, 255, 0.7);
	font-size: 0.875rem;
}

/*--------------------------------------------------------------
4.0 - Blog & Posts - Bulma Enhanced
--------------------------------------------------------------*/

/* Blog Archive Cards - Professional Elegance */
.archive-card {
	height: 100%;
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	border: 2px solid rgba(102, 126, 234, 0.1);
	overflow: hidden;
	border-radius: 12px;
	background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
	display: flex;
	flex-direction: column;
	position: relative;
}

/* Archive card image gradient overlay */
.archive-card .card-image {
	position: relative;
	overflow: hidden;
}

.archive-card .card-image::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(180deg, transparent 0%, rgba(102, 126, 234, 0.05) 100%);
	opacity: 0;
	transition: opacity 0.4s ease;
	z-index: 1;
}

.archive-card:hover .card-image::before {
	opacity: 1;
}

.archive-card .card-image img {
	transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.archive-card:hover .card-image img {
	transform: scale(1.1) rotate(2deg);
}

/* Archive card - push footer to bottom */
.archive-card .card-content {
	flex: 1 1 auto;
}

.archive-card .card-footer {
	margin-top: auto;
	flex-shrink: 0;
}

.archive-card .card-image {
	flex-shrink: 0;
}

.archive-card:hover {
	transform: translateY(-12px) rotate(-1deg);
	box-shadow: 0 20px 50px rgba(102, 126, 234, 0.25), 0 0 40px rgba(102, 126, 234, 0.15);
	border-color: rgba(102, 126, 234, 0.5);
	background: linear-gradient(135deg, #ffffff 0%, #f9fbff 100%);
}

/* Archive card - glow effect */
.archive-card::before {
	content: '';
	position: absolute;
	top: -2px;
	left: -2px;
	right: -2px;
	bottom: -2px;
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	border-radius: 12px;
	opacity: 0;
	transition: opacity 0.4s ease;
	z-index: -1;
}

.archive-card:hover::before {
	opacity: 0.3;
	animation: borderGlow 2s ease-in-out infinite;
}

@keyframes borderGlow {
	0%, 100% {
		opacity: 0.2;
	}
	50% {
		opacity: 0.4;
	}
}

.archive-card .card-footer {
	border-top: 2px solid rgba(102, 126, 234, 0.08);
	background: linear-gradient(180deg, #fafbfc 0%, #f0f4ff 100%);
}

.archive-card .card-footer-item {
	font-weight: 600;
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
}

.archive-card .card-footer-item::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(102, 126, 234, 0.1), transparent);
	transition: left 0.5s ease;
	z-index: -1;
}

.archive-card .card-footer-item:hover::before {
	left: 100%;
}

.archive-card .card-footer-item:hover {
	background: linear-gradient(135deg, rgba(102, 126, 234, 0.08) 0%, rgba(118, 75, 162, 0.08) 100%);
	color: #667eea;
}

/* Archive card link buttons - white text on hover - SUPER AGGRESSIVE */
.archive-card .card-footer a.card-footer-item:hover,
.archive-card .card-footer a.card-footer-item.has-text-primary:hover,
.archive-card .card-footer a.card-footer-item.has-text-weight-semibold:hover,
.archive-card footer.card-footer a:hover,
.archive-card .card-footer-item:hover,
.archive-card .card-footer a:hover {
	color: white !important;
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.archive-card .card-footer a.card-footer-item:hover span,
.archive-card .card-footer a.card-footer-item:hover .icon {
	color: white !important;
}

/* Index Page Cards - CLEAN & SIMPLE */
.card {
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	border: 2px solid rgba(102, 126, 234, 0.1);
	background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
	position: relative;
}

/* Card uses Bulma's flex utilities: is-flex is-flex-direction-column */
/* No need for display: flex here - inline styles handle it! */

/* Gradient overlay on hover - CLASSY! */
.card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(135deg, rgba(102, 126, 234, 0.03) 0%, rgba(118, 75, 162, 0.03) 100%);
	opacity: 0;
	transition: opacity 0.4s ease;
	pointer-events: none;
	z-index: 0;
}

.card:hover::before {
	opacity: 1;
}

/* Shimmer effect on card hover */
.card::after {
	content: '';
	position: absolute;
	top: -50%;
	left: -100%;
	width: 50%;
	height: 200%;
	background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
	transform: rotate(25deg);
	transition: left 0.8s ease;
	pointer-events: none;
	z-index: 1;
}

.card:hover::after {
	left: 200%;
}

/* Push card footer to bottom */
/* Card flex handled by Bulma utility classes:
   - is-flex-grow-1 on card-content (grows to fill)
   - is-flex-shrink-0 on card-footer (sticks to bottom)
   No CSS needed here! */

.card:hover {
	box-shadow: 0 12px 35px rgba(102, 126, 234, 0.15), 0 0 30px rgba(102, 126, 234, 0.1);
	transform: translateY(-8px) scale(1.02);
	border-color: rgba(102, 126, 234, 0.4);
	background: linear-gradient(135deg, #ffffff 0%, #fefeff 100%);
}

/* Ensure content is above overlays */
.card .card-content,
.card .card-image,
.card .card-footer {
	position: relative;
	z-index: 2;
}

.card .card-image {
	overflow: hidden;
}

.card .card-image img {
	transition: transform 0.5s ease;
}

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

.card .card-content {
	padding: 1.75rem;
}

/* Blog Card Media Styling - ULTRA ENHANCED */
.card .media {
	margin-bottom: 1rem;
	position: relative;
	z-index: 2;
}

.card .media-left img {
	transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
	border-radius: 50%;
	border: 3px solid transparent;
}

.card:hover .media-left img {
	transform: scale(1.15) rotate(-5deg);
	box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
	border-color: rgba(102, 126, 234, 0.3);
}

.card .media-content .title {
	margin-bottom: 0.5rem;
	transition: all 0.3s ease;
	position: relative;
	z-index: 2;
}

.card .media-content .title a {
	color: #363636;
	text-decoration: none;
	position: relative;
	transition: all 0.4s ease;
	display: inline-block;
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	background-size: 0% 100%;
	background-repeat: no-repeat;
	background-position: left center;
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: #363636; /* Keep text BLACK until hover */
}

.card:hover .media-content .title a {
	background-size: 100% 100%; /* Expands gradient */
	-webkit-text-fill-color: transparent; /* Shows gradient! */
	color: transparent;
}

/* Gradient underline - ADDITIONAL effect */
.card .media-content .title a::after {
	content: '';
	position: absolute;
	bottom: -3px;
	left: 0;
	width: 0;
	height: 3px;
	background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
	transition: width 0.5s ease;
	border-radius: 2px;
}

.card:hover .media-content .title a::after {
	width: 100%;
}

.card .media-content .subtitle {
	color: #7a7a7a;
	font-size: 0.875rem;
	transition: all 0.3s ease;
}

.card:hover .media-content .subtitle {
	color: #667eea;
	transform: translateX(5px);
}

.card .card-footer {
	border-top: 2px solid rgba(102, 126, 234, 0.08);
	background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
}

.card .card-footer-item {
	transition: all 0.3s ease;
	font-weight: 600;
	position: relative;
}

.card .card-footer-item::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 0;
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	transition: height 0.3s ease;
	z-index: -1;
}

.card .card-footer-item:hover {
	color: white !important;
}

.card .card-footer-item:hover::before {
	height: 100%;
}

.card .card-footer-item:hover span,
.card .card-footer-item:hover .icon {
	color: white !important;
}

.card .card-footer-item span {
	position: relative;
	z-index: 1;
}

/* CRITICAL: Ensure text is above the gradient background */
.card .card-footer-item,
.card-footer a.card-footer-item,
.archive-card .card-footer-item {
	position: relative;
	z-index: 1;
}

/* Make absolutely sure text content is visible above gradient */
.card-footer a.card-footer-item:hover * {
	position: relative;
	z-index: 2;
}

/* FORCE Read More text to be white on hover - NUCLEAR SPECIFICITY */
.card-footer a.card-footer-item:hover,
footer.card-footer a.card-footer-item:hover,
.card footer.card-footer a.card-footer-item:hover,
a.card-footer-item.has-text-weight-bold:hover,
.card .card-footer a.card-footer-item:hover,
div.card footer.card-footer a.card-footer-item:hover,
div.card footer.card-footer a.card-footer-item.has-text-weight-bold:hover,
.card > footer.card-footer > a.card-footer-item:hover,
.columns .card .card-footer a:hover,
.column .card footer a.card-footer-item:hover,
.column.is-4 .card footer.card-footer a.card-footer-item:hover,
.columns.is-multiline .column .card .card-footer a:hover,
#content .card .card-footer a:hover,
main .card footer a:hover {
	color: white !important;
	text-decoration: none !important;
	-webkit-text-fill-color: white !important;
	background-clip: initial !important;
	-webkit-background-clip: initial !important;
}

/* Target the exact "Read More" link with all possible parent contexts */
a.card-footer-item[href]:hover,
a.has-text-weight-bold.card-footer-item:hover,
.card-footer > a:hover,
.card-footer a.has-text-weight-bold[href]:hover,
.card-footer a[class*="card-footer-item"]:hover {
	color: #ffffff !important;
}

/* Override any Bulma text color utilities on hover */
.card-footer a.has-text-primary:hover,
.card-footer a.has-text-dark:hover,
.card-footer a.has-text-grey:hover,
.card-footer a[class*="has-text-"]:hover {
	color: white !important;
}

/* ULTIMATE FALLBACK - Force white with multiple methods */
.card .card-footer a:hover,
.card footer a:hover {
	color: rgb(255, 255, 255) !important;
	color: rgba(255, 255, 255, 1) !important;
	color: #fff !important;
	color: hsl(0, 0%, 100%) !important;
}

/* Remove any text gradient/clip that might interfere */
.card-footer a:hover {
	background: none !important;
	-webkit-background-clip: unset !important;
	background-clip: unset !important;
	-webkit-text-fill-color: unset !important;
}

.entry-header {
	margin-bottom: 2rem;
}

/*--------------------------------------------------------------
5.0 - Custom Post Types - Team & Testimonials
--------------------------------------------------------------*/

/* Team Section - Center Cards in Container (specific to sections with team cards) */


/* Team Member Columns - Remove extra padding and center */
.columns.is-multiline .column.is-3 {
	padding: 0 0.75rem !important;
	margin-bottom: 0 !important;
}

/* Center team cards when there are fewer than 4 */
.section .columns.is-multiline:has(.column.is-3) {
	justify-content: center;
}

/* First team card in row - no left padding */
.columns.is-multiline .column.is-3:nth-child(4n+1) {
	padding-left: 0 !important;
}

/* Last team card in row (4 per row) - no right padding */
.columns.is-multiline .column.is-3:nth-child(4n) {
	padding-right: 0 !important;
}

/* Team Cards - Classy Professional */
.team-card {
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	height: 100%;
	border: 2px solid rgba(102, 126, 234, 0.1);
	background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
	border-radius: 16px;
	overflow: hidden;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
	position: relative;
}

.team-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
	background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
	transform: scaleX(0);
	transition: transform 0.4s ease;
}

.team-card:hover::before {
	transform: scaleX(1);
}

.team-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 16px 40px rgba(102, 126, 234, 0.25);
	border-color: rgba(102, 126, 234, 0.4);
}

.team-card .card-image {
	padding: 2rem 2rem 0;
	background: linear-gradient(180deg, rgba(102, 126, 234, 0.05) 0%, transparent 100%);
}

.team-card .team-photo {
	border-radius: 50%;
	border: 5px solid #ffffff;
	box-shadow: 0 4px 20px rgba(102, 126, 234, 0.2);
	transition: all 0.4s ease;
}

.team-card:hover .team-photo {
	border-color: #667eea;
	transform: scale(1.08) rotate(3deg);
	box-shadow: 0 8px 30px rgba(102, 126, 234, 0.35);
}

.team-card .card-content {
	padding: 2rem 1.5rem;
}

.team-card .title {
	color: #363636;
	margin-bottom: 0.5rem;
	font-weight: 700;
	transition: color 0.3s ease;
}

.team-card:hover .title {
	color: #667eea;
}

.team-card .subtitle {
	font-weight: 600;
	margin-bottom: 1rem;
	font-style: italic;
}

.team-social {
	display: flex;
	gap: 0.75rem;
	justify-content: center;
	margin-top: 1.5rem;
}

.team-social .button {
	transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
	background: transparent !important; /* Remove gradient background */
	border: 2px solid currentColor !important;
}

.team-social .button:hover {
	transform: scale(1.2) translateY(-3px) rotate(5deg);
	box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
	background: currentColor !important; /* Solid color on hover */
	color: white !important;
}

/* Testimonial Boxes */
.testimonial-box {
	border-left: 4px solid #667eea;
	background: #ffffff;
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
	border-radius: 8px;
	box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.testimonial-box::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(102, 126, 234, 0.03), transparent);
	transition: left 0.6s ease;
}

.testimonial-box:hover::before {
	left: 100%;
}

.testimonial-box:hover {
	border-left-color: #764ba2;
	box-shadow: 0 8px 20px rgba(102, 126, 234, 0.15);
	transform: translateX(5px);
}

.testimonial-box .has-text-weight-bold {
	font-size: 1.125rem;
	color: #363636;
	font-weight: 700;
}

.stars .icon {
	display: inline-block;
	transition: all 0.3s ease;
}

.testimonial-box:hover .stars .icon {
	transform: scale(1.1);
}

/*--------------------------------------------------------------
5.5 - Sections & Hero Styling
--------------------------------------------------------------*/
/* Hero Section - Dramatic & Bold */
.hero.is-primary {
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	position: relative;
	overflow: hidden;
}

.hero.is-primary::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: radial-gradient(circle at top right, rgba(255,255,255,0.1) 0%, transparent 60%);
	pointer-events: none;
}

.hero .title.is-1 {
	font-size: 3.5rem;
	font-weight: 800;
	text-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}

.hero .subtitle.is-3 {
	font-size: 1.75rem;
	font-weight: 300;
	text-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}

.hero .button.is-white.is-outlined {
	border-width: 2px;
	font-weight: 600;
	transition: all 0.3s ease;
}

.hero .button.is-white.is-outlined:hover {
	background: white;
	color: #667eea;
	transform: translateY(-3px);
	box-shadow: 0 8px 20px rgba(255, 255, 255, 0.4);
}

/* Section Styling */
.section {
	padding: 3rem 1.5rem;
}

.section.has-background-light {
	background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%) !important;
	border-radius: 12px;
	margin: 2rem 0;
	box-shadow: inset 0 2px 8px rgba(0, 0, 0, 0.02);
}

/* Tags Styling - ULTRA CLASSY WITH GRADIENTS */
.tag {
	transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
	border-radius: 6px;
	font-weight: 500;
	position: relative;
	overflow: hidden;
}

.tag::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	opacity: 0;
	transition: opacity 0.3s ease;
	z-index: -1;
}

.tag.is-primary.is-light:hover {
	color: white !important;
	transform: translateY(-3px) scale(1.05);
	box-shadow: 0 6px 16px rgba(102, 126, 234, 0.4);
	border-color: transparent;
}

.tag.is-primary.is-light:hover::before {
	opacity: 1;
}

/* Animated gradient text on section headers */
.section .title.is-2,
.hero .title.is-1 {
	position: relative;
	display: inline-block;
}

.section .title.is-2::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 0;
	height: 4px;
	background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
	transition: width 0.6s ease;
	border-radius: 2px;
}

.section:hover .title.is-2::after {
	width: 60%;
}

/* Content Area - Better Readability with Gradient Effects */
.card .content time {
	color: #7a7a7a;
	font-size: 0.875rem;
	transition: all 0.3s ease;
	display: inline-block;
}

.card:hover .content time {
	color: #667eea;
	transform: translateX(3px);
}

.card .content {
	color: #4a4a4a;
	line-height: 1.7;
	position: relative;
	z-index: 2;
}

/* Archive card content enhancements */
.archive-card .content h3.title a {
	position: relative;
	transition: all 0.3s ease;
}

.archive-card .content h3.title a::before {
	content: '';
	position: absolute;
	bottom: -2px;
	left: 0;
	width: 0;
	height: 2px;
	background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
	transition: width 0.4s ease;
}

.archive-card:hover .content h3.title a::before {
	width: 100%;
}

.archive-card:hover .content h3.title a {
	color: #667eea !important;
}

/* Date and author with gradient on hover */
.archive-card .is-size-7 .icon-text {
	transition: all 0.3s ease;
}

.archive-card:hover .is-size-7 .icon-text {
	color: #667eea !important;
}

/*--------------------------------------------------------------
6.0 - Buttons & Forms
--------------------------------------------------------------*/
.button.is-primary {
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	border: none;
	box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
	font-weight: 600;
	transition: all 0.3s ease;
}

.button.is-primary:hover {
	transform: translateY(-3px);
	box-shadow: 0 8px 20px rgba(102, 126, 234, 0.4);
	color: white !important;
}

.button.is-primary:hover span {
	color: white !important;
}

.button.is-outlined.is-primary {
	border: 2px solid #667eea;
	color: #667eea;
	background: transparent;
	font-weight: 600;
}

.button.is-outlined.is-primary:hover {
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	color: white !important;
	border-color: transparent;
	transform: translateY(-2px);
	box-shadow: 0 6px 16px rgba(102, 126, 234, 0.3);
}

.button.is-outlined.is-primary:hover span {
	color: white !important;
}

.button.is-outlined.is-primary:hover .icon {
	color: white !important;
}

/* Pagination - Bulma Enhanced */
.pagination {
	margin-top: 3rem;
}

.pagination a,
.pagination span {
	border-radius: 6px;
	transition: all 0.3s ease;
	border: 2px solid rgba(102, 126, 234, 0.2);
}

.pagination a:hover {
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	color: white;
	border-color: transparent;
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
}

.pagination .current {
	background: #667eea;
	color: white;
	border-color: #667eea;
}

/* Post Navigation */
.post-navigation {
	margin-top: 3rem;
	padding: 2rem 0;
	border-top: 2px solid rgba(102, 126, 234, 0.1);
}

.post-navigation a {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.75rem 1.5rem;
	background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
	border: 2px solid rgba(102, 126, 234, 0.1);
	border-radius: 8px;
	color: #667eea;
	font-weight: 600;
	transition: all 0.3s ease;
	text-decoration: none;
}

.post-navigation a:hover {
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	color: white;
	border-color: transparent;
	transform: translateX(5px);
	box-shadow: 0 6px 16px rgba(102, 126, 234, 0.3);
}

/*--------------------------------------------------------------
7.0 - Animations
--------------------------------------------------------------*/
/* Smooth Page Load Animation */
body {
	animation: fadeInPage 0.6s ease-in-out;
}

@keyframes fadeInPage {
	from {
		opacity: 0;
		transform: translateY(20px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

/* Stagger Animation for Cards */
.columns.is-multiline .column {
	animation: slideInUp 0.6s ease-out backwards;
}

/* Fix card spacing - remove extra padding/margins */
.columns.is-multiline .column.is-4 {
	padding: 0 0.75rem 0 0.75rem !important;
	margin-bottom: 0 !important;
}

.columns.is-multiline .column.is-4 .card {
	margin-bottom: 0 !important;
}

/* Remove ALL padding from first and last cards in row */
.columns.is-multiline .column.is-4:nth-child(3n+1) {
	padding-left: 0 !important;
	padding-bottom: 0 !important;
	margin-bottom: 0 !important;
}

.columns.is-multiline .column.is-4:nth-child(3n) {
	padding-right: 0 !important;
	padding-bottom: 0 !important;
	margin-bottom: 0 !important;
}

.columns.is-multiline .column.is-4:nth-child(3n+2) {
	padding-bottom: 0 !important;
	margin-bottom: 0 !important;
}

/* Force remove any Bulma default margins */
#content .columns.is-multiline .column.is-4,
.columns.is-multiline > .column.is-4 {
	margin-bottom: 0 !important;
	padding-bottom: 0 !important;
}

.columns.is-multiline .column:nth-child(1) { animation-delay: 0.1s; }
.columns.is-multiline .column:nth-child(2) { animation-delay: 0.2s; }
.columns.is-multiline .column:nth-child(3) { animation-delay: 0.3s; }
.columns.is-multiline .column:nth-child(4) { animation-delay: 0.4s; }
.columns.is-multiline .column:nth-child(5) { animation-delay: 0.5s; }
.columns.is-multiline .column:nth-child(6) { animation-delay: 0.6s; }

@keyframes slideInUp {
	from {
		opacity: 0;
		transform: translateY(40px) scale(0.95);
	}
	to {
		opacity: 1;
		transform: translateY(0) scale(1);
	}
}

/* Floating animation for hero button */
.hero .button.is-white.is-outlined {
	animation: floatButton 3s ease-in-out infinite;
}

@keyframes floatButton {
	0%, 100% {
		transform: translateY(0);
	}
	50% {
		transform: translateY(-10px);
	}
}

/* Icon-text gradient on hover */
.icon-text {
	transition: all 0.3s ease;
}

.section .icon-text .icon {
	transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.section:hover .icon-text .icon {
	transform: scale(1.2) rotate(360deg);
}

/* Card footer gradient sweep effect - ENHANCED */
.card .card-footer,
.archive-card .card-footer {
	position: relative;
	overflow: hidden;
}

.card .card-footer::before,
.archive-card .card-footer::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
	transition: left 0.6s ease;
	pointer-events: none;
}

.card:hover .card-footer::before,
.archive-card:hover .card-footer::before {
	left: 100%;
}

/*--------------------------------------------------------------
8.0 - Responsive
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
	.top-bar {
		font-size: 0.75rem;
		padding: 0.5rem 0;
	}
	
	.top-bar-item {
		margin-right: 0.75rem;
		font-size: 0.8rem;
	}
	
	.social-icons {
		margin-top: 0.5rem;
	}
	
	.social-icons a {
		font-size: 0.875rem;
	}
	
	/* Hero - Mobile Optimization */
	.hero .title.is-1 {
		font-size: 2rem;
	}
	
	.hero .subtitle.is-3 {
		font-size: 1.25rem;
	}
	
	/* Team & Testimonials - Stack on Mobile */
	.columns.is-multiline .column.is-3,
	.columns.is-multiline .column.is-4 {
		flex: none;
		width: 100%;
		padding-left: 0 !important;
		padding-right: 0 !important;
	}
	
	/* Cards */
	.card, .archive-card, .team-card, .testimonial-box {
		margin-bottom: 1.5rem;
	}
	
	/* Section Titles */
	.section .title.is-2 {
		font-size: 1.75rem;
	}
}

@media screen and (min-width: 769px) and (max-width: 1023px) {
	/* Tablet adjustments */
	.columns.is-multiline .column.is-3 {
		flex: none;
		width: 50%;
	}
	
	.hero .title.is-1 {
		font-size: 2.5rem;
	}
}

/*--------------------------------------------------------------
9.0 - Additional Classy Polish
--------------------------------------------------------------*/

/* Smooth Scrolling */
html {
	scroll-behavior: smooth;
}

/* Selection Styling */
::selection {
	background: #667eea;
	color: white;
}

::-moz-selection {
	background: #667eea;
	color: white;
}

/* Focus Styles for Accessibility */
a:focus,
button:focus,
input:focus,
textarea:focus {
	outline: 2px solid #667eea;
	outline-offset: 2px;
}

/* Image Styling */
img {
	max-width: 100%;
	height: auto;
	display: block;
}

figure {
	margin: 0;
}

/* Links */
a {
	color: #667eea;
	transition: all 0.3s ease;
}

a:hover {
	color: #764ba2;
}

/* Container Styling */
.container {
	animation: fadeIn 0.8s ease-in-out;
}

@keyframes fadeIn {
	from {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}

/* Widget Styling */
.widget {
	margin-bottom: 2rem;
}

.widget-title {
	position: relative;
	padding-bottom: 0.75rem;
	margin-bottom: 1.5rem;
}

.widget-title::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 50px;
	height: 3px;
	background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
}

.widget ul {
	list-style: none;
	padding-left: 0;
}

.widget li {
	padding: 0.5rem 0;
	border-bottom: 1px solid #f0f0f0;
	transition: all 0.3s ease;
}

.widget li:hover {
	padding-left: 0.5rem;
	background: rgba(102, 126, 234, 0.03);
}

/* Comments Styling */
.comment-list {
	list-style: none;
	padding-left: 0;
}

.comment {
	margin-bottom: 2rem;
	padding: 1.5rem;
	background: #f8f9fa;
	border-radius: 8px;
	border-left: 3px solid #667eea;
}

/* Back to Top Button (if added) */
#back-to-top {
	position: fixed;
	bottom: 2rem;
	right: 2rem;
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	color: white;
	width: 50px;
	height: 50px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
	transition: all 0.3s ease;
	cursor: pointer;
	z-index: 999;
}

#back-to-top:hover {
	transform: translateY(-5px) scale(1.1);
	box-shadow: 0 8px 25px rgba(102, 126, 234, 0.5);
}


/* ===============================================================
   WOOCOMMERCE BULMA STYLING - SEXY & MODERN
   =============================================================== */

/* Shop Page Header */
.woocommerce-products-header {
	margin-bottom: 3rem;
	padding: 2rem 0;
}

.woocommerce-products-header__title.page-title .gradient-text {
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	animation: gradientShift 3s ease infinite;
}

/* Product Cards */
.products .product-card {
	height: 100%;
	display: flex;
	flex-direction: column;
	transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
	overflow: hidden;
	border-radius: 8px;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.products .product-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 12px 30px rgba(102, 126, 234, 0.25);
}

/* Product Image */
.product-card .card-image {
	position: relative;
	overflow: hidden;
}

.product-card .card-image .image {
	transition: transform 0.4s ease;
}

.product-card:hover .card-image .image {
	transform: scale(1.05);
}

.product-card .card-image img {
	object-fit: cover;
	width: 100%;
	height: 100%;
}

/* Sale Badge */
.product-card .sale-badge {
	position: absolute;
	top: 1rem;
	right: 1rem;
	z-index: 10;
	font-weight: bold;
	animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
	0%, 100% {
		transform: scale(1);
	}
	50% {
		transform: scale(1.1);
	}
}

/* Product Title with Gradient Hover */
.product-card .product-title {
	margin-bottom: 1rem;
	transition: all 0.3s ease;
}

.product-card .product-title .gradient-hover {
	transition: all 0.3s ease;
	display: inline;
	background-size: 200% auto;
}

.product-card:hover .product-title .gradient-hover {
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	animation: gradientShift 3s ease infinite;
}

/* Product Price */
.product-card .product-price {
	color: #667eea !important;
	font-size: 1.5rem !important;
}

.product-card .product-price del {
	opacity: 0.5;
	font-size: 1.2rem;
	margin-right: 0.5rem;
}

.product-card .product-price ins {
	text-decoration: none;
	font-weight: 700;
}

/* Product Excerpt */
.product-card .product-excerpt {
	font-size: 0.95rem;
	line-height: 1.6;
	color: #6c757d;
	margin-top: 0.5rem;
}

/* Card Content */
.product-card .card-content {
	flex-grow: 1;
	display: flex;
	flex-direction: column;
}

.product-card .card-content .content {
	flex-grow: 1;
}

/* Card Footer Button */
.product-card .card-footer-item {
	border: none !important;
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	color: white !important;
	font-weight: 600;
	padding: 1.25rem 1rem;
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
}

.product-card .card-footer-item::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
	transition: left 0.4s ease;
	z-index: 0;
}

.product-card .card-footer-item:hover::before {
	left: 0;
}

.product-card .card-footer-item span {
	position: relative;
	z-index: 1;
	color: white !important;
}

.product-card .card-footer-item:hover {
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
}

/* Add to Cart Button Styling */
.woocommerce .button.add_to_cart_button,
.woocommerce .button.product_type_simple,
.woocommerce .button.product_type_variable {
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
	border: none !important;
	color: white !important;
	font-weight: 600;
	padding: 0.75rem 1.5rem;
	border-radius: 4px;
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
}

.woocommerce .button.add_to_cart_button::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
	transition: left 0.4s ease;
	z-index: 0;
}

.woocommerce .button.add_to_cart_button:hover::before {
	left: 0;
}

.woocommerce .button.add_to_cart_button:hover {
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
}

/* Single Product Page */
.woocommerce div.product {
	background: white;
	padding: 2rem;
	border-radius: 8px;
	box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.woocommerce div.product .product_title {
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	animation: gradientShift 3s ease infinite;
	font-size: 2.5rem !important;
	margin-bottom: 1.5rem;
}

.woocommerce div.product .price {
	color: #667eea;
	font-size: 2rem;
	font-weight: 700;
}

/* Cart & Checkout Buttons */
.woocommerce #respond input#submit,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button {
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
	color: white !important;
	border: none !important;
	border-radius: 4px;
	padding: 0.75rem 1.5rem;
	font-weight: 600;
	transition: all 0.3s ease;
}

.woocommerce #respond input#submit:hover,
.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover {
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
}

/* WooCommerce Messages */
.woocommerce-message,
.woocommerce-info,
.woocommerce-error {
	border-radius: 4px;
	padding: 1rem;
	margin-bottom: 1.5rem;
}

.woocommerce-message {
	background: #d4edda;
	border-left: 4px solid #28a745;
	color: #155724;
}

.woocommerce-info {
	background: #d1ecf1;
	border-left: 4px solid #17a2b8;
	color: #0c5460;
}

.woocommerce-error {
	background: #f8d7da;
	border-left: 4px solid #dc3545;
	color: #721c24;
}

/* Rating Stars */
.woocommerce .star-rating {
	color: #ffc107;
}

.woocommerce .star-rating::before {
	color: #e0e0e0;
}

/* Product Categories/Tags */
.woocommerce span.onsale {
	background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%) !important;
	color: white !important;
	border-radius: 4px;
	padding: 0.5rem 1rem;
	font-weight: 600;
	animation: pulse 2s ease-in-out infinite;
}

/* Quantity Input */
.woocommerce div.product form.cart .quantity {
	margin-right: 1rem;
}

.woocommerce div.product form.cart .quantity input {
	border: 2px solid #e0e0e0;
	border-radius: 4px;
	padding: 0.5rem;
	transition: border-color 0.3s ease;
}

.woocommerce div.product form.cart .quantity input:focus {
	border-color: #667eea;
	outline: none;
}

/* Product Animation */
.products .column {
	animation: slideInUp 0.6s ease-out backwards;
}

.products .column:nth-child(1) { animation-delay: 0.1s; }
.products .column:nth-child(2) { animation-delay: 0.2s; }
.products .column:nth-child(3) { animation-delay: 0.3s; }
.products .column:nth-child(4) { animation-delay: 0.4s; }
.products .column:nth-child(5) { animation-delay: 0.5s; }
.products .column:nth-child(6) { animation-delay: 0.6s; }

/* Responsive Adjustments */
@media screen and (max-width: 768px) {
	.products .column {
		padding: 0.75rem;
	}
	
	.woocommerce div.product .product_title {
		font-size: 1.75rem !important;
	}
	
	.product-card .product-price {
		font-size: 1.25rem !important;
	}
}

/* Cart Table Styling */
.woocommerce table.shop_table {
	border: 1px solid #e0e0e0;
	border-radius: 8px;
	overflow: hidden;
}

.woocommerce table.shop_table th {
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	color: white;
	font-weight: 600;
	padding: 1rem;
}

.woocommerce table.shop_table td {
	padding: 1rem;
	border-bottom: 1px solid #f0f0f0;
}

/* Remove WooCommerce Default Styles That Conflict */
.woocommerce ul.products li.product {
	padding: 0 !important;
	margin: 0 !important;
	width: 100% !important;
}

.woocommerce ul.products {
	list-style: none !important;
	padding: 0 !important;
	margin: 0 !important;
}

/*--------------------------------------------------------------
9.0 - WordPress Required CSS Classes
--------------------------------------------------------------*/

/* Screen Reader Text */
.screen-reader-text {
	border: 0;
	clip: rect(1px, 1px, 1px, 1px);
	clip-path: inset(50%);
	height: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute !important;
	width: 1px;
	word-wrap: normal !important;
}

.screen-reader-text:focus {
	background-color: #f1f1f1;
	border-radius: 3px;
	box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
	clip: auto !important;
	clip-path: none;
	color: #21759b;
	display: block;
	font-size: 0.875rem;
	font-weight: 700;
	height: auto;
	left: 5px;
	line-height: normal;
	padding: 15px 23px 14px;
	text-decoration: none;
	top: 5px;
	width: auto;
	z-index: 100000;
}

/* Alignment Classes */
.alignleft {
	float: left;
	margin: 0.5em 1.5em 1em 0;
}

.alignright {
	float: right;
	margin: 0.5em 0 1em 1.5em;
}

.aligncenter {
	display: block;
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 1em;
}

/* Caption Classes */
.wp-caption {
	max-width: 100%;
	margin-bottom: 1.5em;
}

.wp-caption img {
	display: block;
	margin: 0 auto;
	max-width: 100%;
	height: auto;
}

.wp-caption-text {
	margin: 0.5em 0;
	font-size: 0.875rem;
	font-style: italic;
	color: #666;
	text-align: center;
}

.gallery-caption {
	display: block;
	margin: 0.5em 0;
	font-size: 0.875rem;
	font-style: italic;
	color: #666;
	text-align: center;
}

/* Sticky Posts */
.sticky {
	position: relative;
}

.sticky::before {
	content: "📌 ";
	font-size: 1.2em;
	margin-right: 0.5em;
}

/* Post Author Badge */
.bypostauthor {
	position: relative;
}

.bypostauthor > article .comment-author::after {
	content: " ✓";
	color: #667eea;
	font-weight: bold;
}

