/**
 * TikTok Shop Page Styles
 * Font: Plus Jakarta Sans
 * Style: Light Theme - Corporate Blue (như ảnh Tabcom Win)
 *
 * @package TabcomGroup
 */

/* ========================================
   GLOBAL STYLES & VARIABLES
   ======================================== */
.tiktok-shop-page {
	--tiktok-primary: #1e4a8e;
	--tiktok-primary-dark: #153a70;
	--tiktok-primary-light: #2d5ba8;
	--tiktok-secondary: #25d366;
	--tiktok-accent: #00c4cc;
	--tiktok-bg-light: #ffffff;
	--tiktok-bg-gradient: linear-gradient(180deg, #e8f4fc 0%, #ffffff 50%, #e8f0f8 100%);
	--tiktok-surface: #f8fafc;
	--tiktok-surface-blue: #eef5fc;
	--tiktok-white: #ffffff;
	--tiktok-text-dark: #1e293b;
	--tiktok-text-body: #475569;
	--tiktok-text-muted: #64748b;
	--tiktok-border: #e2e8f0;
	--tiktok-border-blue: rgba(30, 74, 142, 0.15);
	--tiktok-shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
	--tiktok-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1);
	--tiktok-shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1);
	--tiktok-shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1);
	--tiktok-radius: 8px;
	--tiktok-radius-lg: 12px;
	--tiktok-radius-xl: 16px;
	--tiktok-radius-2xl: 24px;
	font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
	background: var(--tiktok-bg-gradient);
	color: var(--tiktok-text-dark);
	line-height: 1.6;
}

.tiktok-shop-page .container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 24px;
}

.tiktok-shop-page .section-header {
	text-align: center;
	margin-bottom: 48px;
}

.tiktok-shop-page .section-header.left {
	text-align: left;
}

.tiktok-shop-page .section-label {
	display: block;
	font-size: 0.875rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	color: var(--tiktok-secondary);
	margin-bottom: 8px;
}

.tiktok-shop-page .section-title {
	font-size: 2rem;
	font-weight: 700;
	color: var(--tiktok-primary);
	margin-bottom: 16px;
	line-height: 1.3;
}

.tiktok-shop-page .section-title.center {
	text-align: center;
}

.tiktok-shop-page .section-title.white {
	color: var(--tiktok-white);
}

.tiktok-shop-page .section-desc {
	font-size: 1rem;
	color: var(--tiktok-text-muted);
	line-height: 1.7;
}

/* ========================================
   SECTION 1: HERO BANNER
   ======================================== */
.tiktok-shop-page .tiktok-hero {
	position: relative;
	padding: 60px 0 80px;
	background: linear-gradient(135deg, #e8f4fc 0%, #f0f7ff 50%, #e8f0f8 100%);
	overflow: hidden;
}

.tiktok-shop-page .hero-gradient {
	position: absolute;
	inset: 0;
	background: radial-gradient(ellipse at top right, rgba(30, 74, 142, 0.08) 0%, transparent 50%);
	pointer-events: none;
}

.tiktok-shop-page .hero-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 64px;
	align-items: center;
	position: relative;
	z-index: 1;
}

.tiktok-shop-page .hero-badge {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 8px 16px;
	background: var(--tiktok-white);
	border: 1px solid var(--tiktok-border-blue);
	border-radius: 50px;
	box-shadow: var(--tiktok-shadow-sm);
	margin-bottom: 24px;
}

.tiktok-shop-page .badge-dot {
	width: 8px;
	height: 8px;
	background: var(--tiktok-secondary);
	border-radius: 50%;
	animation: pulse 2s infinite;
}

@keyframes pulse {
	0%, 100% { opacity: 1; }
	50% { opacity: 0.5; }
}

.tiktok-shop-page .hero-badge span:last-child {
	font-size: 0.8125rem;
	font-weight: 600;
	color: var(--tiktok-primary);
}

.tiktok-shop-page .hero-title {
	font-size: 2.75rem;
	font-weight: 800;
	color: var(--tiktok-primary);
	line-height: 1.2;
	margin-bottom: 24px;
}

.tiktok-shop-page .hero-title .highlight {
	color: var(--tiktok-text-dark);
}

.tiktok-shop-page .hero-desc {
	font-size: 1.125rem;
	color: var(--tiktok-text-body);
	margin-bottom: 32px;
	line-height: 1.7;
}

.tiktok-shop-page .hero-buttons {
	display: flex;
	gap: 12px;
	flex-wrap: wrap;
}

.tiktok-shop-page .btn-primary {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	height: 48px;
	padding: 0 32px;
	background: var(--tiktok-primary);
	color: var(--tiktok-white);
	border-radius: var(--tiktok-radius-lg);
	font-weight: 700;
	font-size: 1rem;
	text-decoration: none;
	transition: all 0.3s ease;
	box-shadow: 0 4px 14px rgba(30, 74, 142, 0.3);
}

.tiktok-shop-page .btn-primary:hover {
	background: var(--tiktok-primary-dark);
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(30, 74, 142, 0.4);
}

