/* ================================================================
   FLARE INTERNATIONAL - COMPONENTS
   Cards, grids, FAQ accordion, badges, and page sections
   ================================================================ */

/* ── SERVICE CARDS GRID ── */

.services-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1px;
	background: rgba(108, 171, 182, 0.15);
	border: 1px solid rgba(108, 171, 182, 0.15);
	border-radius: 8px;
	overflow: hidden;
	margin-top: 56px;
}

.service-item {
	background: var(--white);
	padding: 40px 32px;
	transition: background var(--transition);
	position: relative;
	overflow: hidden;
}

.service-item::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 3px;
	height: 0;
	background: linear-gradient(180deg, var(--peach-warm), var(--peach-deep));
	transition: height 0.35s ease;
}

.service-item:hover {
	background: var(--off-white);
}

.service-item:hover::after {
	height: 100%;
}

.service-icon {
	width: 52px;
	height: 52px;
	background: linear-gradient(135deg, rgba(15, 58, 74, 0.06), rgba(108, 171, 182, 0.12));
	border-radius: 8px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 20px;
	font-size: 22px;
}

.service-item h3 {
	font-family: var(--font-primary);
	font-size: 19px;
	font-weight: 600;
	color: var(--teal-deep);
	margin-bottom: 10px;
}

.service-item p {
	font-size: 14px;
	color: var(--text-secondary);
	line-height: 1.75;
	font-weight: 300;
}

.service-item .service-link {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	margin-top: 16px;
	font-family: var(--font-primary);
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--teal-blue);
	text-decoration: none;
	transition: gap var(--transition), color var(--transition);
}

.service-item .service-link:hover {
	gap: 10px;
	color: var(--peach-warm);
}

/* ── PARALLAX BACKGROUND ── */

.parallax-section {
	padding: 96px 0;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	background-attachment: fixed;
}

.parallax-bg {
	display: none;
}

.parallax-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(10, 36, 48, 0.88) 0%, rgba(15, 58, 74, 0.82) 100%);
	z-index: 1;
}

/* iOS/mobile: background-attachment:fixed doesn't work, fall back to scroll */
@supports (-webkit-touch-callout: none) {
	.parallax-section {
		background-attachment: scroll;
	}
}

@media (max-width: 768px) {
	.parallax-section {
		background-attachment: scroll;
	}
}

/* ── PERSONA GRID (Who We Serve) ── */

.persona-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
	margin-top: 56px;
}

.persona-item {
	display: flex;
	align-items: center;
	gap: 16px;
	padding: 22px 24px;
	background: rgba(255, 255, 255, 0.06);
	border-radius: 10px;
	border: 1px solid rgba(108, 171, 182, 0.15);
	backdrop-filter: blur(4px);
	transition: all var(--transition);
}

.persona-item:hover {
	border-color: rgba(254, 187, 138, 0.35);
	transform: translateY(-2px);
	background: rgba(255, 255, 255, 0.1);
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.persona-icon {
	width: 48px;
	height: 48px;
	background: linear-gradient(135deg, rgba(254, 187, 138, 0.15), rgba(220, 149, 130, 0.2));
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	transition: background var(--transition);
}

.persona-item:hover .persona-icon {
	background: linear-gradient(135deg, rgba(254, 187, 138, 0.3), rgba(220, 149, 130, 0.35));
}

.persona-item span {
	font-family: var(--font-primary);
	font-size: 16px;
	font-weight: 500;
	color: #ffffff;
	line-height: 1.4;
}

/* ── PROCESS SECTION ── */

.process-section {
	background: var(--teal-deep);
	padding: 96px 0;
}

.process-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 80px;
	align-items: start;
	margin-top: 56px;
}

.process-steps {
	display: flex;
	flex-direction: column;
	gap: 36px;
}

.process-step {
	display: flex;
	gap: 20px;
	align-items: flex-start;
}

.step-num {
	font-family: var(--font-primary);
	font-size: 36px;
	font-weight: 300;
	color: rgba(254, 187, 138, 0.25);
	line-height: 1;
	min-width: 40px;
}

.step-content h4 {
	font-family: var(--font-primary);
	font-size: 17px;
	font-weight: 600;
	color: #ffffff;
	margin-bottom: 6px;
}

.step-content p {
	font-size: 14px;
	color: rgba(245, 245, 245, 0.7);
	line-height: 1.75;
	font-weight: 300;
}

/* Process card stack visual */
.process-cards {
	position: relative;
	height: 380px;
}

.process-card {
	position: absolute;
	width: 100%;
	background: rgba(255, 255, 255, 0.04);
	border: 1px solid rgba(108, 171, 182, 0.15);
	border-radius: 10px;
	padding: 32px;
	backdrop-filter: blur(8px);
}

.process-card:nth-child(1) { top: 0; z-index: 3; }
.process-card:nth-child(2) { top: 20px; left: 12px; z-index: 2; opacity: 0.7; }
.process-card:nth-child(3) { top: 40px; left: 24px; z-index: 1; opacity: 0.4; }

/* ── FAQ ACCORDION ── */

.faq-section {
	background: linear-gradient(180deg, var(--teal-deep), var(--dark));
	padding: 96px 0;
}

.faq-grid {
	display: grid;
	grid-template-columns: 340px 1fr;
	gap: 80px;
	align-items: start;
}

.faq-sidebar {
	position: sticky;
	top: 110px;
}

.faq-list {
	display: flex;
	flex-direction: column;
	gap: 2px;
}

.faq-item {
	border-bottom: 1px solid rgba(108, 171, 182, 0.1);
}

