/**
 * TTPixel Child Theme - Professional Multi-Style Footer Styles
 *
 * Scope: Dark theme, 1400px container width, responsive 4-style layout switcher:
 *  - Style 1: Modern Classic (4-Column)
 *  - Style 2: E-Commerce Mega Portal (Trust Highlights + 5-Col + Hotline Card)
 *  - Style 3: Modern Minimalist & Centered Brand Identity
 *  - Style 4: High-Conversion Gadget Pro (Interactive Feature Cards + Tech Hotline Box)
 *
 * @package TTPixel_Child_Theme
 */

/* =============================================================================
   1. Base Footer Container & Universal Typography
   ============================================================================= */

.ttp-footer {
	background-color: var(--ttp-footer-bg, #0f172a) !important;
	color: var(--ttp-footer-text-color, #94a3b8) !important;
	padding-top: 50px;
	padding-bottom: 28px;
	border-top: 1px solid var(--ttp-footer-border-color, #1e293b);
	font-size: 14px;
	line-height: 1.6;
	width: 100%;
	position: relative;
	box-sizing: border-box;
}

.ttp-footer a {
	color: var(--ttp-footer-link-color, #cbd5e1);
	text-decoration: none;
	transition: color 0.15s ease, transform 0.15s ease;
}

.ttp-footer a:hover {
	color: var(--ttp-footer-link-hover, var(--ttpixel-color-primary, #2563eb));
}

.ttp-footer__top {
	padding-bottom: 40px;
	border-bottom: 1px solid var(--ttp-footer-border-color, #1e293b);
}

/* Strict High-Contrast Column Titles Override */
.ttp-footer h1,
.ttp-footer h2,
.ttp-footer h3,
.ttp-footer h4,
.ttp-footer h5,
.ttp-footer h6,
.ttp-footer .ttp-footer-widget-title,
.ttp-footer .ttp-footer__title,
.ttp-footer .widget-title,
.ttp-footer .widgettitle {
	color: var(--ttp-footer-title-color, #ffffff) !important;
	font-size: 16px !important;
	font-weight: 700 !important;
	margin-top: 0 !important;
	margin-bottom: 18px !important;
	letter-spacing: -0.01em;
	line-height: 1.3 !important;
}

/* Brand Column & Logos */
.ttp-footer__brand-col {
	display: flex;
	flex-direction: column;
}

.ttp-footer__logo img,
.ttp-footer-logo-img {
	max-height: 48px;
	width: auto;
	object-fit: contain;
	margin-bottom: 16px;
	display: inline-block;
}

.ttp-footer__desc {
	color: var(--ttp-footer-text-color, #94a3b8) !important;
	margin-bottom: 22px;
	max-width: 320px;
	font-size: 13.5px;
	line-height: 1.65;
}

/* Navigation & Widget Link Lists */
.ttp-footer-links,
.ttp-footer-widget ul {
	list-style: none !important;
	margin: 0 !important;
	padding: 0 !important;
}

.ttp-footer-links li,
.ttp-footer-widget li {
	margin-bottom: 11px;
}

.ttp-footer-links a,
.ttp-footer-widget a {
	color: var(--ttp-footer-link-color, #cbd5e1) !important;
	font-size: 14px;
	display: inline-block;
	transition: all 0.15s ease;
}

.ttp-footer-links a:hover,
.ttp-footer-widget a:hover {
	color: var(--ttp-footer-link-hover, #38bdf8) !important;
	transform: translateX(4px);
}

/* Contact List */
.ttp-footer-contact-list {
	list-style: none !important;
	margin: 0 !important;
	padding: 0 !important;
}

.ttp-footer-contact-list li {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	margin-bottom: 14px;
	color: var(--ttp-footer-link-color, #cbd5e1) !important;
	font-size: 13.5px;
	line-height: 1.5;
}

.ttp-footer-contact-list svg {
	color: var(--ttpixel-color-primary, #3b82f6) !important;
	flex-shrink: 0;
	margin-top: 2px;
}

.ttp-footer-contact-list a {
	color: var(--ttp-footer-link-color, #cbd5e1) !important;
}

.ttp-footer-contact-list a:hover {
	color: var(--ttp-footer-link-hover, #38bdf8) !important;
}

/* Social Media Circular Links */
.ttp-social-links {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-top: auto;
	flex-wrap: wrap;
}

.ttp-social-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 38px;
	height: 38px;
	border-radius: 50%;
	background-color: rgba(255, 255, 255, 0.06);
	border: 1px solid rgba(255, 255, 255, 0.1);
	color: var(--ttp-footer-title-color, #ffffff) !important;
	text-decoration: none;
	transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.ttp-social-icon:hover {
	background-color: var(--ttpixel-color-primary, #2563eb) !important;
	border-color: var(--ttpixel-color-primary, #2563eb) !important;
	color: #ffffff !important;
	transform: translateY(-3px) scale(1.08);
	box-shadow: 0 6px 16px rgba(37, 99, 235, 0.35);
}

/* =============================================================================
   2. Pulsing Animation & Live Status Dot
   ============================================================================= */

@keyframes ttp-live-pulse {
	0% {
		transform: scale(0.95);
		box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
	}
	70% {
		transform: scale(1);
		box-shadow: 0 0 0 7px rgba(16, 185, 129, 0);
	}
	100% {
		transform: scale(0.95);
		box-shadow: 0 0 0 0 rgba(16, 185, 129, 0);
	}
}

.ttp-pulse-dot {
	width: 8px;
	height: 8px;
	background-color: #10b981;
	border-radius: 50%;
	display: inline-block;
	animation: ttp-live-pulse 1.8s infinite;
}

/* =============================================================================
   3. STYLE 1: Modern Classic (4-Column Layout)
   ============================================================================= */

.ttp-footer--style-1 .ttp-footer__grid--4col,
.ttp-footer--style_1 .ttp-footer__grid--4col {
	display: grid !important;
	grid-template-columns: 1.3fr 1fr 1fr 1.2fr !important;
	gap: 36px !important;
}

/* Top Newsletter Strip (Full-width card inside footer) */
.ttp-footer-newsletter-strip {
	display: flex !important;
	align-items: center !important;
	justify-content: space-between !important;
	gap: 24px;
	padding: 24px 30px !important;
	margin-bottom: 40px !important;
	border-radius: 14px !important;
	background: linear-gradient(135deg, rgba(30, 41, 59, 0.6) 0%, rgba(15, 23, 42, 0.8) 100%) !important;
	border: 1px solid var(--ttp-footer-border-color, #1e293b) !important;
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15) !important;
}

.ttp-footer-newsletter-strip__title {
	font-size: 18px !important;
	margin: 0 0 4px !important;
	color: #ffffff !important;
}

.ttp-footer-newsletter-strip__sub {
	margin: 0 !important;
	font-size: 13px !important;
	color: var(--ttp-footer-text-color, #94a3b8) !important;
}

.ttp-footer-newsletter-form {
	display: flex !important;
	align-items: center !important;
	gap: 10px !important;
	flex-shrink: 0 !important;
	width: 100% !important;
	max-width: 440px !important;
}

.ttp-footer-newsletter-input {
	flex: 1 !important;
	height: 44px !important;
	padding: 0 16px !important;
	background: rgba(15, 23, 42, 0.7) !important;
	border: 1px solid rgba(255, 255, 255, 0.14) !important;
	border-radius: 8px !important;
	color: #ffffff !important;
	font-size: 13.5px !important;
	outline: none !important;
	transition: border-color 0.2s, box-shadow 0.2s;
}

.ttp-footer-newsletter-input:focus {
	border-color: #3b82f6 !important;
	box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.25) !important;
}

.ttp-footer-newsletter-btn {
	height: 44px !important;
	padding: 0 22px !important;
	background: var(--ttpixel-color-primary, #2563eb) !important;
	color: #ffffff !important;
	border: none !important;
	border-radius: 8px !important;
	font-size: 13.5px !important;
	font-weight: 700 !important;
	cursor: pointer !important;
	white-space: nowrap !important;
	display: inline-flex !important;
	align-items: center !important;
	justify-content: center !important;
	text-decoration: none !important;
	transition: background-color 0.2s, transform 0.15s, box-shadow 0.2s;
}

.ttp-footer-newsletter-btn:hover {
	background: #1d4ed8;
	transform: translateY(-1px);
	box-shadow: 0 4px 12px rgba(37, 99, 235, 0.35);
}

/* =============================================================================
   4. STYLE 2: E-Commerce Mega Portal (Trust Highlights + 5-Col + Hotline Card)
   ============================================================================= */

/* Trust Highlights Strip */
.ttp-footer-trust-strip {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;
	margin-bottom: 40px;
	padding-bottom: 32px;
	border-bottom: 1px solid var(--ttp-footer-border-color, #1e293b);
}

.ttp-footer-trust-card {
	display: flex;
	align-items: center;
	gap: 16px;
	padding: 16px 18px;
	border-radius: 12px;
	background: rgba(255, 255, 255, 0.025);
	border: 1px solid rgba(255, 255, 255, 0.06);
	transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.ttp-footer-trust-card:hover {
	transform: translateY(-2px);
	border-color: rgba(59, 130, 246, 0.35);
	background: rgba(255, 255, 255, 0.05);
}

.ttp-footer-trust-card__icon {
	width: 48px;
	height: 48px;
	border-radius: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(37, 99, 235, 0.12);
	color: #38bdf8;
	flex-shrink: 0;
}

.ttp-footer-trust-card__text h5 {
	font-size: 14.5px !important;
	font-weight: 700 !important;
	color: #ffffff !important;
	margin: 0 0 3px !important;
	line-height: 1.3;
}

.ttp-footer-trust-card__text p {
	font-size: 12px;
	color: var(--ttp-footer-text-color, #94a3b8);
	margin: 0;
	line-height: 1.35;
}

/* 5-Column Grid */
.ttp-footer--style-2 .ttp-footer__grid--5col,
.ttp-footer--style_2 .ttp-footer__grid--5col {
	display: grid !important;
	grid-template-columns: 1.3fr 1fr 1fr 1fr 1.4fr !important;
	gap: 28px !important;
}

/* Dedicated Hotline Help Card */
.ttp-footer-hotline-card {
	background: linear-gradient(145deg, rgba(30, 41, 59, 0.7) 0%, rgba(15, 23, 42, 0.95) 100%);
	border: 1px solid rgba(59, 130, 246, 0.3);
	border-radius: 14px;
	padding: 22px;
	display: flex;
	flex-direction: column;
	gap: 12px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
	position: relative;
	overflow: hidden;
}

.ttp-footer-hotline-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 3px;
	background: linear-gradient(90deg, #3b82f6, #06b6d4);
}

.ttp-footer-live-badge {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-size: 12px;
	font-weight: 700;
	color: #34d399;
	background: rgba(16, 185, 129, 0.12);
	border: 1px solid rgba(16, 185, 129, 0.25);
	padding: 3px 10px;
	border-radius: 50px;
	align-self: flex-start;
}

.ttp-footer-hotline-card__sub {
	margin: 0;
	font-size: 12.5px;
	color: #cbd5e1;
	font-weight: 500;
}

.ttp-footer-hotline-btn {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	background: #2563eb !important;
	color: #ffffff !important;
	font-size: 15px;
	font-weight: 700;
	padding: 11px 16px;
	border-radius: 8px;
	text-decoration: none;
	transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
	box-shadow: 0 4px 14px rgba(37, 99, 235, 0.35);
}

.ttp-footer-hotline-btn:hover {
	background: #1d4ed8 !important;
	transform: translateY(-2px);
	box-shadow: 0 6px 18px rgba(37, 99, 235, 0.45);
	color: #ffffff !important;
}

.ttp-footer-hours-badge,
.ttp-footer-email-link {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 12px;
	color: #94a3b8;
}

.ttp-footer-email-link {
	color: #94a3b8 !important;
	transition: color 0.15s;
}

.ttp-footer-email-link:hover {
	color: #38bdf8 !important;
}

/* =============================================================================
   5. STYLE 3: Modern Minimalist & Centered Brand Identity
   ============================================================================= */

.ttp-footer--style-3,
.ttp-footer--style_3 {
	text-align: center;
}

.ttp-footer__style-3-wrap {
	max-width: 900px;
	margin: 0 auto;
	padding-bottom: 30px;
	border-bottom: 1px solid var(--ttp-footer-border-color, #1e293b);
}

.ttp-footer-style-3-brand {
	margin-bottom: 32px;
}

.ttp-footer-style-3-brand .ttp-footer__logo img {
	max-height: 52px;
	margin: 0 auto 16px;
}

.ttp-footer-style-3-desc {
	max-width: 580px;
	margin: 0 auto;
	font-size: 14px;
	color: var(--ttp-footer-text-color, #94a3b8);
	line-height: 1.7;
}

/* Centered Newsletter Pill Box */
.ttp-footer-newsletter-pill-box {
	background: rgba(255, 255, 255, 0.025);
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 18px;
	padding: 24px 30px;
	margin: 0 auto 36px;
	max-width: 580px;
}

.ttp-footer-newsletter-pill-title {
	font-size: 16px !important;
	color: #ffffff !important;
	margin: 0 0 6px !important;
}

.ttp-footer-newsletter-pill-sub {
	font-size: 13px;
	color: var(--ttp-footer-text-color, #94a3b8);
	margin: 0 0 16px;
}

.ttp-footer-newsletter-pill-form {
	display: flex;
	align-items: center;
	background: rgba(15, 23, 42, 0.8);
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: 50px;
	padding: 4px;
	transition: border-color 0.2s, box-shadow 0.2s;
}

.ttp-footer-newsletter-pill-form:focus-within {
	border-color: #3b82f6;
	box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.25);
}

.ttp-footer-newsletter-pill-input {
	flex: 1;
	border: none;
	background: transparent;
	color: #ffffff;
	padding: 10px 18px;
	font-size: 13.5px;
	outline: none;
}

.ttp-footer-newsletter-pill-btn {
	background: var(--ttpixel-color-primary, #2563eb);
	color: #ffffff;
	border: none;
	border-radius: 50px;
	padding: 10px 24px;
	font-size: 13px;
	font-weight: 700;
	cursor: pointer;
	white-space: nowrap;
	transition: background 0.2s, transform 0.15s;
}

.ttp-footer-newsletter-pill-btn:hover {
	background: #1d4ed8;
	transform: scale(1.03);
}

/* Horizontal Links Cluster */
.ttp-footer-style-3-links-row {
	display: flex;
	justify-content: center;
	gap: 60px;
	flex-wrap: wrap;
	margin-bottom: 32px;
	text-align: left;
}

.ttp-footer-style-3-link-col h5 {
	font-size: 14.5px !important;
	color: #ffffff !important;
	margin: 0 0 14px !important;
	font-weight: 700 !important;
}

.ttp-footer-style-3-link-col .ttp-footer-links li {
	margin-bottom: 9px;
}

.ttp-footer-address-text {
	font-size: 13px;
	color: var(--ttp-footer-text-color, #94a3b8);
	max-width: 200px;
	line-height: 1.5;
}

.ttp-footer-style-3-socials .ttp-social-links {
	justify-content: center;
	gap: 12px;
}

/* Centered Style 3 Bottom Bar */
.ttp-footer--style-3 .ttp-footer__bottom {
	flex-direction: column;
	gap: 14px;
	text-align: center;
}

/* =============================================================================
   6. STYLE 4: High-Conversion Gadget Pro (Interactive Cards + Tech Hotline Box)
   ============================================================================= */

/* Top Interactive Feature Highlights Cards */
.ttp-footer-pro-features {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;
	margin-bottom: 40px;
}

.ttp-footer-pro-feature-card {
	display: flex;
	align-items: center;
	gap: 16px;
	padding: 18px;
	border-radius: 14px;
	background: rgba(30, 41, 59, 0.45);
	border: 1px solid rgba(255, 255, 255, 0.08);
	transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.ttp-footer-pro-feature-card:hover {
	transform: translateY(-3px);
	border-color: rgba(59, 130, 246, 0.45);
	background: rgba(30, 41, 59, 0.7);
	box-shadow: 0 10px 24px rgba(0, 0, 0, 0.2);
}

.ttp-footer-pro-feature-icon {
	width: 50px;
	height: 50px;
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
}

.ttp-icon-fast {
	background: linear-gradient(135deg, #f59e0b, #ef4444);
	color: #ffffff;
}

.ttp-icon-shield {
	background: linear-gradient(135deg, #10b981, #059669);
	color: #ffffff;
}

.ttp-icon-return {
	background: linear-gradient(135deg, #3b82f6, #6366f1);
	color: #ffffff;
}

.ttp-icon-lock {
	background: linear-gradient(135deg, #8b5cf6, #ec4899);
	color: #ffffff;
}

.ttp-footer-pro-feature-info h4 {
	font-size: 14.5px !important;
	color: #ffffff !important;
	margin: 0 0 3px !important;
	font-weight: 700 !important;
}

.ttp-footer-pro-feature-info p {
	font-size: 12px;
	color: var(--ttp-footer-text-color, #94a3b8);
	margin: 0;
	line-height: 1.35;
}

/* Style 4 Grid */
.ttp-footer--style-4 .ttp-footer__grid--pro,
.ttp-footer--style_4 .ttp-footer__grid--pro {
	display: grid !important;
	grid-template-columns: 1.3fr 1fr 1fr 1.35fr !important;
	gap: 32px !important;
}

/* Brand Trust Pill Badge */
.ttp-footer-brand-pill {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 4px 12px;
	border-radius: 50px;
	background: rgba(37, 99, 235, 0.12);
	border: 1px solid rgba(59, 130, 246, 0.3);
	color: #60a5fa;
	font-size: 12px;
	font-weight: 600;
	margin-bottom: 14px;
	align-self: flex-start;
}

/* Gadget Pro Hotline Action Box */
.ttp-footer-pro-box {
	background: rgba(15, 23, 42, 0.85);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-top: 3px solid #3b82f6;
	border-radius: 14px;
	padding: 22px;
	display: flex;
	flex-direction: column;
	gap: 14px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.ttp-footer-pro-badge {
	display: inline-block;
	font-size: 11px;
	font-weight: 700;
	color: #38bdf8;
	background: rgba(56, 189, 248, 0.12);
	border: 1px solid rgba(56, 189, 248, 0.25);
	padding: 2px 8px;
	border-radius: 4px;
	margin-bottom: 6px;
	text-transform: uppercase;
	letter-spacing: 0.04em;
}

.ttp-footer-pro-box__head p {
	font-size: 12.5px;
	color: #cbd5e1;
	margin: 0;
}

.ttp-footer-pro-hotline-btn {
	display: flex;
	align-items: center;
	gap: 12px;
	background: linear-gradient(135deg, #1d4ed8 0%, #2563eb 100%) !important;
	color: #ffffff !important;
	padding: 12px 16px;
	border-radius: 10px;
	text-decoration: none;
	transition: all 0.2s ease;
	box-shadow: 0 4px 14px rgba(37, 99, 235, 0.35);
}

.ttp-footer-pro-hotline-btn:hover {
	background: linear-gradient(135deg, #1e40af 0%, #1d4ed8 100%) !important;
	transform: translateY(-2px);
	box-shadow: 0 6px 18px rgba(37, 99, 235, 0.5);
	color: #ffffff !important;
}

.ttp-pro-hotline-icon {
	width: 40px;
	height: 40px;
	border-radius: 8px;
	background: rgba(255, 255, 255, 0.15);
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.ttp-pro-hotline-meta {
	display: flex;
	flex-direction: column;
	text-align: left;
}

.ttp-pro-hotline-label {
	font-size: 10px;
	font-weight: 700;
	letter-spacing: 0.05em;
	opacity: 0.85;
	color: #bfdbfe;
}

.ttp-pro-hotline-num {
	font-size: 16px;
	font-weight: 800;
	color: #ffffff;
}

.ttp-footer-pro-hours,
.ttp-footer-pro-email {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 12px;
	color: #94a3b8;
}

.ttp-footer-pro-email {
	color: #94a3b8 !important;
	transition: color 0.15s;
}

.ttp-footer-pro-email:hover {
	color: #38bdf8 !important;
}

/* =============================================================================
   7. Bottom Bar (Copyright & Payment Badges) - All Styles
   ============================================================================= */

.ttp-footer__bottom {
	padding-top: 24px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 16px;
}

.ttp-footer__copyright {
	color: var(--ttp-footer-text-color, #94a3b8) !important;
	font-size: 13px;
}

.ttp-footer-payments {
	display: flex;
	align-items: center;
	gap: 8px;
	flex-wrap: wrap;
}

.ttp-payment-badge {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 4px;
	overflow: hidden;
	transition: all 0.2s ease;
}

.ttp-payment-badge:hover {
	opacity: 0.92;
	transform: translateY(-2px);
}

/* =============================================================================
   8. Responsive Breakpoints
   ============================================================================= */

/* Tablet & Intermediate (max-width: 991.98px) */
@media (max-width: 991.98px) {
	.ttp-footer {
		padding-top: 40px;
	}

	.ttp-footer--style-1 .ttp-footer__grid--4col,
	.ttp-footer--style_1 .ttp-footer__grid--4col,
	.ttp-footer--style-4 .ttp-footer__grid--pro,
	.ttp-footer--style_4 .ttp-footer__grid--pro {
		grid-template-columns: repeat(2, 1fr) !important;
		gap: 32px 24px !important;
	}

	.ttp-footer--style-2 .ttp-footer__grid--5col,
	.ttp-footer--style_2 .ttp-footer__grid--5col {
		grid-template-columns: repeat(2, 1fr) !important;
		gap: 32px 24px !important;
	}

	.ttp-footer-hotline-card-col {
		grid-column: span 2;
	}

	.ttp-footer-trust-strip,
	.ttp-footer-pro-features {
		grid-template-columns: repeat(2, 1fr);
		gap: 16px;
	}

	.ttp-footer-newsletter-strip {
		flex-direction: column;
		align-items: flex-start;
		gap: 16px;
	}

	.ttp-footer-newsletter-form {
		max-width: 100%;
	}

	.ttp-footer-style-3-links-row {
		gap: 36px 40px;
	}
}

/* Mobile Devices (max-width: 575.98px) */
@media (max-width: 575.98px) {
	.ttp-footer {
		padding-top: 36px;
		padding-bottom: 24px;
	}

	.ttp-footer--style-1 .ttp-footer__grid--4col,
	.ttp-footer--style_1 .ttp-footer__grid--4col,
	.ttp-footer--style-2 .ttp-footer__grid--5col,
	.ttp-footer--style_2 .ttp-footer__grid--5col,
	.ttp-footer--style-4 .ttp-footer__grid--pro,
	.ttp-footer--style_4 .ttp-footer__grid--pro {
		grid-template-columns: 1fr !important;
		gap: 28px !important;
	}

	.ttp-footer-hotline-card-col {
		grid-column: span 1;
	}

	.ttp-footer-trust-strip,
	.ttp-footer-pro-features {
		grid-template-columns: 1fr;
		gap: 12px;
	}

	.ttp-footer-newsletter-form {
		flex-direction: column;
		gap: 8px;
	}

	.ttp-footer-newsletter-input,
	.ttp-footer-newsletter-btn {
		width: 100%;
	}

	.ttp-footer-style-3-links-row {
		flex-direction: column;
		gap: 24px;
		text-align: center;
	}

	.ttp-footer-style-3-links-row .ttp-footer-links a:hover {
		transform: none;
	}

	.ttp-footer-address-text {
		max-width: 100%;
		margin: 0 auto;
	}

	.ttp-footer__bottom {
		flex-direction: column;
		text-align: center;
		justify-content: center;
		gap: 12px;
	}

	.ttp-footer__desc {
		max-width: 100%;
	}
}

/* =============================================================================
   9. Mobile Bottom Sticky Navigation Bar
   ============================================================================= */

.ttp-mobile-bottom-nav {
	display: none;
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	z-index: 990;
	background: #ffffff;
	box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.08);
	border-top: 1px solid #e2e8f0;
	transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s ease;
	transform: translateY(0);
	opacity: 1;
	will-change: transform, opacity;
}

.ttp-mobile-bottom-nav.is-hidden {
	transform: translateY(100%) !important;
	opacity: 0 !important;
	pointer-events: none !important;
}

.ttp-mobile-bottom-nav__inner {
	display: flex;
	align-items: center;
	justify-content: space-around;
	height: 64px;
	max-width: 600px;
	margin: 0 auto;
	padding: 0 4px;
}

.ttp-mobile-bottom-nav__item,
button.ttp-mobile-bottom-nav__item {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 3px;
	flex: 1;
	height: 100%;
	color: #64748b !important;
	text-decoration: none !important;
	background: none !important;
	background-color: transparent !important;
	border: 0 !important;
	border-radius: 0 !important;
	outline: none !important;
	box-shadow: none !important;
	padding: 0 !important;
	margin: 0 !important;
	cursor: pointer;
	position: relative;
	transition: color 0.15s ease;
	-webkit-appearance: none !important;
	appearance: none !important;
}

.ttp-mobile-bottom-nav__item svg,
button.ttp-mobile-bottom-nav__item svg {
	stroke: #64748b !important;
	transition: stroke 0.15s ease, transform 0.15s ease;
}

.ttp-mobile-bottom-nav__label {
	font-size: 11px;
	font-weight: 600;
	line-height: 1;
	letter-spacing: -0.01em;
}

.ttp-mobile-bottom-nav__icon-wrap {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
}

.ttp-mobile-bottom-nav__icon-wrap .ttp-badge-count {
	position: absolute;
	top: -6px;
	right: -8px;
	font-size: 10px;
	min-width: 16px;
	height: 16px;
	padding: 0 4px;
	line-height: 16px;
	background-color: #ef4444;
	color: #ffffff;
	border-radius: 50px;
	font-weight: 700;
	display: flex;
	align-items: center;
	justify-content: center;
	border: 1.5px solid #ffffff;
}

.ttp-mobile-bottom-nav__item.is-active,
.ttp-mobile-bottom-nav__item:hover,
.ttp-mobile-bottom-nav__item:focus,
.ttp-mobile-bottom-nav__item:active,
button.ttp-mobile-bottom-nav__item:hover,
button.ttp-mobile-bottom-nav__item:focus,
button.ttp-mobile-bottom-nav__item:active {
	color: #2563eb !important;
	background: none !important;
	background-color: transparent !important;
	border: 0 !important;
	outline: none !important;
	box-shadow: none !important;
}

.ttp-mobile-bottom-nav__item.is-active svg,
.ttp-mobile-bottom-nav__item:hover svg,
.ttp-mobile-bottom-nav__item:focus svg,
.ttp-mobile-bottom-nav__item:active svg,
button.ttp-mobile-bottom-nav__item:hover svg,
button.ttp-mobile-bottom-nav__item:focus svg,
button.ttp-mobile-bottom-nav__item:active svg {
	stroke: #2563eb !important;
	transform: translateY(-2px);
}

@media (max-width: 991.98px) {
	.ttp-mobile-bottom-nav {
		display: block;
	}

	body {
		padding-bottom: 64px;
	}
}