.tiktok-shop-page .btn-secondary {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	height: 48px;
	padding: 0 32px;
	background: var(--tiktok-white);
	color: var(--tiktok-primary);
	border: 2px solid var(--tiktok-primary);
	border-radius: var(--tiktok-radius-lg);
	font-weight: 700;
	font-size: 1rem;
	text-decoration: none;
	transition: all 0.3s ease;
}

.tiktok-shop-page .btn-secondary:hover {
	background: var(--tiktok-surface-blue);
}

/* Hero Visual */
.tiktok-shop-page .hero-visual {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
}

.tiktok-shop-page .visual-card {
	position: relative;
	z-index: 10;
	width: 100%;
	max-width: 500px;
	padding: 8px;
	background: var(--tiktok-white);
	border: 1px solid var(--tiktok-border);
	border-radius: var(--tiktok-radius-2xl);
	box-shadow: var(--tiktok-shadow-xl);
}

.tiktok-shop-page .visual-image {
	aspect-ratio: 16/9;
	border-radius: var(--tiktok-radius-xl);
	overflow: hidden;
}

.tiktok-shop-page .visual-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.tiktok-shop-page .floating-badge {
	position: absolute;
	bottom: -24px;
	left: -24px;
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 16px;
	background: var(--tiktok-white);
	border: 1px solid var(--tiktok-border);
	border-radius: var(--tiktok-radius-lg);
	box-shadow: var(--tiktok-shadow-lg);
}

.tiktok-shop-page .floating-badge .badge-icon {
	width: 40px;
	height: 40px;
	background: rgba(37, 211, 102, 0.15);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
}

.tiktok-shop-page .floating-badge .badge-icon .material-symbols-outlined {
	font-size: 24px;
	color: var(--tiktok-secondary);
}

.tiktok-shop-page .floating-badge .badge-label {
	font-size: 0.75rem;
	color: var(--tiktok-text-muted);
	margin-bottom: 2px;
}

.tiktok-shop-page .floating-badge .badge-value {
	font-size: 1.125rem;
	font-weight: 700;
	color: var(--tiktok-text-dark);
}

/* Decorative Gradients */
.tiktok-shop-page .deco-gradient {
	position: absolute;
	width: 300px;
	height: 300px;
	border-radius: 50%;
	filter: blur(80px);
	pointer-events: none;
	opacity: 0.5;
}

.tiktok-shop-page .deco-primary {
	top: -100px;
	right: -100px;
	background: rgba(30, 74, 142, 0.15);
}

.tiktok-shop-page .deco-secondary {
	bottom: -100px;
	left: -100px;
	background: rgba(37, 211, 102, 0.1);
}


/* ========================================
   SECTION 2: ACHIEVEMENTS (Những con số nổi bật)
   ======================================== */
.tiktok-shop-page .tiktok-achievements {
	padding: 80px 0;
	background: linear-gradient(180deg, #ffffff 0%, var(--tiktok-surface-blue) 100%);
}

.tiktok-shop-page .achievements-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
}

.tiktok-shop-page .achievement-card {
	background: var(--tiktok-white);
	border-radius: var(--tiktok-radius-xl);
	overflow: hidden;
	box-shadow: var(--tiktok-shadow-lg);
	border: 1px solid var(--tiktok-border);
	transition: all 0.3s ease;
}

.tiktok-shop-page .achievement-card:hover {
	transform: translateY(-8px);
	box-shadow: var(--tiktok-shadow-xl);
}

.tiktok-shop-page .achievement-image {
	width: 100%;
	aspect-ratio: 4/3;
	overflow: hidden;
}

.tiktok-shop-page .achievement-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.4s ease;
}

.tiktok-shop-page .achievement-card:hover .achievement-image img {
	transform: scale(1.05);
}

/* Lightbox Styles */
.tiktok-shop-page .tiktok-lightbox {
	position: fixed;
	inset: 0;
	z-index: 9999;
	background: rgba(0, 0, 0, 0.95);
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	visibility: hidden;
	transition: all 0.3s ease;
}

.tiktok-shop-page .tiktok-lightbox.active {
	opacity: 1;
	visibility: visible;
}

.tiktok-shop-page .lightbox-content {
	max-width: 90vw;
	max-height: 85vh;
	display: flex;
	align-items: center;
	justify-content: center;
}

.tiktok-shop-page .lightbox-content img {
	max-width: 100%;
	max-height: 85vh;
	object-fit: contain;
	border-radius: var(--tiktok-radius-lg);
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
	animation: lightboxZoomIn 0.3s ease;
}

@keyframes lightboxZoomIn {
	from {
		transform: scale(0.8);
		opacity: 0;
	}
	to {
		transform: scale(1);
		opacity: 1;
	}
}

.tiktok-shop-page .lightbox-close {
	position: absolute;
	top: 20px;
	right: 20px;
	width: 48px;
	height: 48px;
	background: rgba(255, 255, 255, 0.1);
	border: none;
	border-radius: 50%;
	color: #fff;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.3s ease;
	z-index: 10;
}

.tiktok-shop-page .lightbox-close:hover {
	background: rgba(255, 255, 255, 0.2);
	transform: rotate(90deg);
}