.faq-question {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 26px 0;
	cursor: pointer;
	font-family: var(--font-primary);
	font-size: 19px;
	font-weight: 400;
	color: #ffffff;
	background: none;
	border: none;
	width: 100%;
	text-align: left;
	transition: color var(--transition);
}

.faq-question:hover {
	color: var(--peach-warm);
}

.faq-question .faq-icon {
	font-size: 20px;
	color: var(--teal-blue);
	transition: transform 0.3s ease;
	flex-shrink: 0;
	margin-left: 16px;
}

.faq-item.active .faq-icon {
	transform: rotate(45deg);
}

.faq-answer {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.35s ease, padding 0.35s ease;
}

.faq-item.active .faq-answer {
	max-height: 300px;
	padding-bottom: 22px;
}

.faq-answer p {
	font-size: 16px;
	color: rgba(245, 245, 245, 0.7);
	line-height: 1.8;
	font-weight: 300;
}

/* ── FEATURE CARDS ── */

.feature-card {
	background: var(--white);
	border: 1px solid rgba(108, 171, 182, 0.12);
	border-radius: 8px;
	padding: 36px 28px;
	transition: all var(--transition);
}

.feature-card:hover {
	border-color: rgba(254, 187, 138, 0.25);
	transform: translateY(-2px);
	box-shadow: 0 8px 24px rgba(15, 58, 74, 0.08);
}

.feature-card-icon {
	width: 48px;
	height: 48px;
	background: linear-gradient(135deg, rgba(15, 58, 74, 0.06), rgba(108, 171, 182, 0.12));
	border-radius: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 20px;
	font-size: 20px;
}

.feature-card h3 {
	font-family: var(--font-primary);
	font-size: 17px;
	font-weight: 600;
	color: var(--teal-deep);
	margin-bottom: 8px;
}

.feature-card p {
	font-size: 14px;
	color: var(--text-secondary);
	line-height: 1.75;
	font-weight: 300;
}

/* Dark variant */
.feature-card.on-dark {
	background: rgba(255, 255, 255, 0.04);
	border-color: rgba(108, 171, 182, 0.15);
}

.feature-card.on-dark:hover {
	border-color: rgba(254, 187, 138, 0.25);
}

.feature-card.on-dark h3 {
	color: #ffffff;
}

.feature-card.on-dark p {
	color: rgba(245, 245, 245, 0.7);
}

/* ── PERSONA / WHY CARDS ── */

.why-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 16px;
}

.why-card {
	background: rgba(255, 255, 255, 0.04);
	border: 1px solid rgba(108, 171, 182, 0.12);
	border-radius: 8px;
	padding: 28px 24px;
	transition: border-color var(--transition);
}

.why-card:hover {
	border-color: rgba(254, 187, 138, 0.2);
}

.why-card.featured {
	grid-column: 1 / -1;
	background: linear-gradient(135deg, rgba(254, 187, 138, 0.06), rgba(108, 171, 182, 0.04));
}

.why-card h4 {
	font-family: var(--font-primary);
	font-size: 15px;
	font-weight: 600;
	color: var(--peach-warm);
	margin-bottom: 6px;
}

.why-card p {
	font-size: 14px;
	color: rgba(245, 245, 245, 0.7);
	line-height: 1.7;
	font-weight: 300;
}

/* ── ABOUT / FOUNDER SECTION ── */

.about-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 80px;
	align-items: center;
}

.about-image-frame {
	aspect-ratio: 4/5;
	border-radius: 10px;
	overflow: hidden;
	border: 1px solid rgba(108, 171, 182, 0.12);
}

.about-image-frame img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/* ── COMMUNITY SECTION ── */

.community-section {
	background: linear-gradient(180deg, var(--dark), #06141c);
	padding: 96px 0;
}

.community-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 80px;
	align-items: start;
}

.community-features {
	display: flex;
	flex-direction: column;
	gap: 32px;
}

.community-feature {
	display: flex;
	gap: 16px;
	align-items: flex-start;
}

.community-feature-icon {
	width: 40px;
	height: 40px;
	background: rgba(108, 171, 182, 0.1);
	border-radius: 8px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	font-size: 18px;
}

.community-feature h4 {
	font-family: var(--font-primary);
	font-size: 15px;
	font-weight: 600;
	color: #ffffff;
	margin-bottom: 4px;
}

.community-feature p {
	font-size: 14px;
	color: rgba(245, 245, 245, 0.6);
	line-height: 1.7;
	font-weight: 300;
}

/* Discord card */
.discord-card {
	background: rgba(88, 101, 242, 0.08);
	border: 1px solid rgba(88, 101, 242, 0.2);
	border-radius: 12px;
	padding: 40px;
}

.discord-card h3 {
	font-family: var(--font-primary);
	font-size: 22px;
	font-weight: 600;
	color: #ffffff;
	margin-bottom: 12px;
}

.discord-card p {
	font-size: 15px;
	color: rgba(245, 245, 245, 0.7);
	line-height: 1.7;
	margin-bottom: 28px;
}

/* ── TECH / LABS CARDS ── */

.tech-badge {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 12px 24px 12px 20px;
	background: transparent;
	border: none;
	border-left: 3px solid var(--teal-mid);
	border-radius: 0;
	font-family: var(--font-primary);
	font-size: 16px;
	font-weight: 700;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--teal-mid);
	position: relative;
}

.tech-badge::before {
	content: '';
	position: absolute;
	left: 3px;
	top: 0;
	bottom: 0;
	width: 100%;
	background: linear-gradient(90deg, rgba(19, 161, 200, 0.1), transparent 70%);
	pointer-events: none;
}

.tech-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
	margin-top: 56px;
}

.tech-card {
	background: var(--white);
	border: 1px solid rgba(108, 171, 182, 0.2);
	border-radius: 10px;
	padding: 32px 28px;
	transition: all var(--transition);
}

.tech-card:hover {
	border-color: rgba(19, 161, 200, 0.5);
	transform: translateY(-2px);
	box-shadow: 0 8px 24px rgba(15, 58, 74, 0.08);
}

.tech-card.featured {
	grid-column: span 2;
	background: linear-gradient(135deg, rgba(15, 58, 74, 0.03), rgba(108, 171, 182, 0.08));
	border-color: rgba(19, 161, 200, 0.25);
}

.tech-card h3 {
	font-family: var(--font-primary);
	font-size: 18px;
	font-weight: 600;
	color: var(--teal-deep);
	margin-bottom: 8px;
}

.tech-card p {
	font-size: 15px;
	color: var(--text-secondary);
	line-height: 1.75;
	font-weight: 400;
}

/* Dark background variant */
.section-dark .tech-card {
	background: rgba(255, 255, 255, 0.06);
	border-color: rgba(108, 171, 182, 0.18);
}

.section-dark .tech-card:hover {
	border-color: rgba(19, 161, 200, 0.4);
	background: rgba(255, 255, 255, 0.1);
	box-shadow: none;
}

.section-dark .tech-card h3 {
	color: #ffffff;
}

.section-dark .tech-card p {
	color: rgba(245, 245, 245, 0.85);
}

/* ── TEAM CARDS ── */

.flare-team-grid {
	max-width: 1160px;
}

.flare-team-grid > div {
	min-width: 0;
}

.flare-team-grid p {
	font-size: 12px !important;
	white-space: normal;
	overflow-wrap: break-word;
}

/* ── BLOG CARDS ── */

.blog-card {
	background: var(--white);
	border: 1px solid rgba(108, 171, 182, 0.1);
	border-radius: 8px;
	overflow: hidden;
	transition: all var(--transition);
	display: flex;
	flex-direction: column;
	height: 100%;
}

.blog-card:hover {
	transform: translateY(-3px);
	box-shadow: 0 8px 24px rgba(15, 58, 74, 0.1);
}

.blog-card-image {
	aspect-ratio: 16/9;
	overflow: hidden;
}

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

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

.blog-card-body {
	padding: 24px;
	flex: 1;
	display: flex;
	flex-direction: column;
}

.blog-card-body .wp-block-post-excerpt {
	margin-top: auto;
}

.blog-card-meta {
	font-family: var(--font-primary);
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--teal-blue);
	margin-bottom: 10px;
}

.blog-card-body h3 {
	font-family: var(--font-primary);
	font-size: 18px;
	font-weight: 600;
	color: var(--teal-deep);
	margin-bottom: 8px;
	line-height: 1.3;
}

.blog-card-body h3 a {
	color: inherit;
	text-decoration: none;
	transition: color var(--transition);
}

.blog-card-body h3 a:hover {
	color: var(--teal-blue);
}

.blog-card-body p {
	font-size: 14px;
	color: var(--text-secondary);
	line-height: 1.7;
	font-weight: 300;
}

/* ── PAGINATION ── */

.flare-pagination {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	gap: 8px;
	padding-top: 60px;
}

.flare-pagination .wp-block-query-pagination-numbers {
	display: flex;
	gap: 8px;
}

.flare-pagination a,
.flare-pagination span.page-numbers {
	display: flex;
	align-items: center;
	justify-content: center;
	min-width: 40px;
	height: 40px;
	padding: 0 12px;
	border-radius: 4px;
	font-family: var(--font-primary);
	font-size: 14px;
	font-weight: 600;
	text-decoration: none;
	transition: all var(--transition);
}

.flare-pagination a {
	background: var(--white);
	color: var(--teal-deep);
	border: 1px solid rgba(108, 171, 182, 0.15);
}

.flare-pagination a:hover {
	background: var(--teal-blue);
	color: #ffffff;
}

.flare-pagination .current {
	background: var(--teal-deep);
	color: #ffffff;
}

/* ── FORM STYLING ── */

.flare-form input,
.flare-form textarea,
.flare-form select {
	width: 100%;
	padding: 14px 18px;
	font-family: var(--font-body);
	font-size: 15px;
	font-weight: 400;
	color: var(--teal-deep);
	background: var(--white);
	border: 1.5px solid rgba(108, 171, 182, 0.25);
	border-radius: 4px;
	transition: border-color var(--transition), box-shadow var(--transition);
}

.flare-form input:focus,
.flare-form textarea:focus,
.flare-form select:focus {
	outline: none;
	border-color: var(--teal-blue);
	box-shadow: 0 0 0 3px rgba(108, 171, 182, 0.15);
}

.flare-form label {
	display: block;
	font-family: var(--font-primary);
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--text-body);
	margin-bottom: 8px;
}


/* ── BLOG SEARCH & FILTER ── */

.blog-search-wrap {
	max-width: 1160px;
	margin: 0 auto;
	padding: 0 40px 48px;
}

.blog-search-input-wrap {
	position: relative;
	margin-bottom: 20px;
}

.blog-search-input-wrap svg {
	position: absolute;
	left: 18px;
	top: 50%;
	transform: translateY(-50%);
	color: var(--teal-blue);
	pointer-events: none;
}