.tiktok-shop-page .lightbox-close .material-symbols-outlined {
	font-size: 28px;
}

.tiktok-shop-page .lightbox-prev,
.tiktok-shop-page .lightbox-next {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 56px;
	height: 56px;
	background: rgba(255, 255, 255, 0.1);
	border: none;
	border-radius: 50%;
	color: #fff;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.3s ease;
	z-index: 10;
}

.tiktok-shop-page .lightbox-prev {
	left: 20px;
}

.tiktok-shop-page .lightbox-next {
	right: 20px;
}

.tiktok-shop-page .lightbox-prev:hover,
.tiktok-shop-page .lightbox-next:hover {
	background: var(--tiktok-primary);
	transform: translateY(-50%) scale(1.1);
}

.tiktok-shop-page .lightbox-prev .material-symbols-outlined,
.tiktok-shop-page .lightbox-next .material-symbols-outlined {
	font-size: 32px;
}

.tiktok-shop-page .lightbox-counter {
	position: absolute;
	bottom: 24px;
	left: 50%;
	transform: translateX(-50%);
	color: rgba(255, 255, 255, 0.8);
	font-size: 0.9375rem;
	font-weight: 600;
	background: rgba(0, 0, 0, 0.5);
	padding: 8px 20px;
	border-radius: 50px;
}

/* ========================================
   SECTION 3: TARGET AUDIENCE (Phù hợp với)
   ======================================== */
.tiktok-shop-page .tiktok-target {
	padding: 80px 0;
	background: var(--tiktok-white);
}

.tiktok-shop-page .target-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;
}

.tiktok-shop-page .target-card {
	padding: 24px;
	background: var(--tiktok-surface-blue);
	border: 1px solid var(--tiktok-border-blue);
	border-radius: var(--tiktok-radius-xl);
	text-align: center;
	transition: all 0.3s ease;
}

.tiktok-shop-page .target-card:hover {
	transform: translateY(-4px);
	box-shadow: var(--tiktok-shadow-lg);
}

.tiktok-shop-page .target-card p {
	font-size: 0.9375rem;
	color: var(--tiktok-text-body);
	line-height: 1.6;
}

/* ========================================
   SECTION 3: SERVICES TABLE
   ======================================== */