#blog-search {
	width: 100%;
	padding: 14px 48px 14px 50px;
	font-family: var(--font-body);
	font-size: 15px;
	font-weight: 400;
	color: var(--teal-deep);
	background: var(--white);
	border: 1.5px solid rgba(108, 171, 182, 0.3);
	border-radius: 40px;
	transition: border-color var(--transition), box-shadow var(--transition);
	box-sizing: border-box;
}

#blog-search:focus {
	outline: none;
	border-color: var(--teal-blue);
	box-shadow: 0 0 0 3px rgba(108, 171, 182, 0.15);
}

#blog-search::placeholder {
	color: rgba(15, 58, 74, 0.35);
}

#blog-search-clear {
	position: absolute;
	right: 14px;
	top: 50%;
	transform: translateY(-50%);
	display: none;
	align-items: center;
	justify-content: center;
	width: 28px;
	height: 28px;
	border: none;
	background: rgba(108, 171, 182, 0.12);
	border-radius: 50%;
	cursor: pointer;
	color: var(--teal-deep);
	transition: background var(--transition);
	padding: 0;
}

#blog-search-clear:hover {
	background: rgba(108, 171, 182, 0.25);
}

.blog-filter-row {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	align-items: center;
}

#blog-country-filter,
#blog-year-filter {
	padding: 7px 32px 7px 14px;
	font-family: var(--font-primary);
	font-size: 13px;
	font-weight: 600;
	color: var(--teal-deep);
	background: var(--white);
	border: 1.5px solid rgba(108, 171, 182, 0.35);
	border-radius: 40px;
	cursor: pointer;
	transition: all var(--transition);
	appearance: none;
	-webkit-appearance: none;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%230F3A4A' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right 12px center;
}

#blog-country-filter:hover,
#blog-year-filter:hover {
	border-color: var(--teal-blue);
	background-color: rgba(108, 171, 182, 0.04);
}

#blog-country-filter:focus,
#blog-year-filter:focus {
	outline: none;
	border-color: var(--teal-blue);
	box-shadow: 0 0 0 3px rgba(108, 171, 182, 0.15);
}

.blog-filter-separator {
	width: 1px;
	height: 24px;
	background: rgba(108, 171, 182, 0.2);
}

#blog-filters {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	align-items: center;
}

.blog-filter-btn {
	padding: 7px 16px;
	font-family: var(--font-primary);
	font-size: 13px;
	font-weight: 600;
	letter-spacing: 0.02em;
	color: var(--teal-deep);
	background: var(--white);
	border: 1.5px solid rgba(108, 171, 182, 0.35);
	border-radius: 40px;
	cursor: pointer;
	transition: all var(--transition);
	white-space: nowrap;
}

.blog-filter-btn:hover {
	border-color: var(--teal-blue);
	background: rgba(108, 171, 182, 0.08);
}

.blog-filter-btn.active {
	background: var(--teal-deep);
	border-color: var(--teal-deep);
	color: #ffffff;
}

#blog-results-info {
	font-family: var(--font-body);
	font-size: 13px;
	color: var(--text-secondary);
	margin-bottom: 24px;
	min-height: 20px;
}

#blog-results-info strong {
	color: var(--teal-deep);
	font-weight: 600;
}

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

/* Loading dots */
.blog-loading {
	grid-column: 1 / -1;
	display: flex;
	justify-content: center;
	gap: 8px;
	padding: 80px 0;
}

.blog-loading span {
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background: var(--teal-blue);
	animation: blog-bounce 1s ease-in-out infinite;
}

.blog-loading span:nth-child(2) { animation-delay: 0.15s; }
.blog-loading span:nth-child(3) { animation-delay: 0.3s; }

@keyframes blog-bounce {
	0%, 100% { opacity: 0.3; transform: scale(0.8); }
	50%       { opacity: 1;   transform: scale(1); }
}

.blog-no-results {
	grid-column: 1 / -1;
	text-align: center;
	padding: 80px 0;
	font-family: var(--font-body);
	font-size: 15px;
	color: var(--text-secondary);
}

#blog-dynamic-results {
	display: none;
}

@media (max-width: 1024px) {
	.blog-grid-inner {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 600px) {
	.blog-search-wrap {
		padding: 0 20px 40px;
	}

	.blog-grid-inner {
		grid-template-columns: 1fr;
	}

	.blog-filter-row {
		flex-direction: column;
		align-items: stretch;
	}

	.blog-filter-separator {
		display: none;
	}

	#blog-country-filter,
	#blog-year-filter {
		width: 100%;
	}
}

/* ── WOOCOMMERCE MY ACCOUNT ── */

/* My Account page layout - override WordPress global padding + WooCommerce floats */
.woocommerce-account .wp-site-blocks {
	padding-left: 0 !important;
	padding-right: 0 !important;
}

.woocommerce-account .wp-block-post-content {
	padding-top: 100px !important;
	padding-bottom: 60px !important;
}

/* Only apply grid when logged in (nav sidebar exists) */
.woocommerce-account .woocommerce:has(.woocommerce-MyAccount-navigation) {
	max-width: 1100px !important;
	width: 100% !important;
	margin: 0 auto !important;
	padding: 0 40px !important;
	display: grid !important;
	grid-template-columns: 240px 1fr !important;
	gap: 48px !important;
	align-items: start !important;
}

/* Login / Register page styling */
.woocommerce-account .woocommerce:has(#customer_login) {
	max-width: 800px !important;
	margin: 0 auto !important;
	padding: 0 40px !important;
}

.woocommerce-account #customer_login {
	display: grid !important;
	grid-template-columns: 1fr 1fr !important;
	gap: 40px !important;
	width: 100% !important;
}

.woocommerce-account #customer_login::before,
.woocommerce-account #customer_login::after {
	content: none !important;
	display: none !important;
}

.woocommerce-account #customer_login h2 {
	font-family: var(--font-primary) !important;
	font-size: 24px !important;
	font-weight: 300 !important;
	color: var(--teal-deep) !important;
	margin-bottom: 24px !important;
}

.woocommerce-account #customer_login .u-column1,
.woocommerce-account #customer_login .u-column2,
.woocommerce-account #customer_login .col-1,
.woocommerce-account #customer_login .col-2,
.woocommerce-account .col2-set .col-1,
.woocommerce-account .col2-set .col-2 {
	float: none !important;
	width: 100% !important;
	max-width: 100% !important;
	padding: 32px !important;
	background: var(--white) !important;
	border: 1px solid rgba(108, 171, 182, 0.12) !important;
	border-radius: 10px !important;
	margin: 0 !important;
}

.woocommerce-account #customer_login input[type="text"],
.woocommerce-account #customer_login input[type="password"],
.woocommerce-account #customer_login input[type="email"] {
	width: 100% !important;
	padding: 12px 16px !important;
	font-family: var(--font-body) !important;
	font-size: 14px !important;
	color: var(--teal-deep) !important;
	background: var(--off-white) !important;
	border: 1.5px solid rgba(108, 171, 182, 0.2) !important;
	border-radius: 4px !important;
	margin-bottom: 16px !important;
}

.woocommerce-account #customer_login input:focus {
	outline: none !important;
	border-color: var(--teal-blue) !important;
	box-shadow: 0 0 0 3px rgba(108, 171, 182, 0.15) !important;
}

.woocommerce-account #customer_login label {
	font-family: var(--font-primary) !important;
	font-size: 12px !important;
	font-weight: 600 !important;
	letter-spacing: 0.06em !important;
	text-transform: uppercase !important;
	color: var(--text-body) !important;
	margin-bottom: 6px !important;
	display: block !important;
}

.woocommerce-account #customer_login .button {
	width: 100% !important;
	padding: 12px 24px !important;
	font-family: var(--font-primary) !important;
	font-size: 13px !important;
	font-weight: 600 !important;
	letter-spacing: 0.08em !important;
	text-transform: uppercase !important;
	background: linear-gradient(135deg, var(--peach-warm), var(--peach-deep)) !important;
	color: var(--teal-deep) !important;
	border: none !important;
	border-radius: 3px !important;
	cursor: pointer !important;
	transition: all 0.25s ease !important;
}

.woocommerce-account #customer_login .button:hover {
	transform: translateY(-2px) !important;
	box-shadow: 0 8px 24px rgba(254, 187, 138, 0.3) !important;
}

.woocommerce-MyAccount-navigation {
	float: none !important;
	width: 100% !important;
	position: sticky !important;
	top: 90px !important;
	margin: 0 !important;
}

.woocommerce-MyAccount-navigation ul {
	list-style: none !important;
	margin: 0 !important;
	padding: 10px !important;
	display: flex !important;
	flex-direction: column !important;
	gap: 2px !important;
	background: var(--white) !important;
	border-radius: 10px !important;
	border: 1px solid rgba(108, 171, 182, 0.12) !important;
	box-shadow: 0 2px 16px rgba(15, 58, 74, 0.05) !important;
}

.woocommerce-MyAccount-navigation ul li {
	margin: 0 !important;
	padding: 0 !important;
}

.woocommerce-MyAccount-navigation ul li a {
	display: block !important;
	padding: 12px 18px !important;
	font-family: var(--font-primary) !important;
	font-size: 14px !important;
	font-weight: 500 !important;
	color: var(--text-body) !important;
	text-decoration: none !important;
	border-radius: 6px !important;
	transition: all 0.2s ease !important;
	white-space: nowrap !important;
}

.woocommerce-MyAccount-navigation ul li a:hover {
	background: rgba(108, 171, 182, 0.08) !important;
	color: var(--teal-deep) !important;
}

.woocommerce-MyAccount-navigation ul li.is-active a {
	background: var(--teal-deep) !important;
	color: #ffffff !important;
}

.woocommerce-MyAccount-content {
	float: none !important;
	width: 100% !important;
	min-width: 0 !important;
	margin: 0 !important;
}

.woocommerce-MyAccount-content p {
	font-family: var(--font-body);
	font-size: 15px;
	line-height: 1.7;
	color: var(--text-body);
}

.woocommerce-MyAccount-content a {
	color: var(--teal-blue);
	text-decoration: none;
	font-weight: 500;
}

.woocommerce-MyAccount-content a:hover {
	color: var(--peach-warm);
}

/* Tables (orders, subscriptions) */
.woocommerce-MyAccount-content table.woocommerce-orders-table,
.woocommerce-MyAccount-content table.shop_table,
.woocommerce-MyAccount-content table {
	width: 100%;
	border-collapse: collapse;
	font-family: var(--font-body);
	font-size: 14px;
}

.woocommerce-MyAccount-content table th {
	background: var(--teal-deep);
	color: #ffffff;
	font-family: var(--font-primary);
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	padding: 12px 16px;
	text-align: left;
}

.woocommerce-MyAccount-content table th:first-child {
	border-radius: 6px 0 0 0;
}

.woocommerce-MyAccount-content table th:last-child {
	border-radius: 0 6px 0 0;
}

.woocommerce-MyAccount-content table td {
	padding: 14px 16px;
	border-bottom: 1px solid rgba(108, 171, 182, 0.1);
	color: var(--text-body);
	vertical-align: middle;
}

.woocommerce-MyAccount-content table tr:hover td {
	background: rgba(108, 171, 182, 0.03);
}