.tiktok-shop-page .tiktok-services-table {
	font-family: 'SF Pro Display', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
	padding: 80px 0;
	background: linear-gradient(180deg, #f0f7ff 0%, #ffffff 100%);
}

.tiktok-shop-page .services-table-wrapper {
	background: var(--tiktok-white);
	border-radius: var(--tiktok-radius-2xl);
	box-shadow: var(--tiktok-shadow-lg);
	overflow: hidden;
	border: 1px solid var(--tiktok-border);
}

.tiktok-shop-page .services-table {
	width: 100%;
	border-collapse: collapse;
	font-family: 'SF Pro Display', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.tiktok-shop-page .services-table th,
.tiktok-shop-page .services-table td {
	padding: 16px 20px;
	text-align: center;
	border-bottom: 1px solid var(--tiktok-border);
}

.tiktok-shop-page .services-table thead {
	background: var(--tiktok-primary);
}

.tiktok-shop-page .services-table th {
	color: var(--tiktok-white);
	font-weight: 700;
	font-size: 0.9375rem;
	white-space: nowrap;
	border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.tiktok-shop-page .services-table th:first-child {
	text-align: left;
}

.tiktok-shop-page .services-table th:last-child {
	border-right: none;
}

.tiktok-shop-page .services-table tbody tr:nth-child(even) {
	background: var(--tiktok-surface);
}

.tiktok-shop-page .services-table td:first-child {
	text-align: left;
	font-weight: 500;
	color: var(--tiktok-text-dark);
}

.tiktok-shop-page .services-table td {
	font-size: 0.875rem;
	color: var(--tiktok-text-body);
	border-right: 1px solid var(--tiktok-border);
}

.tiktok-shop-page .services-table td:last-child {
	border-right: none;
}

.tiktok-shop-page .services-table .check-icon {
	color: var(--tiktok-secondary);
	font-size: 20px;
}

.tiktok-shop-page .category-row {
	background: var(--tiktok-surface-blue) !important;
}

.tiktok-shop-page .category-row td {
	font-weight: 700;
	color: var(--tiktok-primary) !important;
	font-size: 0.9375rem !important;
	border-right: none;
}

/* ========================================
   SECTION 4: PRICING TABLE
   ======================================== */
.tiktok-shop-page .tiktok-pricing {
	padding: 80px 0;
	background: var(--tiktok-white);
}

.tiktok-shop-page .pricing-tables {
	display: flex;
	flex-direction: column;
	gap: 48px;
}

.tiktok-shop-page .pricing-table-wrapper {
	background: var(--tiktok-white);
	border-radius: var(--tiktok-radius-2xl);
	box-shadow: var(--tiktok-shadow-lg);
	overflow: hidden;
	border: 1px solid var(--tiktok-border);
}

.tiktok-shop-page .pricing-table {
	width: 100%;
	border-collapse: collapse;
}

.tiktok-shop-page .pricing-table th,
.tiktok-shop-page .pricing-table td {
	padding: 16px 24px;
	text-align: center;
	border-bottom: 1px solid var(--tiktok-border);
}

.tiktok-shop-page .pricing-table thead {
	background: var(--tiktok-primary);
}

.tiktok-shop-page .pricing-table th {
	color: var(--tiktok-white);
	font-weight: 700;
	font-size: 1rem;
}

.tiktok-shop-page .pricing-table th:first-child {
	text-align: left;
}

.tiktok-shop-page .pricing-table td:first-child {
	text-align: left;
	font-weight: 600;
	color: var(--tiktok-text-dark);
}

.tiktok-shop-page .pricing-table td {
	font-size: 1rem;
	font-weight: 700;
	color: var(--tiktok-primary);
}

.tiktok-shop-page .pricing-table tbody tr:hover {
	background: var(--tiktok-surface-blue);
}

/* ========================================
   SECTION 4: WORKFLOW (Quy trình triển khai)
   ======================================== */
.tiktok-shop-page .tiktok-workflow {
	padding: 80px 0;
	background: linear-gradient(180deg, #ffffff 0%, var(--tiktok-surface) 100%);
	overflow: hidden;
}

.tiktok-shop-page .tiktok-workflow .section-header {
	text-align: center;
	margin-bottom: 60px;
}

/* Timeline Container */
.tiktok-shop-page .workflow-timeline {
	position: relative;
	display: flex;
	flex-direction: column;
	gap: 0;
}

/* Timeline Line */
.tiktok-shop-page .workflow-timeline::before {
	content: '';
	position: absolute;
	left: 28px;
	top: 0;
	bottom: 0;
	width: 4px;
	background: linear-gradient(180deg, var(--tiktok-accent) 0%, var(--tiktok-primary) 50%, var(--tiktok-primary-dark) 100%);
	border-radius: 2px;
}

/* Phase Item */
.tiktok-shop-page .workflow-phase {
	position: relative;
	padding-left: 80px;
	padding-bottom: 48px;
}

.tiktok-shop-page .workflow-phase:last-child {
	padding-bottom: 0;
}

/* Phase Number */
.tiktok-shop-page .workflow-phase .phase-number {
	position: absolute;
	left: 0;
	top: 0;
	width: 56px;
	height: 56px;
	background: linear-gradient(135deg, var(--tiktok-primary) 0%, var(--tiktok-primary-dark) 100%);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	font-size: 1.25rem;
	font-weight: 700;
	box-shadow: 0 8px 24px rgba(30, 74, 142, 0.3);
	z-index: 2;
}

/* Phase Content */
.tiktok-shop-page .workflow-phase .phase-content {
	background: var(--tiktok-white);
	border-radius: var(--tiktok-radius-xl);
	padding: 32px;
	box-shadow: var(--tiktok-shadow);
	border: 1px solid var(--tiktok-border-blue);
	transition: all 0.3s ease;
}

.tiktok-shop-page .workflow-phase .phase-content:hover {
	transform: translateX(8px);
	box-shadow: var(--tiktok-shadow-lg);
	border-color: var(--tiktok-primary);
}

.tiktok-shop-page .workflow-phase .phase-header {
	display: flex;
	align-items: center;
	gap: 16px;
	margin-bottom: 20px;
}

.tiktok-shop-page .workflow-phase .phase-icon {
	width: 48px;
	height: 48px;
	background: linear-gradient(135deg, rgba(30, 74, 142, 0.1) 0%, rgba(0, 196, 204, 0.1) 100%);
	border-radius: 14px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--tiktok-primary);
}

.tiktok-shop-page .workflow-phase .phase-icon .material-symbols-outlined {
	font-size: 24px;
}

.tiktok-shop-page .workflow-phase .phase-title {
	font-size: 1.25rem;
	font-weight: 700;
	color: var(--tiktok-text-dark);
}

/* Steps Grid */
.tiktok-shop-page .workflow-phase .phase-steps {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 16px;
}

.tiktok-shop-page .workflow-phase .phase-step {
	background: linear-gradient(135deg, var(--tiktok-surface-blue) 0%, #f0f7ff 100%);
	border: 1px solid var(--tiktok-border-blue);
	border-radius: var(--tiktok-radius-lg);
	padding: 16px 20px;
	position: relative;
	transition: all 0.3s ease;
}

.tiktok-shop-page .workflow-phase .phase-step:hover {
	background: linear-gradient(135deg, #dbeafe 0%, #e0f2fe 100%);
	transform: translateY(-2px);
}

.tiktok-shop-page .workflow-phase .phase-step::before {
	content: '';
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	width: 4px;
	height: 60%;
	background: var(--tiktok-primary);
	border-radius: 0 2px 2px 0;
	opacity: 0;
	transition: opacity 0.3s ease;
}

.tiktok-shop-page .workflow-phase .phase-step:hover::before {
	opacity: 1;
}

.tiktok-shop-page .workflow-phase .phase-step p {
	font-size: 0.9rem;
	color: var(--tiktok-text-dark);
	line-height: 1.5;
	font-weight: 500;
}

/* Workflow CTA */
.tiktok-shop-page .tiktok-workflow .workflow-cta {
	margin-top: 80px;
	text-align: center;
}

.tiktok-shop-page .tiktok-workflow .cta-box {
	background: linear-gradient(135deg, var(--tiktok-primary) 0%, var(--tiktok-primary-dark) 100%);
	border-radius: var(--tiktok-radius-2xl);
	padding: 56px 48px;
	max-width: 900px;
	margin: 0 auto;
	position: relative;
	overflow: hidden;
}

.tiktok-shop-page .tiktok-workflow .cta-box::before {
	content: '';
	position: absolute;
	top: -50%;
	right: -20%;
	width: 400px;
	height: 400px;
	background: rgba(255, 255, 255, 0.1);
	border-radius: 50%;
}

.tiktok-shop-page .tiktok-workflow .cta-box::after {
	content: '';
	position: absolute;
	bottom: -30%;
	left: -10%;
	width: 300px;
	height: 300px;
	background: rgba(255, 255, 255, 0.05);
	border-radius: 50%;
}

.tiktok-shop-page .tiktok-workflow .cta-title {
	font-size: 2rem;
	font-weight: 700;
	color: #fff;
	margin-bottom: 12px;
	position: relative;
	z-index: 1;
}

.tiktok-shop-page .tiktok-workflow .cta-desc {
	font-size: 1.1rem;
	color: rgba(255, 255, 255, 0.9);
	margin-bottom: 32px;
	max-width: 550px;
	margin-left: auto;
	margin-right: auto;
	position: relative;
	z-index: 1;
}

.tiktok-shop-page .tiktok-workflow .cta-btn {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	height: 56px;
	padding: 0 40px;
	background: var(--tiktok-white);
	color: var(--tiktok-primary);
	font-size: 1rem;
	font-weight: 700;
	border-radius: 50px;
	text-decoration: none;
	transition: all 0.3s ease;
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
	position: relative;
	z-index: 1;
}

.tiktok-shop-page .tiktok-workflow .cta-btn:hover {
	transform: translateY(-3px) scale(1.02);
	box-shadow: 0 12px 32px rgba(0, 0, 0, 0.25);
	background: var(--tiktok-surface);
}

.tiktok-shop-page .tiktok-workflow .cta-btn .material-symbols-outlined {
	font-size: 20px;
	transition: transform 0.3s ease;
}

.tiktok-shop-page .tiktok-workflow .cta-btn:hover .material-symbols-outlined {
	transform: translateX(4px);
}

/* ========================================
   SECTION 5: COMMISSION RATES
   ======================================== */
.tiktok-shop-page .tiktok-commission {
	padding: 80px 0;
	background: linear-gradient(180deg, #f0f7ff 0%, #e8f4fc 100%);
}

.tiktok-shop-page .commission-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;
	margin-bottom: 32px;
}

.tiktok-shop-page .commission-card {
	background: var(--tiktok-white);
	border: 2px solid var(--tiktok-border);
	border-radius: var(--tiktok-radius-xl);
	padding: 24px;
	text-align: center;
	transition: all 0.3s ease;
}

.tiktok-shop-page .commission-card:hover {
	border-color: var(--tiktok-primary);
	box-shadow: var(--tiktok-shadow-lg);
}

.tiktok-shop-page .commission-card .card-label {
	font-size: 0.875rem;
	font-weight: 600;
	color: var(--tiktok-primary);
	margin-bottom: 16px;
	padding: 8px 16px;
	background: var(--tiktok-surface-blue);
	border-radius: var(--tiktok-radius);
	display: inline-block;
}

.tiktok-shop-page .commission-card .card-value {
	font-size: 3rem;
	font-weight: 800;
	color: var(--tiktok-primary);
	line-height: 1;
}

.tiktok-shop-page .commission-card .card-value span {
	font-size: 1.5rem;
}

.tiktok-shop-page .commission-card .card-unit {
	font-size: 0.875rem;
	color: var(--tiktok-text-muted);
	margin-top: 8px;
}

.tiktok-shop-page .commission-card .card-note {
	font-size: 0.75rem;
	color: var(--tiktok-text-muted);
	margin-top: 12px;
	padding-top: 12px;
	border-top: 1px solid var(--tiktok-border);
	line-height: 1.5;
}

.tiktok-shop-page .commission-note {
	text-align: center;
	padding: 16px 24px;
	background: var(--tiktok-surface-blue);
	border-radius: var(--tiktok-radius-lg);
	border: 1px solid var(--tiktok-border-blue);
}

.tiktok-shop-page .commission-note p {
	font-size: 0.875rem;
	color: var(--tiktok-primary);
	font-weight: 500;
}

/* ========================================
   SECTION 6: COMMITMENT & REFUND
   ======================================== */
.tiktok-shop-page .tiktok-commitment {
	padding: 80px 0;
	background: var(--tiktok-white);
}

.tiktok-shop-page .commitment-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 32px;
	margin-bottom: 48px;
}

.tiktok-shop-page .commitment-card {
	background: var(--tiktok-surface-blue);
	border: 1px solid var(--tiktok-border-blue);
	border-radius: var(--tiktok-radius-xl);
	padding: 32px;
}

.tiktok-shop-page .commitment-card h3 {
	font-size: 1.125rem;
	font-weight: 700;
	color: var(--tiktok-primary);
	margin-bottom: 8px;
}

.tiktok-shop-page .commitment-card p {
	font-size: 0.9375rem;
	color: var(--tiktok-text-body);
	line-height: 1.6;
}

.tiktok-shop-page .commitment-card .highlight-text {
	font-weight: 700;
	color: var(--tiktok-primary);
}

/* Refund Policy */
.tiktok-shop-page .refund-section {
	margin-top: 48px;
}

.tiktok-shop-page .refund-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
}

.tiktok-shop-page .refund-card {
	display: flex;
	align-items: center;
	gap: 16px;
	padding: 20px 24px;
	background: var(--tiktok-surface);
	border: 1px solid var(--tiktok-border);
	border-radius: var(--tiktok-radius-lg);
}

.tiktok-shop-page .refund-card .refund-percent {
	padding: 8px 16px;
	background: var(--tiktok-primary);
	color: var(--tiktok-white);
	font-weight: 700;
	font-size: 0.875rem;
	border-radius: var(--tiktok-radius);
	white-space: nowrap;
}

.tiktok-shop-page .refund-card .refund-text {
	font-size: 0.9375rem;
	color: var(--tiktok-text-body);
}


/* ========================================
   SECTION 7: CONDITIONS & TERMS
   ======================================== */
.tiktok-shop-page .tiktok-conditions {
	padding: 80px 0;
	background: linear-gradient(180deg, #f0f7ff 0%, #ffffff 100%);
}

.tiktok-shop-page .conditions-list {
	display: flex;
	flex-direction: column;
	gap: 16px;
	margin-bottom: 48px;
}

.tiktok-shop-page .condition-item {
	display: flex;
	align-items: flex-start;
	gap: 16px;
	padding: 20px 24px;
	background: var(--tiktok-white);
	border: 1px solid var(--tiktok-border);
	border-radius: var(--tiktok-radius-lg);
	box-shadow: var(--tiktok-shadow-sm);
}

.tiktok-shop-page .condition-item .condition-number {
	width: 32px;
	height: 32px;
	background: var(--tiktok-primary);
	color: var(--tiktok-white);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 700;
	font-size: 0.875rem;
	flex-shrink: 0;
}

.tiktok-shop-page .condition-item p {
	font-size: 0.9375rem;
	color: var(--tiktok-text-body);
	line-height: 1.6;
}

/* Payment Terms */
.tiktok-shop-page .payment-terms {
	background: var(--tiktok-surface-blue);
	border: 1px solid var(--tiktok-border-blue);
	border-radius: var(--tiktok-radius-xl);
	padding: 32px;
}

.tiktok-shop-page .payment-terms h3 {
	font-size: 1.25rem;
	font-weight: 700;
	color: var(--tiktok-primary);
	margin-bottom: 16px;
}

.tiktok-shop-page .payment-terms ul {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.tiktok-shop-page .payment-terms li {
	font-size: 0.9375rem;
	color: var(--tiktok-text-body);
	padding-left: 24px;
	position: relative;
}

.tiktok-shop-page .payment-terms li::before {
	content: '•';
	position: absolute;
	left: 8px;
	color: var(--tiktok-primary);
	font-weight: 700;
}

/* ========================================
   SECTION 8: STRENGTHS (Điểm mạnh)
   ======================================== */
.tiktok-shop-page .tiktok-strengths {
	padding: 80px 0;
	background: var(--tiktok-white);
}

.tiktok-shop-page .strengths-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
}

.tiktok-shop-page .strength-card {
	padding: 32px;
	background: var(--tiktok-white);
	border: 2px solid var(--tiktok-border);
	border-radius: var(--tiktok-radius-xl);
	transition: all 0.3s ease;
}

.tiktok-shop-page .strength-card:hover {
	border-color: var(--tiktok-primary);
	box-shadow: var(--tiktok-shadow-lg);
}

.tiktok-shop-page .strength-card h3 {
	font-size: 1.125rem;
	font-weight: 700;
	color: var(--tiktok-primary);
	margin-bottom: 16px;
}

.tiktok-shop-page .strength-card p {
	font-size: 0.9375rem;
	color: var(--tiktok-text-body);
	line-height: 1.6;
	margin-bottom: 8px;
}

.tiktok-shop-page .strength-card p:last-child {
	margin-bottom: 0;
}

/* ========================================
   SECTION 9: DELIVERABLES (Kết quả nhận được)
   ======================================== */
.tiktok-shop-page .tiktok-deliverables {
	padding: 80px 0;
	background: linear-gradient(180deg, #e8f4fc 0%, #f0f7ff 100%);
}

.tiktok-shop-page .deliverables-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
}

.tiktok-shop-page .deliverable-card {
	padding: 32px;
	background: var(--tiktok-primary);
	border-radius: var(--tiktok-radius-xl);
	text-align: center;
	color: var(--tiktok-white);
}

.tiktok-shop-page .deliverable-card h3 {
	font-size: 1.125rem;
	font-weight: 700;
	margin-bottom: 12px;
}

.tiktok-shop-page .deliverable-card p {
	font-size: 0.9375rem;
	opacity: 0.9;
	line-height: 1.6;
}

/* ========================================
   SECTION 10: CTA
   ======================================== */
.tiktok-shop-page .tiktok-cta {
	padding: 80px 0;
	background: linear-gradient(135deg, var(--tiktok-primary) 0%, var(--tiktok-primary-dark) 100%);
}

.tiktok-shop-page .cta-content {
	text-align: center;
	max-width: 700px;
	margin: 0 auto;
}

.tiktok-shop-page .cta-title {
	font-size: 2.25rem;
	font-weight: 800;
	color: var(--tiktok-white);
	line-height: 1.3;
	margin-bottom: 16px;
}

.tiktok-shop-page .cta-desc {
	font-size: 1.125rem;
	color: rgba(255, 255, 255, 0.85);
	margin-bottom: 32px;
}

.tiktok-shop-page .cta-buttons {
	display: flex;
	justify-content: center;
	gap: 16px;
	flex-wrap: wrap;
}

.tiktok-shop-page .btn-cta {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 200px;
	height: 52px;
	padding: 0 32px;
	font-size: 1rem;
	font-weight: 700;
	text-decoration: none;
	border-radius: var(--tiktok-radius-lg);
	transition: all 0.3s ease;
}

.tiktok-shop-page .btn-cta.primary {
	background: var(--tiktok-white);
	color: var(--tiktok-primary);
}

.tiktok-shop-page .btn-cta.primary:hover {
	background: var(--tiktok-surface);
	transform: translateY(-2px);
}

.tiktok-shop-page .btn-cta.secondary {
	background: transparent;
	color: var(--tiktok-white);
	border: 2px solid rgba(255, 255, 255, 0.5);
}

.tiktok-shop-page .btn-cta.secondary:hover {
	background: rgba(255, 255, 255, 0.1);
	border-color: var(--tiktok-white);
}

.tiktok-shop-page .cta-contact {
	margin-top: 32px;
	display: flex;
	justify-content: center;
	gap: 32px;
	flex-wrap: wrap;
}

.tiktok-shop-page .cta-contact-item {
	display: flex;
	align-items: center;
	gap: 8px;
	color: rgba(255, 255, 255, 0.9);
	font-size: 0.9375rem;
}

.tiktok-shop-page .cta-contact-item .material-symbols-outlined {
	font-size: 20px;
}


/* ========================================
   RESPONSIVE STYLES
   ======================================== */

/* Large Desktop (max-width: 1200px) */
@media (max-width: 1200px) {
	.tiktok-shop-page .hero-title {
		font-size: 2.25rem;
	}

	.tiktok-shop-page .target-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.tiktok-shop-page .commission-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

/* Tablet (max-width: 1024px) */
@media (max-width: 1024px) {
	.tiktok-shop-page .hero-grid {
		grid-template-columns: 1fr;
		gap: 40px;
	}

	.tiktok-shop-page .hero-visual {
		order: -1;
	}

	.tiktok-shop-page .hero-content {
		text-align: center;
	}

	.tiktok-shop-page .hero-badge {
		margin-left: auto;
		margin-right: auto;
	}

	.tiktok-shop-page .hero-buttons {
		justify-content: center;
	}

	.tiktok-shop-page .commitment-grid {
		grid-template-columns: 1fr;
	}

	.tiktok-shop-page .strengths-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.tiktok-shop-page .strengths-grid .strength-card:last-child {
		grid-column: span 2;
		max-width: 400px;
		margin: 0 auto;
	}

	.tiktok-shop-page .deliverables-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.tiktok-shop-page .deliverables-grid .deliverable-card:last-child {
		grid-column: span 2;
		max-width: 400px;
		margin: 0 auto;
	}

	.tiktok-shop-page .refund-grid {
		grid-template-columns: 1fr;
	}

	/* Table responsive */
	.tiktok-shop-page .services-table-wrapper,
	.tiktok-shop-page .pricing-table-wrapper {
		overflow-x: auto;
	}

	.tiktok-shop-page .services-table,
	.tiktok-shop-page .pricing-table {
		min-width: 700px;
	}

	/* Workflow responsive */
	.tiktok-shop-page .workflow-phase .phase-content {
		padding: 24px;
	}

	.tiktok-shop-page .workflow-phase .phase-steps {
		grid-template-columns: 1fr 1fr;
	}

	/* Achievements responsive */
	.tiktok-shop-page .achievements-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.tiktok-shop-page .achievements-grid .achievement-card:last-child {
		grid-column: span 2;
		max-width: 400px;
		margin: 0 auto;
	}
}

/* Mobile Large (max-width: 768px) */
@media (max-width: 768px) {
	.tiktok-shop-page .container {
		padding: 0 16px;
	}

	.tiktok-shop-page .tiktok-hero {
		padding: 40px 0 60px;
	}

	.tiktok-shop-page .hero-title {
		font-size: 1.875rem;
	}

	.tiktok-shop-page .hero-desc {
		font-size: 1rem;
	}

	.tiktok-shop-page .hero-buttons {
		flex-direction: column;
	}

	.tiktok-shop-page .btn-primary,
	.tiktok-shop-page .btn-secondary {
		width: 100%;
	}

	.tiktok-shop-page .floating-badge {
		display: none;
	}

	.tiktok-shop-page .section-title {
		font-size: 1.5rem;
	}

	.tiktok-shop-page .tiktok-target,
	.tiktok-shop-page .tiktok-services-table,
	.tiktok-shop-page .tiktok-pricing,
	.tiktok-shop-page .tiktok-commission,
	.tiktok-shop-page .tiktok-commitment,
	.tiktok-shop-page .tiktok-conditions,
	.tiktok-shop-page .tiktok-strengths,
	.tiktok-shop-page .tiktok-deliverables {
		padding: 60px 0;
	}

	.tiktok-shop-page .target-grid {
		grid-template-columns: 1fr;
	}

	/* Achievements responsive */
	.tiktok-shop-page .tiktok-achievements {
		padding: 60px 0;
	}

	.tiktok-shop-page .achievements-grid {
		grid-template-columns: 1fr;
		gap: 20px;
	}

	.tiktok-shop-page .achievements-grid .achievement-card:last-child {
		grid-column: span 1;
		max-width: none;
	}

	.tiktok-shop-page .commission-grid {
		grid-template-columns: 1fr;
	}

	.tiktok-shop-page .commission-card .card-value {
		font-size: 2.5rem;
	}

	.tiktok-shop-page .strengths-grid {
		grid-template-columns: 1fr;
	}

	.tiktok-shop-page .strengths-grid .strength-card:last-child {
		grid-column: span 1;
		max-width: none;
	}

	.tiktok-shop-page .deliverables-grid {
		grid-template-columns: 1fr;
	}

	.tiktok-shop-page .deliverables-grid .deliverable-card:last-child {
		grid-column: span 1;
		max-width: none;
	}

	.tiktok-shop-page .tiktok-cta {
		padding: 60px 0;
	}

	.tiktok-shop-page .cta-title {
		font-size: 1.75rem;
	}

	.tiktok-shop-page .cta-buttons {
		flex-direction: column;
	}

	.tiktok-shop-page .btn-cta {
		width: 100%;
		min-width: auto;
	}

	.tiktok-shop-page .cta-contact {
		flex-direction: column;
		gap: 16px;
	}

	/* Workflow responsive */
	.tiktok-shop-page .tiktok-workflow {
		padding: 60px 0;
	}

	.tiktok-shop-page .workflow-timeline::before {
		left: 20px;
		width: 3px;
	}

	.tiktok-shop-page .workflow-phase {
		padding-left: 60px;
		padding-bottom: 32px;
	}

	.tiktok-shop-page .workflow-phase .phase-number {
		width: 44px;
		height: 44px;
		font-size: 1rem;
	}

	.tiktok-shop-page .workflow-phase .phase-content {
		padding: 20px;
	}

	.tiktok-shop-page .workflow-phase .phase-title {
		font-size: 1.1rem;
	}

	.tiktok-shop-page .workflow-phase .phase-steps {
		grid-template-columns: 1fr;
	}

	.tiktok-shop-page .tiktok-workflow .cta-box {
		padding: 40px 24px;
	}

	.tiktok-shop-page .tiktok-workflow .cta-title {
		font-size: 1.5rem;
	}

	/* Lightbox responsive */
	.tiktok-shop-page .lightbox-prev,
	.tiktok-shop-page .lightbox-next {
		width: 44px;
		height: 44px;
	}

	.tiktok-shop-page .lightbox-prev {
		left: 10px;
	}

	.tiktok-shop-page .lightbox-next {
		right: 10px;
	}

	.tiktok-shop-page .lightbox-prev .material-symbols-outlined,
	.tiktok-shop-page .lightbox-next .material-symbols-outlined {
		font-size: 24px;
	}

	.tiktok-shop-page .lightbox-close {
		top: 10px;
		right: 10px;
		width: 40px;
		height: 40px;
	}

	.tiktok-shop-page .lightbox-close .material-symbols-outlined {
		font-size: 24px;
	}
}

/* Mobile Small (max-width: 480px) */
@media (max-width: 480px) {
	.tiktok-shop-page .hero-title {
		font-size: 1.5rem;
	}

	.tiktok-shop-page .section-title {
		font-size: 1.375rem;
	}

	.tiktok-shop-page .target-card {
		padding: 20px;
	}

	.tiktok-shop-page .commitment-card {
		padding: 24px;
	}

	.tiktok-shop-page .strength-card {
		padding: 24px;
	}

	.tiktok-shop-page .deliverable-card {
		padding: 24px;
	}

	.tiktok-shop-page .condition-item {
		padding: 16px;
	}

	.tiktok-shop-page .payment-terms {
		padding: 24px;
	}

	.tiktok-shop-page .cta-title {
		font-size: 1.5rem;
	}
}