/* Buttons in My Account */
.woocommerce-MyAccount-content .woocommerce-button,
.woocommerce-MyAccount-content .button,
.woocommerce-MyAccount-content button[type="submit"] {
	display: inline-block;
	padding: 10px 24px;
	font-family: var(--font-primary);
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	text-decoration: none;
	border-radius: 3px;
	cursor: pointer;
	transition: all 0.25s ease;
	border: none;
	background: var(--teal-deep);
	color: #ffffff;
}

.woocommerce-MyAccount-content .woocommerce-button:hover,
.woocommerce-MyAccount-content .button:hover,
.woocommerce-MyAccount-content button[type="submit"]:hover {
	background: var(--teal-blue);
	transform: translateY(-1px);
	box-shadow: 0 4px 16px rgba(108, 171, 182, 0.3);
}

.woocommerce-MyAccount-content .woocommerce-button.woocommerce-button--previous,
.woocommerce-MyAccount-content .button.cancel {
	background: transparent;
	border: 1.5px solid var(--teal-blue);
	color: var(--teal-blue);
}

/* Form fields in My Account */
.woocommerce-MyAccount-content .woocommerce-EditAccountForm input,
.woocommerce-MyAccount-content .woocommerce-address-fields input,
.woocommerce-MyAccount-content .woocommerce-EditAccountForm select,
.woocommerce-MyAccount-content .woocommerce-address-fields select {
	width: 100%;
	padding: 12px 16px;
	font-family: var(--font-body);
	font-size: 14px;
	color: var(--teal-deep);
	background: var(--white);
	border: 1.5px solid rgba(108, 171, 182, 0.25);
	border-radius: 4px;
	transition: border-color 0.25s ease;
}

.woocommerce-MyAccount-content .woocommerce-EditAccountForm input:focus,
.woocommerce-MyAccount-content .woocommerce-address-fields input:focus {
	outline: none;
	border-color: var(--teal-blue);
	box-shadow: 0 0 0 3px rgba(108, 171, 182, 0.15);
}

.woocommerce-MyAccount-content label {
	display: block;
	font-family: var(--font-primary);
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--text-body);
	margin-bottom: 6px;
}

/* Notices */
.woocommerce-message,
.woocommerce-info {
	background: rgba(108, 171, 182, 0.08) !important;
	border: 1px solid rgba(108, 171, 182, 0.2) !important;
	border-left: 4px solid var(--teal-blue) !important;
	color: var(--text-body) !important;
	padding: 14px 20px !important;
	border-radius: 4px !important;
	font-family: var(--font-body) !important;
	font-size: 14px !important;
	margin-bottom: 24px !important;
}

.woocommerce-error {
	background: rgba(220, 149, 130, 0.08) !important;
	border: 1px solid rgba(220, 149, 130, 0.2) !important;
	border-left: 4px solid var(--peach-deep) !important;
}

/* Subscription cancel button */
.wps_sfw_cancel_btn,
a[href*="wps_subscription_status=cancel"] {
	display: inline-block;
	padding: 8px 20px;
	background: transparent;
	border: 1.5px solid var(--peach-deep);
	color: var(--peach-deep);
	border-radius: 3px;
	font-family: var(--font-primary);
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	text-decoration: none;
	transition: all 0.25s ease;
}

.wps_sfw_cancel_btn:hover,
a[href*="wps_subscription_status=cancel"]:hover {
	background: var(--peach-deep);
	color: #ffffff;
}

/* Responsive */
@media (max-width: 768px) {
	.woocommerce-account .woocommerce:has(.woocommerce-MyAccount-navigation) {
		grid-template-columns: 1fr !important;
		padding: 0 20px !important;
		gap: 24px !important;
	}

	.woocommerce-account #customer_login {
		grid-template-columns: 1fr !important;
	}

	.woocommerce-account .wp-block-post-content {
		padding-top: 80px !important;
	}

	.woocommerce-MyAccount-navigation {
		position: static !important;
	}

	.woocommerce-MyAccount-navigation ul {
		flex-direction: row !important;
		flex-wrap: wrap !important;
	}

	.woocommerce-MyAccount-navigation ul li a {
		padding: 8px 14px !important;
		font-size: 12px !important;
		white-space: nowrap !important;
	}

	.woocommerce-MyAccount-content table {
		font-size: 13px;
	}

	.woocommerce-MyAccount-content table th,
	.woocommerce-MyAccount-content table td {
		padding: 10px 12px;
	}
}


/* ================================================================
   PRIVACY & COOKIE POLICY PAGE
   ================================================================ */

.privacy-page {
	background: var(--off-white);
}

.privacy-hero {
	background: var(--teal-deep);
	padding: 80px 40px 70px;
	position: relative;
	overflow: hidden;
}

.privacy-hero::before {
	content: '';
	position: absolute;
	top: -80px;
	right: -80px;
	width: 380px;
	height: 380px;
	border-radius: 50%;
	background: rgba(108, 171, 182, 0.07);
	pointer-events: none;
}

.privacy-hero::after {
	content: '';
	position: absolute;
	bottom: -50px;
	left: 8%;
	width: 220px;
	height: 220px;
	border-radius: 50%;
	background: rgba(254, 187, 138, 0.05);
	pointer-events: none;
}

.privacy-hero-inner {
	max-width: 1160px;
	margin: 0 auto;
	position: relative;
	z-index: 1;
}

.privacy-badge {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: rgba(108, 171, 182, 0.12);
	border: 1px solid rgba(108, 171, 182, 0.28);
	color: var(--teal-blue);
	font-family: var(--font-primary);
	font-size: 10px;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	padding: 6px 14px;
	border-radius: 2px;
	margin-bottom: 22px;
}

.privacy-badge-dot {
	width: 5px;
	height: 5px;
	border-radius: 50%;
	background: var(--peach-warm);
	flex-shrink: 0;
}

.privacy-hero-title {
	font-family: var(--font-primary);
	font-size: clamp(34px, 5vw, 62px);
	font-weight: 300;
	color: #ffffff;
	line-height: 1.08;
	margin: 0 0 18px;
	letter-spacing: -0.01em;
}

.privacy-hero-title strong {
	font-weight: 700;
	color: var(--teal-blue);
}

.privacy-hero-meta {
	font-family: var(--font-body);
	font-size: 13px;
	color: rgba(255, 255, 255, 0.45);
	margin: 0;
	letter-spacing: 0.01em;
}

/* Layout */
.privacy-content-wrap {
	max-width: 1160px;
	margin: 0 auto;
	padding: 64px 40px 90px;
	display: grid;
	grid-template-columns: 220px 1fr;
	gap: 64px;
	align-items: start;
}

/* TOC Sidebar */
.privacy-toc {
	position: sticky;
	top: 110px;
}

.privacy-toc-label {
	font-family: var(--font-primary);
	font-size: 9.5px;
	font-weight: 700;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--teal-blue);
	margin-bottom: 14px;
}

.privacy-toc-list {
	list-style: none;
	padding: 0;
	margin: 0;
	border-left: 2px solid rgba(108, 171, 182, 0.18);
}

.privacy-toc-list li {
	margin: 0;
}

.privacy-toc-list a {
	display: block;
	padding: 6px 14px;
	font-family: var(--font-body);
	font-size: 12px;
	font-weight: 400;
	color: var(--text-secondary);
	text-decoration: none;
	line-height: 1.45;
	transition: all 0.2s;
	border-left: 2px solid transparent;
	margin-left: -2px;
}

.privacy-toc-list a:hover {
	color: var(--teal-deep);
	border-left-color: var(--peach-warm);
	padding-left: 18px;
}

/* Main Content */
.privacy-main {
	min-width: 0;
}

.privacy-section {
	margin-bottom: 52px;
	padding-bottom: 52px;
	border-bottom: 1px solid rgba(108, 171, 182, 0.14);
}

.privacy-section:last-child {
	border-bottom: none;
	margin-bottom: 0;
	padding-bottom: 0;
}

.privacy-section-header {
	display: flex;
	align-items: center;
	gap: 14px;
	margin-bottom: 22px;
}

.privacy-section-num {
	font-family: var(--font-primary);
	font-size: 11px;
	font-weight: 700;
	color: var(--teal-blue);
	letter-spacing: 0.1em;
	flex-shrink: 0;
	background: rgba(108, 171, 182, 0.1);
	border: 1px solid rgba(108, 171, 182, 0.2);
	padding: 3px 9px;
	border-radius: 2px;
}

.privacy-section-title {
	font-family: var(--font-primary);
	font-size: clamp(19px, 2.2vw, 24px);
	font-weight: 600;
	color: var(--teal-deep);
	line-height: 1.2;
	margin: 0;
}

/* Body text */
.privacy-body {
	font-family: var(--font-body);
	font-size: 14.5px;
	line-height: 1.9;
	color: var(--text-body);
}

.privacy-body p {
	margin: 0 0 14px;
}

.privacy-body p:last-child {
	margin-bottom: 0;
}

.privacy-body strong {
	color: var(--teal-deep);
	font-weight: 600;
}

.privacy-body h3 {
	font-family: var(--font-primary);
	font-size: 12.5px;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--teal-deep);
	margin: 30px 0 12px;
	display: flex;
	align-items: center;
	gap: 10px;
}

.privacy-body h3::before {
	content: '';
	width: 18px;
	height: 2px;
	background: linear-gradient(90deg, var(--peach-warm), var(--peach-deep));
	border-radius: 2px;
	flex-shrink: 0;
}

.privacy-body ul {
	margin: 0 0 14px;
	padding: 0;
	list-style: none;
}

.privacy-body ul li {
	position: relative;
	padding-left: 18px;
	margin-bottom: 8px;
}

.privacy-body ul li::before {
	content: '';
	position: absolute;
	left: 0;
	top: 11px;
	width: 7px;
	height: 2px;
	background: var(--peach-warm);
	border-radius: 2px;
}

.privacy-body a {
	color: var(--teal-mid);
	text-decoration: none;
	border-bottom: 1px solid rgba(19, 161, 200, 0.28);
	transition: border-color 0.2s;
}

.privacy-body a:hover {
	border-bottom-color: var(--teal-mid);
}

/* Tables */
.privacy-table {
	width: 100%;
	border-collapse: collapse;
	margin: 20px 0;
	font-family: var(--font-body);
	font-size: 13px;
	border-radius: 6px;
	overflow: hidden;
	box-shadow: 0 1px 6px rgba(15, 58, 74, 0.08);
}

.privacy-table thead tr {
	background: var(--teal-deep);
}

.privacy-table thead th {
	padding: 11px 16px;
	text-align: left;
	font-family: var(--font-primary);
	font-size: 10px;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.88);
}

.privacy-table tbody tr:nth-child(even) {
	background: rgba(240, 238, 233, 0.5);
}

.privacy-table tbody tr:nth-child(odd) {
	background: #ffffff;
}

.privacy-table tbody tr:hover {
	background: rgba(108, 171, 182, 0.07);
}

.privacy-table tbody td {
	padding: 10px 16px;
	color: var(--text-body);
	border-bottom: 1px solid rgba(108, 171, 182, 0.1);
	vertical-align: top;
	line-height: 1.6;
}

.privacy-table tbody td:first-child {
	font-weight: 500;
	color: var(--teal-deep);
	white-space: nowrap;
}

.privacy-table tbody td a {
	color: var(--teal-mid);
	text-decoration: none;
	font-size: 12px;
}

/* Cookie category cards */
.privacy-cookie-card {
	background: #ffffff;
	border: 1px solid rgba(108, 171, 182, 0.18);
	border-radius: 6px;
	padding: 20px 24px;
	margin-bottom: 14px;
	position: relative;
}

.privacy-cookie-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 3px;
	background: linear-gradient(90deg, var(--teal-blue), var(--teal-mid));
	border-radius: 6px 6px 0 0;
}

.privacy-cookie-card.privacy-cookie-essential::before {
	background: linear-gradient(90deg, var(--peach-warm), var(--peach-deep));
}

.privacy-cookie-card-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 10px;
	flex-wrap: wrap;
	gap: 8px;
}

.privacy-cookie-card-title {
	font-family: var(--font-primary);
	font-size: 13.5px;
	font-weight: 700;
	color: var(--teal-deep);
	letter-spacing: 0.04em;
}

.privacy-cookie-badge {
	font-family: var(--font-primary);
	font-size: 9px;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	padding: 3px 8px;
	border-radius: 2px;
}

.privacy-cookie-badge-required {
	background: rgba(254, 187, 138, 0.18);
	color: #9a4d10;
	border: 1px solid rgba(254, 187, 138, 0.45);
}

.privacy-cookie-badge-optional {
	background: rgba(108, 171, 182, 0.13);
	color: var(--teal-deep);
	border: 1px solid rgba(108, 171, 182, 0.28);
}

.privacy-cookie-card .privacy-body {
	font-size: 13.5px;
}

.privacy-cookie-list {
	list-style: none;
	padding: 0;
	margin: 12px 0 0;
}

.privacy-cookie-list li {
	display: flex;
	align-items: baseline;
	flex-wrap: wrap;
	gap: 8px;
	padding: 7px 0;
	border-top: 1px solid rgba(108, 171, 182, 0.1);
	font-family: var(--font-body);
	font-size: 12.5px;
	color: var(--text-secondary);
	line-height: 1.5;
}

.privacy-cookie-list li::before {
	display: none;
}

.privacy-cookie-list code {
	font-family: 'Courier New', monospace;
	font-size: 11px;
	background: rgba(15, 58, 74, 0.06);
	color: var(--teal-deep);
	padding: 2px 7px;
	border-radius: 3px;
	white-space: nowrap;
	flex-shrink: 0;
}

/* Rights grid */
.privacy-rights-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(190px, 1fr));
	gap: 12px;
	margin-top: 18px;
}

.privacy-right-item {
	background: #ffffff;
	border: 1px solid rgba(108, 171, 182, 0.16);
	border-radius: 5px;
	padding: 16px 18px;
}

.privacy-right-item-title {
	font-family: var(--font-primary);
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.08em;
	color: var(--teal-deep);
	margin-bottom: 6px;
	text-transform: uppercase;
}

.privacy-right-item-desc {
	font-family: var(--font-body);
	font-size: 12.5px;
	color: var(--text-secondary);
	line-height: 1.65;
	margin: 0;
}

/* Contact box */
.privacy-contact-box {
	background: var(--teal-deep);
	border-radius: 8px;
	padding: 36px 40px;
	margin-top: 8px;
	position: relative;
	overflow: hidden;
}

.privacy-contact-box::after {
	content: '';
	position: absolute;
	top: -40px;
	right: -40px;
	width: 200px;
	height: 200px;
	border-radius: 50%;
	background: rgba(108, 171, 182, 0.1);
	pointer-events: none;
}

.privacy-contact-box-inner {
	position: relative;
	z-index: 1;
}

.privacy-contact-box h3 {
	font-family: var(--font-primary) !important;
	font-size: 22px !important;
	font-weight: 600 !important;
	color: #ffffff !important;
	margin: 0 0 10px !important;
	text-transform: none !important;
	letter-spacing: 0 !important;
}

.privacy-contact-box h3::before {
	display: none !important;
}

.privacy-contact-box p {
	font-family: var(--font-body);
	font-size: 14px;
	color: rgba(255, 255, 255, 0.6);
	margin: 0 0 22px;
	line-height: 1.75;
}

.privacy-contact-links {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	align-items: center;
}

.privacy-contact-btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: linear-gradient(135deg, var(--peach-warm), var(--peach-deep));
	color: var(--teal-deep) !important;
	font-family: var(--font-primary);
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	text-decoration: none !important;
	border: none !important;
	padding: 12px 24px;
	border-radius: 3px;
	transition: opacity 0.2s;
}

.privacy-contact-btn:hover {
	opacity: 0.9;
}

/* Responsive */
@media (max-width: 960px) {
	.privacy-content-wrap {
		grid-template-columns: 1fr;
		gap: 0;
		padding: 40px 24px 60px;
	}

	.privacy-toc {
		display: none;
	}

	.privacy-hero {
		padding: 56px 24px 48px;
	}

	.privacy-contact-box {
		padding: 28px 24px;
	}
}

@media (max-width: 600px) {
	.privacy-rights-grid {
		grid-template-columns: 1fr 1fr;
	}

	.privacy-table {
		display: block;
		overflow-x: auto;
		-webkit-overflow-scrolling: touch;
	}
}

