/*
Theme Name: ZFlash
Author: Meta Sync Technologies
Version: 999.0
Description: Custom Wordpress Theme By Meta Sync Technologies.
*/
@font-face {
	font-family: 'Poppins';
	src: url('fonts/Poppins-Black.ttf') format('truetype');
	font-weight: 900;
}
@font-face {
	font-family: 'Poppins';
	src: url('fonts/Poppins-Bold.ttf') format('truetype');
	font-weight: 700;
}
@font-face {
	font-family: 'Poppins';
	src: url('fonts/Poppins-ExtraBold.ttf') format('truetype');
	font-weight: 800;
}
@font-face {
	font-family: 'Poppins';
	src: url('fonts/Poppins-ExtraLight.ttf') format('truetype');
	font-weight: 200;
}
@font-face {
	font-family: 'Poppins';
	src: url('fonts/Poppins-Light.ttf') format('truetype');
	font-weight: 300;
}
@font-face {
	font-family: 'Poppins';
	src: url('fonts/Poppins-Medium.ttf') format('truetype');
	font-weight: 500;
}
@font-face {
	font-family: 'Poppins';
	src: url('fonts/Poppins-Regular.ttf') format('truetype');
	font-weight: 400;
}
@font-face {
	font-family: 'Poppins';
	src: url('fonts/Poppins-SemiBold.ttf') format('truetype');
	font-weight: 600;
}
@font-face {
	font-family: 'Poppins';
	src: url('fonts/Poppins-Thin.ttf') format('truetype');
	font-weight: 100;
}
body {
	font-family: 'Poppins', sans-serif;
}

p {
	font-family: 'Poppins', sans-serif;
	font-weight: 400;/* Regular */
}
/*  Header start*/
/*  Main Menu start*/
.main_nav ul {
	padding: 0;
	margin: 0;
	list-style: none;
	display: flex;
	gap: 32px;
	justify-content: center;
}
.main_nav ul li a {
	color: rgba(198, 198, 198, 1);
	font-family: Poppins;
	font-size: 14px;
	font-weight: 400;
	line-height: 20px;
	text-align: left;
	transition: color 0.3s ease;
	padding: 32px 0;
}
.main_nav ul li a:hover {
	color: #fff;
}
/* Submenu Styles */
.main_nav .menu-item-has-children {
	position: relative;
}
.main_nav .menu-item-has-children>a::after {
	content: '';
	display: inline-block;
	width: 12px;
	height: 12px;
	margin-left: 8px;
	background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="rgba(198, 198, 198, 1)" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><polyline points="6 9 12 15 18 9"></polyline></svg>');
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
	transition: transform 0.3s ease;
	vertical-align: middle;
}
.main_nav .menu-item-has-children:hover>a::after {
	transform: rotate(180deg);
}
.main_nav .sub-menu {
	position: absolute;
	top: 0;
	left: 100%;
	background-color: rgba(30, 30, 30, 0.95);
	border-radius: 4px;
	padding: 12px 0;
	min-width: 200px;
	list-style: none;
	display: none;
	flex-direction: column;
	gap: 0;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
	z-index: 1000;
	margin-top: 30px;
}
.main_nav>.menu>.menu-item-has-children>.sub-menu {
	top: 100%;
	left: 0;
}
.faq_question {
	text-align: left;
}
.main_nav .menu-item-has-children:hover>.sub-menu {
	display: flex;
}
.main_nav .sub-menu .menu-item {
	padding: 0;
	position: relative;
}
.main_nav .sub-menu .menu-item a {
	display: block;
	padding: 10px 20px;
	color: rgba(198, 198, 198, 1);
	font-size: 13px;
	text-decoration: none;
	transition: all 0.3s ease;
	white-space: nowrap;
	display: flex;
	align-items: center;
}
.main_nav .sub-menu .menu-item a:hover {
	background-color: rgba(255, 255, 255, 0.1);
	color: #fff;
	padding-left: 25px;
}
/* Third and Fourth level submenus */
.main_nav .sub-menu .menu-item-has-children>a::after {
	content: '';
	display: inline-block;
	width: 12px;
	height: 12px;
	margin-left: auto;
	background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="rgba(198, 198, 198, 1)" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><polyline points="9 18 15 12 9 6"></polyline></svg>');
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
	transition: transform 0.3s ease;
}
.main_nav .sub-menu .menu-item-has-children:hover>a::after {
	transform: rotate(90deg);
}
/*  Main Menu End*/
.call_us_txt a {
	border-radius: 8px;
	background: rgba(0, 212, 255, 1);
	padding: 12px 24px;
	color: rgba(0, 0, 0, 1);
	font-family: Poppins;
	font-size: 14px;
	font-weight: 700;
	line-height: 20px;
	text-align: center;
	display: inline-block;
	transition: ease all 0.3s;
	text-decoration: none;
	border: 1px solid rgba(0, 212, 255, 1);
}
.call_us_txt a:hover {
	background: none;
	border: 1px solid rgba(0, 168, 216, 1);
	color: rgba(0, 168, 216, 1);
}
.header {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 100;
	padding: 30px 0;
	transition: all 0.3s ease;
}
.header.sticky {
	position: fixed;
	top: 0;
	left: 0;
	background: rgba(0, 0, 0, 0.8);
	box-shadow: 0 3px 10px rgba(0,0,0,0.15);
	padding: 20px 0;
}
a:hover {
	text-decoration: none;
}
/* Preloader overlay */
#preloader {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: #000; /* background color */
	display: flex;
	justify-content: center;
	align-items: center;
	z-index: 999999;
}
/* Loader animation */
.loader {
	width: 50px;
	height: 50px;
	border: 5px solid #fff;
	border-top: 5px solid transparent;
	border-radius: 50%;
	animation: spin 0.9s linear infinite;
}
 @keyframes spin {
 from {
transform: rotate(0deg);
}
to {
	transform: rotate(360deg);
}
}
/* Hero Section */
.hero_section {
	position: relative;
	background: url("images/herobg.png") right top / 82% no-repeat rgb(0, 0, 0);
	display: flex;
	justify-content: center;
	align-items: center;
	min-height: 100vh;
}
.hero_content {
	padding-top: 150px;
	padding-bottom: 100px;
	width: 100%;
}
.hero_text {
	color: #fff;
}
.hero_badge {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	box-sizing: border-box;
	border: 1.04px solid rgba(28, 182, 248, 0.3);
	border-radius: 10379.48px;
	backdrop-filter: blur(20.76103401184082px);
	background: rgba(65, 65, 65, 1);
	padding: 8.3px 16.61px 8.3px 16.61px;
	color: rgba(255, 255, 255, 1);
	font-size: 14px;
	font-weight: 400;
	line-height: 20.76px;
	letter-spacing: 0%;
	text-align: left;
}
.hero_title {
	font-size: 107px;
	font-weight: 700;
	line-height: 119.5px;
	margin-top: 20px;
	text-align: left;
}
.hero_title span {
	color: #00c8ff;
}
.hero_description {
	color: rgba(166, 166, 166, 1);
	font-size: 20.76px;
	font-weight: 400;
	line-height: 29.07px;
	letter-spacing: 0%;
	text-align: left;
}
.hero_buttons {
	display: flex;
	gap: 16px;
	margin-bottom: 30px;
	padding-top: 10px;
}

.btn {
	display: inline-block;
	padding: 12px 32px;
	border-radius: 8px;
	font-weight: 600;
	color: rgba(0, 0, 0, 1);
	font-size: 18.68px;
	font-weight: 500;
	line-height: 29.07px;
	letter-spacing: 0%;
	text-align: center;
	transition: all 0.3s ease;
}
.btn-primary {
	background-color: rgba(4, 217, 255, 1);
	color: #000;
	border-color: rgba(4, 217, 255, 1);
}
.btn-primary:hover {
	background-color: rgba(4, 217, 255, 1);
	transform: translateY(-2px);
	border-color: rgba(4, 217, 255, 1);
}
.btn-secondary {
	background-color: transparent;
	color: rgba(4, 217, 255, 1);
	border: 1px solid rgba(4, 217, 255, 1);
}
.btn-secondary:hover {
	background-color: rgba(0, 200, 255, 0.1);
	transform: translateY(-2px);
}
.hero_stores {
	display: flex;
	gap: 16px;
}
.store-link {
	display: inline-block;
	transition: transform 0.3s ease;
}
.store-link:hover {
	transform: translateY(-4px);
}
.product-info h2 {
	font-size: 48px;
    font-weight: 600;
    line-height: 59px;
    text-align: left;
}
.product-meta {
    color: #59636A;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 25.436px;
}
.product-reviews {
    color: #59636A;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 29.675px;
    margin-left: 6px;
}
.product-price {
    color: #171D22;
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: 31.795px;
}
span.fw-bold {
    color: #59636A;
    font-size: 19.077px;
    font-style: normal;
    font-weight: 400;
    line-height: 31.795px;
    margin-right: 10px;
}
.product-cart-form form {
    display: flex;
    align-items: center;
    gap: 20px;
}
/* Container styling */
.woocommerce-MyAccount-navigation {
    background-color: #f9f9f9; /* light neutral background */
    border-radius: 10px;
    padding: 20px;
    width: 250px; /* fixed sidebar width */
    font-family: 'Poppins', sans-serif;
}

/* Remove default list styles */
.woocommerce-MyAccount-navigation ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

/* Each nav item */
.woocommerce-MyAccount-navigation li {
    margin-bottom: 10px;
}

/* Links */
.woocommerce-MyAccount-navigation a {
    display: block;
    padding: 12px 15px;
    color: #333;
    font-size: 15px;
    font-weight: 500;
    border-radius: 6px;
    text-decoration: none;
    transition: all 0.3s ease;
}

/* Active link */
.woocommerce-MyAccount-navigation li.is-active a {
    background-color: #00d4ff;
    color: #fff;
    font-weight: 600;
}

/* Hover effect */
.woocommerce-MyAccount-navigation a:hover {
    background-color: #00b0cc;
    color: #fff;
}

/* Optional: icon spacing if you add icons later */
.woocommerce-MyAccount-navigation a svg {
    margin-right: 8px;
    vertical-align: middle;
}

/* Responsive: stack menu at smaller screens */
@media (max-width: 768px) {
    .woocommerce-MyAccount-navigation {
        width: 100%;
        padding: 15px;
        margin-bottom: 20px;
    }
}

/* WooCommerce All Buttons – Normal State */
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce input#submit,
.woocommerce-cart .wc-proceed-to-checkout a.checkout-button,
.woocommerce a.add_to_cart_button,
.woocommerce button.single_add_to_cart_button {
    padding: 15px 30px;
    font-size: 19.077px;
    font-style: normal;
    font-weight: 500;
    line-height: 31.795px;
    display: block;
    background: #000;
    border: 1px solid #000;
    color: #fff;
    text-align: center;
    border-radius: 0;
    transition: all 0.3s ease;
}
.product-thumbs {
    margin: 0 -10px;
}
.zflash-ecu-unlock__header h1 { margin: 0 0 12px; }
  .zflash-ecu-unlock__contact p { margin: 0 0 6px; }
  .zflash-ecu-unlock__block { margin: 24px 0; }
  .zflash-ecu-unlock__table table { width: 100%; border-collapse: collapse; }
  .zflash-ecu-unlock__table th, .zflash-ecu-unlock__table td { border: 1px solid rgba(0,0,0,0.12); padding: 10px; text-align: left; }
  .zflash-ecu-unlock__cta { padding: 16px; border: 1px solid rgba(0,0,0,0.12); border-radius: 12px; }
  .zflash-ecu-unlock__button { display: inline-block; padding: 12px 16px; border-radius: 10px; text-decoration: none; border: 1px solid rgba(0,0,0,0.18); }
a {
    color: rgba(0, 212, 255, 1);
}
a:hover {
    color: rgb(0 196 255);
}
/* WooCommerce BLOCK cart → Proceed to Checkout button */
.wc-block-cart__submit-button,
.wc-block-components-button.wc-block-cart__submit-button {
    border-radius: 8px !important;
    background: rgba(0, 212, 255, 1) !important;
    padding: 12px 24px !important;
    color: #000 !important;
    font-family: Poppins, sans-serif !important;
    font-size: 14px !important;
    font-weight: 700 !important;
    line-height: 20px !important;
    text-align: center !important;
    border: 1px solid rgba(0, 212, 255, 1) !important;
    text-decoration: none !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
    width: 100% !important;
    transition: all 0.3s ease !important;
}
.wc-block-cart__submit-button:hover,
.wc-block-components-button.wc-block-cart__submit-button:hover {
    background: #000 !important;
    color: #fff !important;
    border-color: #000 !important;
}

/* Inner text fix */
.wc-block-cart__submit-button:hover .wc-block-components-button__text {
    color: #fff !important;
}
.wc-block-components-button__text {
    color: inherit !important;
}
.wc-block-cart__submit-button:focus,
.wc-block-cart__submit-button:active {
    outline: none;
    box-shadow: none;
}
/* WooCommerce BLOCK checkout → Place Order button */
.wc-block-components-checkout-place-order-button {
    border-radius: 8px;
    background: rgba(0, 212, 255, 1);
    padding: 12px 24px;
    color: #000;
    font-family: Poppins, sans-serif;
    font-size: 14px;
    font-weight: 700;
    line-height: 20px;
    text-align: center;
    border: 1px solid rgba(0, 212, 255, 1);
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.wc-block-components-checkout-place-order-button:hover {
    background: #000;
    color: #fff;
    border-color: #000;
}

/* Inner text fix */
.wc-block-components-checkout-place-order-button .wc-block-components-button__text {
    color: inherit;
}

.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce input#submit,
.woocommerce-cart .wc-proceed-to-checkout a.checkout-button,
.woocommerce div.product form.cart .single_add_to_cart_button {
    border-radius: 8px !important;
    background: rgba(0, 212, 255, 1) !important;
    padding: 12px 24px !important;
    color: rgba(0, 0, 0, 1) !important;
    font-family: Poppins, sans-serif !important;
    font-size: 14px !important;
    font-weight: 700 !important;
    line-height: 20px !important;
    text-align: center !important;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(0, 212, 255, 1) !important;
    text-decoration: none !important;
    transition: all 0.3s ease !important;
}
.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover,
.woocommerce input#submit:hover,
.woocommerce-cart .wc-proceed-to-checkout a.checkout-button:hover,
.woocommerce div.product form.cart .single_add_to_cart_button:hover {
    background: #000 !important;
    color: #fff !important;
    border-color: #000 !important;
}
.woocommerce div.product form.cart {
    display: flex;
    gap: 12px;
}

.woocommerce div.product form.cart .quantity {
    flex: 0 0 90px;
}

.woocommerce div.product form.cart .quantity input.qty {
    width: 100%;
    padding: 12px 8px;
    font-family: Poppins, sans-serif;
    font-size: 14px;
    font-weight: 700;
    line-height: 20px;
    border-radius: 8px;
    border: 1px solid rgba(0, 212, 255, 1);
    text-align: center;
    height: 100%;
}
.woocommerce div.product form.cart .single_add_to_cart_button {
    height: 100%;
}
.woocommerce .quantity .qty {
    width: 8em;
    text-align: center;
    height: 44px;
    border-radius: 5px;
    border-color: #eee;
    box-shadow: none;
    border-style: solid;
}
.product-slider .slick-list .slick-slide img {
    width: 100%;
    border-radius: 10px !important;
    height: 360px;
    object-fit: cover;
}
.product-thumbs .slick-list .slick-slide {
    padding: 0 10px;
}
.product-thumbs .slick-list .slick-slide img{
   width: 100%;
    border-radius: 10px !important;
    height: 120px;
    object-fit: cover;
}

h3 {
    font-size: 40px;
    font-weight: 600;
    line-height: 51px;
}
h4 {
    font-size: 36px;
    font-weight: 600;
    line-height: 46px;
}
h5 {
    font-size: 32px;
    font-weight: 600;
    line-height: 42px;
}
h5 {
    font-size: 28px;
    font-weight: 600;
    line-height: 38px;
}
@media (max-width: 768px) {
    .woocommerce div.product form.cart {
        flex-direction: column;
    }

    .woocommerce div.product form.cart .quantity {
        width: 100%;
    }
}



/* Responsive */
@media (max-width: 768px) {
.hero_section {
	min-height: 50vh;
	background-size: auto 100%;
	background-position: -170px;
}
.why_zflash_content {
	padding-left: 0;
	padding-top: 30px;
}
.hero_title {
	font-size: 32px;
	line-height: normal;
}
.hero_content {
	padding-top: 130px;
	padding-bottom: 50px;
	width: 100%;
}
.hero_description {
	font-size: 14px;
}
.hero_buttons {
	flex-direction: column;
}
.btn {
	text-align: center;
}
}
/*  Header End*/

/* Why ZFLASH Section */
.why_zflash_section {
	padding: 80px 0;
	background-color: #0a0a0a;
	position: relative;
	overflow: hidden;
}
.why_zflash_image {
	display: flex;
	justify-content: center;
	align-items: center;
}
.why_zflash_image .phone-mockup {
	max-width: 100%;
	height: auto;
	border: 1px solid rgba(128, 128, 128, 1);
	border-radius: 8px;
}
 @keyframes glow {
 0%,  100% {
 box-shadow: 0 20px 60px rgba(0, 200, 255, 0.1);
}
 50% {
 box-shadow: 0 20px 60px rgba(0, 200, 255, 0.2);
}
}
.section_badge {
	box-sizing: border-box;
	border: 1px solid rgba(28, 182, 248, 0.3);
	border-radius: 9999px;
	backdrop-filter: blur(20px);
	background: rgba(65, 65, 65, 1);
	padding: 4px 16px 4px 16px;
	color: rgba(255, 255, 255, 1);
	font-size: 14px;
	font-weight: 400;
	line-height: 20px;
	text-align: left;
	display: inline-flex;
	margin-bottom: 15px;
}
.section_title {
	color: rgba(255, 255, 255, 1);
	font-size: 48px;
	font-weight: 600;
	line-height: 59px;
	text-align: left;
}
.section_description {
	color: rgba(166, 166, 166, 1);
	font-size: 18px;
	font-weight: 400;
	line-height: 29.25px;
	text-align: left;
	margin-bottom: 25px;
}
.features_grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 16px;
	margin-bottom: 20px;
}
.feature_item {
	display: flex;
	gap: 12px;
	padding: 16px;
	box-sizing: border-box;
	border: 1px solid rgba(38, 38, 38, 0.5);
	border-radius: 12px;
	backdrop-filter: blur(20px);
	background: rgba(20, 20, 20, 0.8);
	transition: all 0.3s ease;
	align-items: center;
}
.feature_item:hover {
	background-color: rgba(0, 200, 255, 0.12);
	border-color: rgba(0, 200, 255, 0.3);
	transform: translateY(-4px);
}
.feature_icon {
	width: 48px;
	height: 48px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}
.feature_icon img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}
.feature_text h3 {
	color: rgba(255, 255, 255, 1);
	font-size: 16px;
	font-weight: 500;
	line-height: 24px;
	letter-spacing: 0%;
	text-align: left;
}
.why_zflash_content {
	padding-left: 4%;
}
.comparison_box {
	box-sizing: border-box;
	border: 1px solid rgba(38, 38, 38, 1);
	border-radius: 16px;
	background: rgba(13, 13, 13, 1);
	padding: 24px;
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.comparison_row {
	display: flex;
	flex-direction: column;
	gap: 8px;
	flex: 1;
}
.comparison_row.zflash_row {
	align-items: flex-end;
}
.comparison_label {
	color: rgba(166, 166, 166, 1);
	font-size: 16px;
	font-weight: 400;
	line-height: 24px;
	letter-spacing: 0%;
	text-align: left;
}
span.comparison_labeltwo {
	color: rgba(255, 156, 156, 1);
	font-size: 16px;
	font-weight: 600;
	line-height: 24px;
	letter-spacing: 0%;
	text-align: left;
}
.comparison_value {
	color: rgba(255, 255, 255, 1);
	font-size: 16px;
	font-weight: 600;
	line-height: 24px;
	letter-spacing: 0%;
	text-align: left;
}
.comparison_value.highlight_cyan {
	color: #00c8ff;
}

/* Responsive */
@media (max-width: 768px) {
.why_zflash_section {
	padding: 60px 0;
}
.section_subtitle {
	line-height: normal;
}
.steps_image {
	padding-top: 30px;
}
.section_title {
	font-size: 32px;
	line-height: normal;
}
.section_description {
	font-size: 16px;
	line-height: normal;
}
.features_grid {
	grid-template-columns: 1fr;
}
.comparison_box {
	gap: 20px;
	padding: 12px;
}
.comparison_value {
	font-size: 14px;
}
section.steps_section .section_header {
	text-align: center;
	padding: 0;
	margin-bottom: 30px;
}
.comparison_row.zflash_row {
	align-items: flex-start;
}
}
/* Three Steps Section */
.steps_section {
	padding: 80px 0;
	position: relative;
}
.section_header {
	text-align: center;
	margin-bottom: 50px;
	padding: 0 12%;
}
.section_title_center {
	color: rgba(16, 17, 16, 1);
	font-size: 78px;
	font-weight: 700;
	line-height: 88px;
	letter-spacing: 0%;
	text-align: center;
	text-transform: capitalize;
}
.section_subtitle {
	color: rgba(64, 65, 64, 1);
	font-size: 18px;
	font-weight: 400;
	line-height: 30px;
	letter-spacing: -1%;
	text-align: center;
}
.steps_list {
	display: flex;
	flex-direction: column;
	gap: 40px;
}
.step_item {
	display: flex;
	gap: 24px;
	align-items: flex-start;
	position: relative;
	padding-left: 110px;
}
.step_item:not(:last-child)::after {
	content: '';
	position: absolute;
	left: 35px;
	top: 55px;
	width: 1px;
	height: 100%;
	border-right: 2px dashed rgba(112, 112, 112, 1);
}
.step_number {
	position: absolute;
	left: 0;
	top: 0;
	width: 70px;
	height: 70px;
	color: rgba(64, 65, 64, 1);
	border-radius: 50%;
	display: flex;
	align-items: center;
	font-size: 24px;
	font-weight: 600;
	line-height: 34px;
	flex-shrink: 0;
	justify-content: center;
	border: 1px solid rgba(112, 112, 112, 1);
	background: #fff;
	z-index: 9;
}
.step_content {
	flex: 1;
}
.step_title {
	color: rgba(16, 17, 16, 1);
	font-size: 32px;
	font-weight: 600;
	line-height: 54px;
	letter-spacing: 0%;
	text-align: left;
}
.step_description {
	color: rgba(64, 65, 64, 1);
	font-size: 16px;
	font-weight: 400;
	line-height: 27px;
	letter-spacing: -1%;
	text-align: left;
	margin: 0;
}
.steps_image {
	display: flex;
	justify-content: center;
	align-items: center;
}
.steps_image .step-mockup {
	max-width: 100%;
	height: auto;
	border-radius: 8px;
}
.container.no_content {
    padding: 100px 0;
    text-align: center;
}
section.transformation-section {
	background: #000;
	padding: 100px 0 100px 0;
	background-image: url(images/mbl.png);
	background-size: cover;
	background-position: bottom center;
}
.tag-pill {
	box-sizing: border-box;
	border: 1px solid rgba(28, 182, 248, 0.3);
	border-radius: 9999px;
	backdrop-filter: blur(20px);
	background: rgba(65, 65, 65, 1);
	padding: 8px 32px 8px 32px;
	color: #fff;
	font-size: 14px;
	font-weight: 400;
	line-height: 20px;
}
.faq_section::before {
	content: "";
	border-radius: 9999px;
	filter: blur(120px);
	background: rgba(130, 73, 223, 0.2);
	/* Overlay+Blur */
	width: 320px;
	height: 320px;
}
.faq_answer {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.3s ease;
}
.faq_item.active .faq_answer {
	max-height: 200px; /* auto can't animate, so use a large number */
}
.faq_icon img {
	transition: transform 0.3s ease;
}
.faq_item.active .faq_icon img {
	transform: rotate(180deg);
}
h2.section-title {
	color: #fff;
	font-size: 48px;
	font-weight: 700;
	line-height: 55px;
	text-align: center;
}
p.section-subtitle {
	color: rgba(238, 238, 238, 1);
	font-size: 18px;
	font-weight: 400;
	line-height: 28px;
	text-align: center;
}
.performance_table_heading {
	display: flex;
	justify-content: space-between;
	width: 100%;
	padding: 0 27px;
	margin-top: 30px;
}
h2.Metric {
	color: rgba(166, 166, 166, 1);
	font-size: 14px;
	font-weight: 600;
	line-height: 20px;
}
.perf-row {
	display: flex;
	justify-content: space-between;
	border: 1px solid rgba(38, 38, 38, 0.5);
	border-radius: 12px;
	backdrop-filter: blur(20px);
	background: rgba(20, 20, 20, 1);
	padding: 27px;
	margin: 10px 0;
	flex-wrap: wrap;
}
.perf_col {
	width: 25%;
}
.metric-label {
	color: rgba(255, 255, 255, 1);
	font-size: 16px;
	font-weight: 600;
	line-height: 24px;
	text-align: left;
}
.metric-before {
	color: rgba(166, 166, 166, 1);
	font-size: 16px;
	font-weight: 400;
	line-height: 24px;
	text-align: center;
}
.metric-after.highlight {
	color: rgba(0, 212, 255, 1);
	font-size: 16px;
	font-weight: 700;
	line-height: 24px;
	text-align: center;
}
.metric-gain.gain-blue {
	border-radius: 9999px;
	background: rgba(0, 212, 255, 0.2);
	padding: 4px 12px;
	color: rgba(0, 212, 255, 1);
	font-size: 14px;
	font-weight: 700;
	line-height: 20px;
	text-align: right;
	display: inline-flex;
	float: right;
	align-items: center;
	gap: 5px;
}
section.transformation-section .container {
	max-width: 1000px;
}
h2.Metric {
	width: 25%;
	text-align: center;
}
h2.Metric:first-child {
	text-align: left;
}
h2.Metric:last-child {
	text-align: right;
}
p.cta-subtext {
	color: rgba(166, 166, 166, 1);
	font-size: 16px;
	font-weight: 400;
	line-height: 24px;
}
.home_section_four_bottom {
	text-align: center;
	width: 100%;
}
a.cta-link {
	color: rgba(0, 212, 255, 1);
	font-size: 16px;
	font-weight: 600;
	line-height: 24px;
	text-align: center;
}
.home-sec-two-heading {
	margin: 62px 0;
}
section.home-sec-two {
	padding: 100px 0px 139px 0;
	background: rgba(0, 0, 0, 1);
}
.home-sec-two-heading h2 {
	color: rgba(255, 255, 255, 1);
	font-size: 48px;
	font-weight: 600;
	line-height: 59px;
	text-align: center;
}
.home-sec-two-bottom {
	background: #282928;
	border-radius: 8px;
	padding: 37px;
}
.home-pro-heading h3 {
	color: #fff;
	font-size: 48px;
	font-weight: 700;
	line-height: 57px;
	text-align: left;
}
.home-pro-heading p {
	color: aliceblue;
	font-size: 20px;
	font-weight: 400;
	line-height: 36px;
	text-align: left;
}
.home-pro-image img {
	width: 100%;
	border-radius: 18px;
}
.home_sec_five_bottom {
    padding-top: 30px;
}
.home_section_five_blog_one {
	border-radius: 8px;
	background: #282928;
	padding: 21px;
}
.home-pro-image img {
	width: 100%;
	border-radius: 18px;
}
.home-pro-heading {
    margin-top: 32px;
    padding-left: 6%;
    padding-right: 6%;
}
.home-sec-product-one.first_row .home-pro-bottom {
    padding-right: 16%;
}
.home_section_review_client img {
    width: 50px;
    height: 50px;
    object-fit: cover; /* ensures the image keeps aspect ratio and fills the box */
    border-radius: 50%; /* optional: makes it circular */
}
.rating ul {
    list-style: none; /* removes bullets */
    padding: 0;       /* remove default padding */
    margin: 0;        /* remove default margin */
}
.dynamic_rating_stars ul {
    margin: 0;
}
.not-home .default_page_template {
    padding-top: 130px;
    padding-bottom: 80px;
}
.not-home .header {
    background: rgba(0,0,0,0.8);
}
.home-pro-heading h3 {
	color: #fff;
	font-size: 40px;
	font-weight: 700;
	line-height: 49.6px;
	text-align: center;
}
.home-pro-heading p {
	color: #fff;
	font-size: 16.53px;
	font-weight: 400;
	line-height: 27.56px;
	margin-top: 20px;
	text-align: center;
}
.home-pro-heading_one h3 {
	color: #fff;
	font-size: 40px;
	font-weight: 700;
	line-height: 49.6px;
}
.home-pro-heading_one p {
	color: #fff;
	font-size: 16.53px;
	font-weight: 400;
	line-height: 27.56px;
	margin-top: 20px;
}
.home_sec_five_bottom_two {
	padding-bottom: 30px;
}
section.home_section_six {
	background: #000;
}
.home_section_six_heading h2 {
	color: #fff;
	font-size: 48px;
	font-weight: 600;
	line-height: 59px;
	text-align: center;
}
.home_section_six_rating {
	padding: 34px 0;
	display: flex;
	justify-content: center;
	gap: 10px;
	align-items: center;
}
.home_section_six_rating h2 {
	color: #fff;
	font-size: 16px;
	font-weight: 700;
	line-height: 24px;
	margin: 0;
}
.home_section_six_rating span {
	color: rgba(166, 166, 166, 1);
	font-size: 16px;
	font-weight: 400;
	line-height: 24px;
	text-align: left;
}
.home_section_six_review_one {
	border-radius: 16px;
	background: rgba(43, 43, 43, 1);
	padding: 32px 22px;
	height:100%;
}
.home_section_review_image p {
	color: #fff;
	font-size: 17px;
	font-weight: 400;
	line-height: 27.56px;
	margin: 0;
}
.review_desctionption {
    min-height: 358px;
    margin: 30px 0;
}
.home_section_review_client {
	display: flex;
	gap: 20px;
	align-items: center;
}
.home_client_name h2 {
	color: #fff;
	font-size: 16px;
	font-weight: 500;
	line-height: 28.93px;
	margin: 0;
}
.single-product-section {
    padding-top: 150px;
    padding-bottom: 60px;
}
.home_client_name p {
	color: rgba(255, 255, 255, 1);
	font-size: 14px;
	font-weight: 400;
	line-height: 22.73px;
	margin: 0;
}
.faq_section::before {
	content: "";
	border-radius: 9999px;
	filter: blur(110px);
	background: rgba(130, 73, 223, 0.4);
	width: 320px;
	height: 320px;
	position: absolute;
	top: -50px;
	left: -25px;
	z-index: 9;
}
.faq_section::after {
	content: "";
	border-radius: 9999px;
	filter: blur(110px);
	background: rgba(130, 73, 223, 0.4);
	width: 320px;
	height: 320px;
	position: absolute;
	bottom: 200px;
	right: 0;
	z-index: 9;
}
section.faq_section {
	background: rgba(0, 0, 0, 1);
	position: relative;
	padding: 100px 0;
}
.faq-heading {
	margin-bottom: 20px;
}
.faq-heading h2 {
	color: #fff;
	font-size: 48px;
	font-weight: 600;
	line-height: 59px;
	text-align: center;
}
.faq-heading p {
	color: rgba(166, 166, 166, 1);
	font-size: 18px;
	font-weight: 400;
	line-height: 28px;
	text-align: center;
}
.faq_item {
	margin: 16px 0;
}
.faq_question {
	box-sizing: border-box;
	border: 1px solid rgba(38, 38, 38, 1);
	border-radius: 12px;
	background: transparent;
	padding: 21px;
	width: 100%;
	color: #fff;
	font-size: 16px;
	font-weight: 600;
	line-height: 24px;
	display: flex;
	justify-content: space-between;
	cursor: pointer;
}
.faq_ans_inner {
	padding: 20px 0;
}
.faq_ans_inner p:last-child {
	margin: 0;
}
.faq_ans_inner p {
	color: rgba(204, 204, 204, 1);
	font-size: 16.53px;
	font-weight: 400;
	line-height: 24px;
	margin-bottom: 10px;
}
.faq_item.active .faq_answer {
	display: block;
}
.faq_answer {
	color: #BFBFBF;
	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	line-height: 27.986px;
}
section.home_section_eight {
	padding: 100px 0;
	background-image: url("images/eight-bg.png");
	background-repeat: no-repeat;
	background-size: 780px;
	background-position: -220px 140px;
}
.home_section_eight_heading h2 {
	color: rgba(0, 0, 0, 1);
	font-size: 54px;
	font-weight: 700;
	line-height: 69px;
	text-align: center;
}
.home_section_eight_heading p {
	color: rgba(0, 0, 0, 1);
	font-size: 20px;
	font-weight: 400;
	line-height: 30px;
	text-align: center;
}
.home_section_eight_prices h2 {
	color: rgba(0, 0, 0, 1);
	font-size: 18px;
	font-weight: 400;
	line-height: 28px;
	text-align: center;
}
.home_section_eight_prices span {
	font-size: 48px;
	font-weight: 700;
	line-height: 48px;
	text-align: center;
}
.home_section_eight_button {
	text-align: center;
	margin-top: 40px;
}
a.eight_btn {
	border-radius: 12px;
	background: rgba(0, 0, 0, 1);
	padding: 17.5px 48px 18.5px 48px;
	color: rgba(255, 255, 255, 1);
	font-size: 18px;
	font-weight: 700;
	line-height: 28px;
	text-align: center;
}
.home_section_eight_stores {
	margin-top: 48px;
	display: flex;
	justify-content: center;
	gap: 16px;
}
.home_section_eight_bottom {
	margin-top: 48px;
	display: flex;
	justify-content: center;
	gap: 20px;
}
.garrenty_back {
	color: rgba(0, 0, 0, 1);
	font-size: 14px;
	font-weight: 400;
	line-height: 20px;
}
footer.footer {
	padding-top: 50px;
	background: #000;
}
.footer_address {
	color: rgba(166, 166, 166, 1);
	font-size: 14px;
	font-weight: 400;
	line-height: 22.75px;
	text-align: left;
	margin-top: 25px;
}
.footer_column_inner h2 {
	color: rgba(255, 255, 255, 1);
	font-size: 16px;
	font-weight: 600;
	line-height: 24px;
	text-align: left;
}
.footer_top {
	padding-bottom: 35px;
}
ul.flinks li a {
	color: rgba(166, 166, 166, 1);
	font-size: 14px;
	font-weight: 400;
	line-height: 20px;
	text-align: left;
	transition: ease all 0.3s;
}
ul.flinks li a:hover {
	color: rgba(255, 255, 255, 1);
}
.rating ul {
	padding: 0;
	margin: 0;
	display: flex;
	gap: 2px;
}
ul.flinks {
	padding: 0;
	margin: 0;
}
ul.flinks li {
	list-style: none;
	margin-top: 12px;
}
.footer_bottom {
	box-sizing: border-box;
	border-top: 1px solid rgba(38, 38, 38, 1);
	padding: 30px 0;
}
.footer_column_inner {
	padding-left: 20%;
}
.copy_rights {
	color: rgba(166, 166, 166, 1);
	font-size: 14px;
	font-weight: 400;
	line-height: 20px;
	text-align: left;
}
.swish_bank {
	color: rgba(166, 166, 166, 1);
	font-size: 14px;
	font-weight: 400;
	line-height: 20px;
	text-align: right;
}
.hide_desktop {
	display: none;
}
/* Responsive */
@media (max-width: 768px) {
.not-home .default_page_template {
    padding-top: 110px;
    padding-bottom: 50px;
}	
.mobile_menu.mobile-menu-open {
	left: 0;
}
.mobile_menu {
	background: #000;
	position: fixed;
	z-index: 9999;
	width: 100%;
	height: 100%;
	top: 0;
	padding: 40px 5%;
	left: -100%;
	transition: ease all 0.3s;
}
.main_nav ul {
	display: block;
}
.main_nav ul li a {
	padding: 10px 0;
	display: inline-block;
	width: 100%;
	font-size: 20px;
	line-height: 28px;
}
.main_nav {
	padding: 20px 0;
}
.close_nav {
	position: absolute;
	right: 15px;
	top: 20px;
}
.main_nav .menu-item-has-children>a::after {
	right: 10px;
	position: absolute;
}
section.transformation-section {
	padding: 60px 0;
}
h2.section-title {
	font-size: 32px;
	line-height: normal;
}
p.section-subtitle {
	font-size: 16px;
	line-height: normal;
}
.perf-row {
	padding: 16px;
}
.metric-label {
    font-size: 11px;
    font-weight: normal;
}
.metric-gain.gain-blue {
    font-size: 11px;
}
h2.Metric {
    font-size: 11px;
    font-weight: normal;
}
.performance_table_heading {
    padding: 0;
}
.metric-before {
    font-size: 11px;
}
.metric-after.highlight {
    font-size: 11px;
    font-weight: 400;
}
section.home-sec-two {
	padding: 60px 0;
}
.home-sec-two-heading h2 {
	font-size: 32px;
	line-height: normal;
}
.home-sec-two-heading h2 br {
	display: none;
}
.home-sec-two-bottom {
	padding: 20px;
}
.home-pro-heading_one p br {
	display: none;
}
.home-sec-two-bottom .row {
	flex-direction: column-reverse;
}
.home-pro-heading_one h3 {
	font-size: 32px;
	line-height: normal;
}
.home-pro-heading h3 {
	font-size: 32px;
	line-height: normal;
}
.home-pro-heading p br {
	display: none;
}
.home_section_six_heading h2 {
	font-size: 32px;
	line-height: normal;
}
.home_section_six_heading h2 br {
	display: none;
}
.home_section_six_review_one {
	margin-bottom: 30px;
}
.hide_desktop {
	display: block;
}
.hide_mobile {
	display: none;
}
.mobile_nav {
	text-align: right;
}
.steps_section {
	padding: 50px 0;
}
.section_title_center {
	font-size: 32px;
	line-height: normal;
}
.step_item {
	padding-left: 50px;
}
.step_number {
	width: 44px;
	height: 44px;
	font-size: 16px;
}
.step_title {
	font-size: 18px;
}
.steps_list {
	gap: 30px;
}
section.faq_section {
	padding: 60px 0;
}
.faq-heading h2 {
	font-size: 32px;
	line-height: normal;
}
.faq-heading h2 br {
	display: none;
}
.faq_question {
	text-align: left;
}
section.home_section_eight {
	padding: 60px 0;
}
.home_section_eight_heading h2 {
	font-size: 32px;
	line-height: normal;
}
.home_section_eight_heading p {
	font-size: 16px;
	line-height: normal;
}
.home_section_eight_heading p br {
	display: none;
}
.review_desctionption {
    min-height: unset;
}
.home_section_six_review_one {
    height: unset;
}
.faq_box {
    position: relative;
    z-index: 99;
}
section.home_section_eight {
    background-size: 120px;
    background-position: right bottom;
    padding-bottom: 150px;
}
.home_section_eight_prices span {
	font-size: 32px;
	padding: 0 5px;
}
.footer_column_inner {
	padding-left: 0;
	padding-top: 20px;
}
.footer_top {
	padding-bottom: 20px;
}
.footer_address br {
	display: none;
}
.copy_rights {
	text-align: center;
}
.swish_bank {
	text-align: center;
}
.footer_bottom {
	padding: 20px 0;
}
.home_section_eight_bottom {
	margin-top: 20px;
	gap: 10px;
	flex-direction: column;
	text-align: center;
}
.footer_top .col-md-6.pr-0 {
	padding-right: 15px !important;
}
.why_zflash_section .col-md-6.pr-0 {
    padding-right: 15px !important;
}
.home-pro-heading {
    padding: 0;
}
.home_section_five_blog_one {
    margin-top: 30px;
}
.home_sec_five_bottom {
    padding-top: 0;
}
.home-sec-two-heading {
    margin: 30px 0;
}
.home-sec-product-one.first_row .home-pro-bottom {
    padding-right: 0;
    padding-top: 20px;
}
}

/* =====================================================
   ZFLASH – NEWS / NYHETER (CLEAN, SINGLE SOURCE)
===================================================== */

.zflash-news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.zflash-news-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(0,0,0,0.06);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.zflash-news-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.12);
}

.zflash-news-card a {
    display: flex;
    flex-direction: column;
    height: 100%;
    text-decoration: none;
    color: inherit;
}

.zflash-news-thumb img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

.zflash-news-content {
    padding: 22px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.zflash-news-date {
    font-size: 13px;
    color: #777;
    margin-bottom: 6px;
}

.zflash-news-content h3 {
    font-size: 20px;
    font-weight: 600;
    line-height: 1.35;
    margin: 0 0 10px;
    color: #111;
}

.zflash-news-content p {
    font-size: 15px;
    color: #555;
    line-height: 1.6;
    margin: 0;
    flex-grow: 1;
}

/* Mobile */
@media (max-width: 768px) {
    .zflash-news-grid {
        gap: 24px;
        margin-top: 40px;
    }

    .zflash-news-thumb img {
        height: 180px;
    }

    .zflash-news-content h3 {
        font-size: 18px;
    }
}


/* =====================================================
   HOME SECTION EIGHT – CORE STYLES (CLEAN)
===================================================== */

.home_section_eight {
    position: relative;
}

/* ----- Price ----- */
.home_section_eight_prices {
    margin: 24px 0;
}

.home_section_eight_prices h2 {
    display: flex;
    justify-content: center;
    align-items: baseline;
    gap: 6px;
    margin: 0;
}

.home_section_eight_prices h2 strong {
    font-size: 48px;
    font-weight: 700;
    line-height: 1;
}

.home_section_eight_prices h2 small,
.home_section_eight_prices h2 span {
    font-size: 14px;
    font-weight: 400;
    opacity: 0.7;
}

@media (max-width: 768px) {
    .home_section_eight_prices h2 strong {
        font-size: 32px;
    }
}

/* ----- CTA helper text (optional) ----- */
.cta-subline {
    font-size: 13px;
    color: rgba(0,0,0,0.6);
    margin-top: 10px;
    text-align: center;
}

/* ----- App store helper ----- */
.store-helper {
    font-size: 14px;
    color: rgba(0,0,0,0.6);
    margin-bottom: 8px;
    text-align: center;
}

/* ----- Social icons ----- */
.home_section_eight_social {
    display: flex;
    justify-content: center;
    gap: 14px;
    margin-top: 22px;
}

.home_section_eight_social .social_icon {
    width: 40px;
    height: 40px;
    display: inline-block;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    opacity: 0.65;
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.home_section_eight_social .social_icon:hover {
    opacity: 1;
    transform: translateY(-2px);
}

.home_section_eight_social .instagram { background-image: url("images/instagram.svg"); }
.home_section_eight_social .facebook  { background-image: url("images/facebook.svg"); }
.home_section_eight_social .tiktok    { background-image: url("images/tiktok.svg"); }
.home_section_eight_social .youtube   { background-image: url("images/youtube.svg"); }

/* ----- Guarantee row ----- */
.home_section_eight_bottom {
    margin-top: 28px;
    display: flex;
    justify-content: center;
    gap: 18px;
    flex-wrap: wrap;
}

.garrenty_back {
    font-weight: 500;
    font-size: 14px;
}

/* Mobile spacing safety */
@media (max-width: 768px) {
    .home_section_eight {
        padding-bottom: 160px;
    }
}

/* Social proof – Home section eight */
.social-proof {
    font-size: 13px;
    color: rgba(0,0,0,0.55);
    margin-top: 18px;
    margin-bottom: 10px;
    text-align: center;
}

/* Social proof – force center alignment */
.home_section_eight .social-proof {
    text-align: center;
    max-width: 100%;
    margin: 16px auto 12px;
}

/* =====================================================
   ZFLASH – Home section eight SAFE CENTER FIX
===================================================== */

/* Center text-based elements only */
.home_section_eight {
    text-align: center;
}

/* Headings & description */
.home_section_eight_heading h2,
.home_section_eight_heading p {
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
}

/* Price */
.home_section_eight_prices h2 {
    justify-content: center;
}

/* CTA button */
.home_section_eight_button {
    display: flex;
    justify-content: center;
}

/* App stores */
.home_section_eight_stores {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

/* Social proof text */
.social-proof {
    text-align: center;
    margin: 16px auto 8px;
    max-width: 420px;
    font-size: 14px;
    color: rgba(0,0,0,0.65);
}

/* Social icons */
.home_section_eight_social {
    display: flex;
    justify-content: center;
    gap: 14px;
}

/* Guarantees */
.home_section_eight_bottom {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

/* =====================================================
   FIX: Comparison box – Traditionell trimning vs ZFLASH
   Endast denna sektion påverkas
===================================================== */

/* Föräldern: två kolumner */
.comparison_box {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

/* Gemensam kolumn */
.comparison_row {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

/* Vänster sida – Traditionell trimning */
.comparison_row:not(.zflash_row) {
    align-items: flex-start;
    text-align: left;
}

/* Höger sida – ZFLASH */
.comparison_row.zflash_row {
    align-items: flex-end;
    text-align: right;
}

/* Rubrik / label */
.comparison_label,
.comparison_labeltwo {
    font-size: 16px;
    line-height: 24px;
}

/* Textvärde */
.comparison_value {
    font-size: 16px;
    font-weight: 600;
    line-height: 24px;
}

/* Mobil: stapla kolumner */
@media (max-width: 768px) {
    .comparison_box {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .comparison_row.zflash_row {
        align-items: flex-start;
        text-align: left;
    }
}

/* =====================================================
   FINAL FIX – Comparison (Traditionell trimning vs ZFLASH)
===================================================== */

/* Två tydliga kolumner */
.comparison_box {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}

/* Varje sida */
.comparison_row {
    display: block;              /* 🔑 INTE flex */
}

/* Titel (överst) */
.comparison_label,
.comparison_labeltwo {
    display: block;
    font-size: 16px;
    font-weight: 600;
    line-height: 24px;
    margin-bottom: 6px;
    color: rgba(166, 166, 166, 1);
}

/* Texten under */
.comparison_value {
    display: block;
    font-size: 16px;
    font-weight: 600;
    line-height: 24px;
    white-space: normal;         /* 🔑 tillåt radbrytning */
}

/* Högerkolumn – ZFLASH */
.comparison_row.zflash_row {
    text-align: right;
}

/* Mobil: stapla snyggt */
@media (max-width: 768px) {
    .comparison_box {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .comparison_row.zflash_row {
        text-align: left;
    }
}
/* =====================================================
   ZFLASH – Content images (product description)
===================================================== */

.zflash-content-image {
    width: 100%;
    max-width: 960px;        /* snygg desktop-bredd */
    margin: 32px auto;       /* centrerad */
}

.zflash-content-image img {
    width: 100%;
    height: 420px;           /* ALLA bilder samma höjd */
    object-fit: cover;       /* fyller utan att se konstigt ut */
    border-radius: 16px;
    display: block;
}

/* Mobile */
@media (max-width: 768px) {
    .zflash-content-image img {
        height: 260px;
    }
}
/* =====================================================
   ZFLASH – DARK CART (ISOLATED, SAFE)
   Only affects WooCommerce Cart page
===================================================== */

body.woocommerce-cart {
    background: #000;
}

body.woocommerce-cart .default_page_template,
body.woocommerce-cart .site-main,
body.woocommerce-cart .entry-content {
    background: radial-gradient(1200px 600px at 30% 20%, #0c1c24 0%, #05080b 55%, #000 100%);
    color: #e7eef3;
}

/* Remove white Woo container */
body.woocommerce-cart .woocommerce {
    background: transparent;
}

/* Cart table */
body.woocommerce-cart table.shop_table {
    background: rgba(20,20,20,0.9);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 12px;
    overflow: hidden;
}

body.woocommerce-cart table.shop_table th {
    background: rgba(255,255,255,0.04);
    color: rgba(166,166,166,1);
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

body.woocommerce-cart table.shop_table td {
    border-color: rgba(255,255,255,0.05);
    color: #fff;
}

/* Product link */
body.woocommerce-cart .product-name a {
    color: rgba(0,212,255,1);
    font-weight: 500;
}

body.woocommerce-cart .product-name a:hover {
    color: #fff;
}

/* Quantity input */
body.woocommerce-cart .quantity input.qty {
    background: #0b1319;
    border: 1px solid rgba(255,255,255,0.15);
    color: #fff;
    border-radius: 6px;
}

/* Remove link */
body.woocommerce-cart .product-remove a {
    color: #ff4d4d;
}

/* Cart totals box */
body.woocommerce-cart .cart_totals {
    background: rgba(20,20,20,0.9);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 12px;
    padding: 28px;
}

body.woocommerce-cart .cart_totals h2 {
    color: #fff;
}

body.woocommerce-cart .cart_totals table th,
body.woocommerce-cart .cart_totals table td {
    border-color: rgba(255,255,255,0.05);
    color: #fff;
}

/* Coupon field */
body.woocommerce-cart .coupon input {
    background: #0b1319;
    border: 1px solid rgba(255,255,255,0.15);
    color: #fff;
    border-radius: 6px;
}

/* Fix any white blocks from WC Blocks */
body.woocommerce-cart .wc-block-cart,
body.woocommerce-cart .wc-block-components-sidebar,
body.woocommerce-cart .wc-block-components-totals-wrapper {
    background: transparent !important;
    color: #fff;
}

/* Spacing */
body.woocommerce-cart .cart-collaterals {
    margin-top: 40px;
}
/* =====================================================
   ZFLASH – DARK CHECKOUT (SAFE / ISOLATED)
   Only affects WooCommerce Checkout page
===================================================== */

body.woocommerce-checkout {
    background: #000;
}

body.woocommerce-checkout .default_page_template,
body.woocommerce-checkout .site-main,
body.woocommerce-checkout .entry-content {
    background: radial-gradient(1200px 600px at 30% 20%, #0c1c24 0%, #05080b 55%, #000 100%);
    color: #e7eef3;
}

/* Remove white wrapper */
body.woocommerce-checkout .woocommerce {
    background: transparent;
}

/* Headings */
body.woocommerce-checkout h1,
body.woocommerce-checkout h2,
body.woocommerce-checkout h3 {
    color: #fff;
}

/* Checkout form blocks */
body.woocommerce-checkout .woocommerce-checkout form.checkout {
    background: rgba(20,20,20,0.9);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 12px;
    padding: 32px;
}

/* Order summary box */
body.woocommerce-checkout #order_review {
    background: rgba(20,20,20,0.9);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 12px;
    padding: 28px;
}

/* Table inside order review */
body.woocommerce-checkout table.shop_table {
    background: transparent;
    border-color: rgba(255,255,255,0.08);
}

body.woocommerce-checkout table.shop_table th,
body.woocommerce-checkout table.shop_table td {
    border-color: rgba(255,255,255,0.05);
    color: #fff;
}

/* Inputs */
body.woocommerce-checkout input,
body.woocommerce-checkout select,
body.woocommerce-checkout textarea {
    background: #0b1319;
    border: 1px solid rgba(255,255,255,0.15);
    color: #fff;
    border-radius: 6px;
}

body.woocommerce-checkout input:focus,
body.woocommerce-checkout select:focus,
body.woocommerce-checkout textarea:focus {
    border-color: rgba(0,212,255,1);
    outline: none;
}

/* Payment box */
body.woocommerce-checkout #payment {
    background: rgba(20,20,20,0.9);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 12px;
}

/* Payment method label */
body.woocommerce-checkout .wc_payment_method label {
    color: #fff;
}

/* Block Checkout support */
body.woocommerce-checkout .wc-block-checkout,
body.woocommerce-checkout .wc-block-components-sidebar,
body.woocommerce-checkout .wc-block-components-totals-wrapper {
    background: transparent !important;
    color: #fff;
}

/* Quick pay section (GPay / Link) */
body.woocommerce-checkout .wc-block-components-express-payment {
    background: rgba(20,20,20,0.9);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 12px;
    padding: 20px;
}

/* Fix small grey texts */
body.woocommerce-checkout .woocommerce-privacy-policy-text,
body.woocommerce-checkout .woocommerce-terms-and-conditions-wrapper {
    color: rgba(200,200,200,0.8);
}
/* =====================================================
   ZFLASH – DARK ORDER RECEIVED / THANK YOU
   Only affects WooCommerce Thank You page
===================================================== */

body.woocommerce-order-received {
    background: #000;
}

body.woocommerce-order-received .default_page_template,
body.woocommerce-order-received .site-main,
body.woocommerce-order-received .entry-content {
    background: radial-gradient(1200px 600px at 30% 20%, #0c1c24 0%, #05080b 55%, #000 100%);
    color: #e7eef3;
}

/* Remove white wrapper */
body.woocommerce-order-received .woocommerce {
    background: transparent;
}

/* Headings */
body.woocommerce-order-received h1,
body.woocommerce-order-received h2,
body.woocommerce-order-received h3 {
    color: #fff;
}

/* Order overview box */
body.woocommerce-order-received .woocommerce-order-overview {
    background: rgba(20,20,20,0.9);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 12px;
    padding: 24px;
}

/* Order details table */
body.woocommerce-order-received table.shop_table {
    background: rgba(20,20,20,0.9);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 12px;
    overflow: hidden;
}

body.woocommerce-order-received table.shop_table th,
body.woocommerce-order-received table.shop_table td {
    border-color: rgba(255,255,255,0.05);
    color: #fff;
}

/* Totals styling */
body.woocommerce-order-received .order-total strong {
    color: rgba(0,212,255,1);
}

/* Addresses section */
body.woocommerce-order-received .woocommerce-customer-details {
    background: rgba(20,20,20,0.9);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 12px;
    padding: 24px;
}

/* Small meta text */
body.woocommerce-order-received .woocommerce-order-overview li {
    color: rgba(200,200,200,0.8);
}

/* Links */
body.woocommerce-order-received a {
    color: rgba(0,212,255,1);
}

body.woocommerce-order-received a:hover {
    color: #fff;
}
/* ===== Fix WooCommerce Blocks Express Payment ===== */

body.woocommerce-checkout .wc-block-components-express-payment {
    background: transparent !important;
    border: none !important;
    padding: 0 !important;
    box-shadow: none !important;
}

/* Ta bort extra container runt GPay/Link */
body.woocommerce-checkout .wc-block-components-express-payment__checkout {
    background: transparent !important;
    border: none !important;
}

/* Ta bort den mörka ramen runt hela express-sektionen */
body.woocommerce-checkout .wc-block-checkout__express-payment {
    background: transparent !important;
    border: none !important;
}

/* =====================================================
   ZFLASH – WAVE på nyhetspostens CTA ("Se effekt för min bil")
   Element: .zflash-selector-cta a.zflash-selector-btn
   (Uses ::before to avoid collisions)
   ===================================================== */

.zflash-selector-cta .zflash-selector-btn{
  position: relative;
  overflow: hidden;
  isolation: isolate;
  transform: translateZ(0);
}

/* VÅGEN */
.zflash-selector-cta .zflash-selector-btn::before{
  content:"";
  position:absolute;
  inset:-40% -60%;
  pointer-events:none;
  z-index:2;
  background:linear-gradient(
    115deg,
    rgba(255,255,255,0) 0%,
    rgba(255,255,255,0) 42%,
    rgba(255,255,255,.32) 50%,
    rgba(255,255,255,.12) 56%,
    rgba(255,255,255,0) 66%,
    rgba(255,255,255,0) 100%
  );
  transform:translateX(-75%);
  opacity:.95;
  mix-blend-mode:screen;
  animation:zflashWaveCTA 5s ease-in-out infinite;
}

/* Snabbare när man hovrar */
.zflash-selector-cta .zflash-selector-btn:hover::before{
  animation-duration:2s;
  opacity:1;
}

@keyframes zflashWaveCTA{
  0%   { transform:translateX(-75%); }
  55%  { transform:translateX(75%); }
  100% { transform:translateX(75%); }
}

@media (prefers-reduced-motion: reduce){
  .zflash-selector-cta .zflash-selector-btn::before{
    animation:none !important;
    opacity:0 !important;
  }
}

/* =====================================================
   ZFLASH – LEGAL PAGES DARK
   Gäller:
   - Användarvillkor (page-id-509)
   - Returpolicy (page-id-513)
   - Privacy Policy
   ===================================================== */

/* ---------- Page background ---------- */
body.page-id-509,
body.page-id-513,
body.privacy-policy{
  background:#0b1115 !important;
}

/* ---------- Main page wrapper ---------- */
body.page-id-509 .default_page_template,
body.page-id-513 .default_page_template,
body.privacy-policy .default_page_template{
  background:linear-gradient(180deg,#0b1115 0%,#101820 100%) !important;
  padding:40px 0 60px !important;
}

/* ---------- Container ---------- */
body.page-id-509 .default_page_template .container,
body.page-id-513 .default_page_template .container,
body.privacy-policy .default_page_template .container{
  background:#10181d !important;
  border:1px solid #1e313b !important;
  border-radius:20px !important;
  padding:42px !important;
  box-shadow:0 14px 34px rgba(0,0,0,.35) !important;
}

/* ---------- Title before section ---------- */
body.page-id-509 h1.woocommerce_page_title,
body.page-id-513 h1.woocommerce_page_title,
body.privacy-policy h1.woocommerce_page_title{
  color:#ffffff !important;
  font-size:52px !important;
  font-weight:800 !important;
  line-height:1.15 !important;
  letter-spacing:-0.02em !important;
  margin:0 0 24px !important;
}

/* ---------- Base content ---------- */
body.page-id-509 .legal-page,
body.page-id-513 .legal-page,
body.privacy-policy .privacy-policy{
  color:#d9e4ea !important;
  font-size:17px !important;
  line-height:1.75 !important;
}

/* ---------- Headings inside content ---------- */
body.page-id-509 .legal-page h1,
body.page-id-509 .legal-page h2,
body.page-id-509 .legal-page h3,
body.page-id-513 .legal-page h1,
body.page-id-513 .legal-page h2,
body.page-id-513 .legal-page h3,
body.privacy-policy .privacy-policy h1,
body.privacy-policy .privacy-policy h2,
body.privacy-policy .privacy-policy h3{
  color:#ffffff !important;
  line-height:1.15 !important;
  letter-spacing:-0.02em !important;
  margin:0 0 16px !important;
}

body.page-id-509 .legal-page h2,
body.page-id-513 .legal-page h2,
body.privacy-policy .privacy-policy h2{
  font-size:28px !important;
  font-weight:800 !important;
  margin:28px 0 14px !important;
}

/* ---------- Text ---------- */
body.page-id-509 .legal-page p,
body.page-id-509 .legal-page li,
body.page-id-509 .legal-page td,
body.page-id-509 .legal-page th,
body.page-id-513 .legal-page p,
body.page-id-513 .legal-page li,
body.page-id-513 .legal-page td,
body.page-id-513 .legal-page th,
body.privacy-policy .privacy-policy p,
body.privacy-policy .privacy-policy li,
body.privacy-policy .privacy-policy td,
body.privacy-policy .privacy-policy th{
  color:#d9e4ea !important;
}

body.page-id-509 .legal-page strong,
body.page-id-513 .legal-page strong,
body.privacy-policy .privacy-policy strong{
  color:#ffffff !important;
  font-weight:700 !important;
}

/* ---------- Links ---------- */
body.page-id-509 .legal-page a,
body.page-id-513 .legal-page a,
body.privacy-policy .privacy-policy a{
  color:#00c9ff !important;
  text-decoration:none !important;
}

body.page-id-509 .legal-page a:hover,
body.page-id-513 .legal-page a:hover,
body.privacy-policy .privacy-policy a:hover{
  color:#5edfff !important;
  text-decoration:underline !important;
}

/* ---------- Lists ---------- */
body.page-id-509 .legal-page ul,
body.page-id-509 .legal-page ol,
body.page-id-513 .legal-page ul,
body.page-id-513 .legal-page ol,
body.privacy-policy .privacy-policy ul,
body.privacy-policy .privacy-policy ol{
  margin:14px 0 18px !important;
  padding-left:24px !important;
}

body.page-id-509 .legal-page li,
body.page-id-513 .legal-page li,
body.privacy-policy .privacy-policy li{
  margin:7px 0 !important;
}

body.page-id-509 .legal-page ul li::marker,
body.page-id-509 .legal-page ol li::marker,
body.page-id-513 .legal-page ul li::marker,
body.page-id-513 .legal-page ol li::marker,
body.privacy-policy .privacy-policy ul li::marker,
body.privacy-policy .privacy-policy ol li::marker{
  color:#00c9ff !important;
}

/* ---------- Divider ---------- */
body.page-id-509 .legal-page hr,
body.page-id-513 .legal-page hr,
body.privacy-policy .privacy-policy hr{
  border:0 !important;
  border-top:1px solid #22343e !important;
  margin:26px 0 34px !important;
}

/* ---------- Mobile ---------- */
@media (max-width:991px){
  body.page-id-509 h1.woocommerce_page_title,
  body.page-id-513 h1.woocommerce_page_title,
  body.privacy-policy h1.woocommerce_page_title{
    font-size:42px !important;
  }

  body.page-id-509 .default_page_template .container,
  body.page-id-513 .default_page_template .container,
  body.privacy-policy .default_page_template .container{
    padding:28px !important;
  }
}

@media (max-width:767px){
  body.page-id-509 .default_page_template,
  body.page-id-513 .default_page_template,
  body.privacy-policy .default_page_template{
    padding:18px 0 32px !important;
  }

  body.page-id-509 .default_page_template .container,
  body.page-id-513 .default_page_template .container,
  body.privacy-policy .default_page_template .container{
    padding:20px !important;
    border-radius:14px !important;
  }

  body.page-id-509 .legal-page,
  body.page-id-513 .legal-page,
  body.privacy-policy .privacy-policy{
    font-size:16px !important;
    line-height:1.65 !important;
  }

  body.page-id-509 h1.woocommerce_page_title,
  body.page-id-513 h1.woocommerce_page_title,
  body.privacy-policy h1.woocommerce_page_title{
    font-size:34px !important;
  }

  body.page-id-509 .legal-page h2,
  body.page-id-513 .legal-page h2,
  body.privacy-policy .privacy-policy h2{
    font-size:24px !important;
  }
}
/* =====================================================
   ZFLASH – ARTICLE PAGES DARK + HEADER OFFSET FIX
   Safe scoped fix for:
   - page-id-575
   - page-id-674
   Only appends scoped rules. No existing styles removed.
   ===================================================== */

:root{
  --zflash-article-header-offset: 130px;
  --zflash-article-bg: #0b1115;
  --zflash-article-bg-soft: #101820;
  --zflash-article-card: #121b22;
  --zflash-article-text: #c7d3db;
  --zflash-article-text-soft: #9fb0bb;
  --zflash-article-heading: #ffffff;
  --zflash-article-accent: #00d9ff;
  --zflash-article-border: rgba(255,255,255,0.08);
  --zflash-article-shadow: 0 10px 30px rgba(0,0,0,0.28);
}

html{
  scroll-behavior:smooth;
}

/* Anchor / sticky header offset */
body.page-id-575 *[id],
body.page-id-674 *[id],
body.page-id-575 h1,
body.page-id-575 h2,
body.page-id-575 h3,
body.page-id-575 h4,
body.page-id-575 h5,
body.page-id-575 h6,
body.page-id-575 section,
body.page-id-674 h1,
body.page-id-674 h2,
body.page-id-674 h3,
body.page-id-674 h4,
body.page-id-674 h5,
body.page-id-674 h6,
body.page-id-674 section{
  scroll-margin-top:var(--zflash-article-header-offset);
}

/* Page background */
body.page-id-575,
body.page-id-674{
  background:var(--zflash-article-bg) !important;
  color:var(--zflash-article-text);
}

/* Keep non-home header dark on these pages */
body.page-id-575 .header,
body.page-id-674 .header,
body.page-id-575 .header.sticky,
body.page-id-674 .header.sticky{
  background:rgba(0,0,0,0.82);
}

body.page-id-575 .site,
body.page-id-575 .site-content,
body.page-id-575 .content-area,
body.page-id-575 .entry-content,
body.page-id-575 main,
body.page-id-575 article,
body.page-id-575 .default_page_template,
body.page-id-575 .site-main,
body.page-id-575 .container,
body.page-id-674 .site,
body.page-id-674 .site-content,
body.page-id-674 .content-area,
body.page-id-674 .entry-content,
body.page-id-674 main,
body.page-id-674 article,
body.page-id-674 .default_page_template,
body.page-id-674 .site-main,
body.page-id-674 .container{
  background:transparent !important;
  color:var(--zflash-article-text);
}

/* Main template wrapper */
body.page-id-575 .default_page_template,
body.page-id-674 .default_page_template{
  background:linear-gradient(180deg,var(--zflash-article-bg) 0%,var(--zflash-article-bg-soft) 100%) !important;
}

/* Content card */
body.page-id-575 .entry-content,
body.page-id-674 .entry-content{
  max-width:960px;
  margin:0 auto;
  padding:34px 24px 60px;
  background:linear-gradient(180deg,rgba(255,255,255,0.015),rgba(255,255,255,0.01)) !important;
  border:1px solid rgba(255,255,255,0.05);
  border-radius:18px;
  box-shadow:0 12px 30px rgba(0,0,0,0.22);
}

/* Typography */
body.page-id-575 h1,
body.page-id-674 h1{
  color:var(--zflash-article-heading);
  font-weight:700;
  line-height:1.12;
  letter-spacing:-0.02em;
  margin:0 0 20px;
}

body.page-id-575 h2,
body.page-id-674 h2{
  color:var(--zflash-article-heading);
  font-weight:700;
  line-height:1.2;
  letter-spacing:-0.01em;
  margin:44px 0 16px;
}

body.page-id-575 h3,
body.page-id-674 h3{
  color:var(--zflash-article-heading);
  font-weight:600;
  line-height:1.25;
  margin:28px 0 12px;
  font-size:32px;
}

body.page-id-575 h4,
body.page-id-575 h5,
body.page-id-575 h6,
body.page-id-674 h4,
body.page-id-674 h5,
body.page-id-674 h6{
  color:var(--zflash-article-heading);
}

body.page-id-575 p,
body.page-id-674 p{
  color:var(--zflash-article-text);
  line-height:1.75;
  margin:0 0 16px;
}

body.page-id-575 strong,
body.page-id-674 strong{
  color:var(--zflash-article-heading);
  font-weight:700;
}

body.page-id-575 em,
body.page-id-674 em{
  color:var(--zflash-article-text-soft);
}

body.page-id-575 a,
body.page-id-674 a{
  color:var(--zflash-article-accent);
  text-decoration:none;
}

body.page-id-575 a:hover,
body.page-id-674 a:hover{
  color:#ffffff;
  text-decoration:underline;
}

/* Lists */
body.page-id-575 ul,
body.page-id-575 ol,
body.page-id-674 ul,
body.page-id-674 ol{
  margin:0 0 22px 22px;
  padding:0;
}

body.page-id-575 li,
body.page-id-674 li{
  color:var(--zflash-article-text);
  line-height:1.7;
  margin-bottom:10px;
}

body.page-id-575 ul li::marker,
body.page-id-575 ol li::marker,
body.page-id-674 ul li::marker,
body.page-id-674 ol li::marker{
  color:var(--zflash-article-accent);
}

/* Dividers / quotes / tables */
body.page-id-575 hr,
body.page-id-674 hr{
  border:0;
  border-top:1px solid var(--zflash-article-border);
  margin:34px 0;
}

body.page-id-575 blockquote,
body.page-id-674 blockquote{
  margin:24px 0;
  padding:18px 22px;
  border-radius:14px;
  border:1px solid var(--zflash-article-border);
  border-left:3px solid var(--zflash-article-accent);
  background:linear-gradient(180deg,rgba(0,217,255,0.06),rgba(255,255,255,0.02));
  color:var(--zflash-article-text);
  box-shadow:var(--zflash-article-shadow);
}

body.page-id-575 table,
body.page-id-674 table{
  width:100%;
  border-collapse:collapse;
  margin:24px 0;
  background:rgba(255,255,255,0.02);
  border:1px solid var(--zflash-article-border);
  border-radius:12px;
  overflow:hidden;
}

body.page-id-575 th,
body.page-id-575 td,
body.page-id-674 th,
body.page-id-674 td{
  border-bottom:1px solid var(--zflash-article-border);
  padding:12px 14px;
  text-align:left;
  color:var(--zflash-article-text);
}

body.page-id-575 th,
body.page-id-674 th{
  color:var(--zflash-article-heading);
  background:rgba(255,255,255,0.03);
}

/* Media */
body.page-id-575 img,
body.page-id-674 img{
  max-width:100%;
  height:auto;
  border-radius:12px;
}

body.page-id-575 figure,
body.page-id-674 figure{
  margin:26px 0;
}

body.page-id-575 figcaption,
body.page-id-674 figcaption{
  color:var(--zflash-article-text-soft);
  font-size:0.95rem;
  margin-top:8px;
}

/* Page-builder compatibility */
body.page-id-575 .text-block,
body.page-id-575 .page-builder,
body.page-id-575 .entry-content > div,
body.page-id-674 .text-block,
body.page-id-674 .page-builder,
body.page-id-674 .entry-content > div{
  color:inherit;
  background:transparent;
}

/* Mobile */
@media (max-width:768px){
  :root{
    --zflash-article-header-offset:95px;
  }

  body.page-id-575 .entry-content,
  body.page-id-674 .entry-content{
    padding:24px 16px 44px;
    border-radius:14px;
  }

  body.page-id-575 h1,
  body.page-id-674 h1{
    font-size:2rem;
  }

  body.page-id-575 h2,
  body.page-id-674 h2{
    font-size:1.5rem;
  }

  body.page-id-575 h3,
  body.page-id-674 h3{
    font-size:1.2rem;
  }
}


/* =====================================================
   ZFLASH – ARTICLE PAGES HOTFIX v3
   Fixes:
   - page titles still sitting under the menu on page-id-575 and page-id-674
   - bright / white boxes still showing on those pages
   Scope: ONLY page-id-575 and page-id-674
   ===================================================== */

/* Darker, more solid header on these pages */
body.page-id-575 .header,
body.page-id-674 .header,
body.page-id-575 .header.sticky,
body.page-id-674 .header.sticky{
  background: rgba(0,0,0,0.96) !important;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  z-index: 10000 !important;
}

/* Push the whole template lower so the page title clears the menu */
body.page-id-575 .default_page_template,
body.page-id-674 .default_page_template{
  padding-top: 230px !important;
  padding-bottom: 90px !important;
  position: relative;
  z-index: 1;
}

/* Also offset common first content wrappers used by custom page builders */
body.page-id-575 .default_page_template > .container,
body.page-id-674 .default_page_template > .container,
body.page-id-575 .entry-content,
body.page-id-674 .entry-content,
body.page-id-575 .page-builder,
body.page-id-674 .page-builder,
body.page-id-575 .text-block,
body.page-id-674 .text-block{
  position: relative;
  z-index: 1;
}

body.page-id-575 .entry-content,
body.page-id-674 .entry-content{
  margin-top: 28px !important;
}

/* Extra safety for the very first visible heading / intro */
body.page-id-575 .entry-content > *:first-child,
body.page-id-674 .entry-content > *:first-child,
body.page-id-575 .text-block > *:first-child,
body.page-id-674 .text-block > *:first-child{
  margin-top: 0 !important;
  padding-top: 10px !important;
}

/* Stronger anchor offset */
body.page-id-575 *[id],
body.page-id-674 *[id],
body.page-id-575 h1,
body.page-id-575 h2,
body.page-id-575 h3,
body.page-id-575 h4,
body.page-id-575 h5,
body.page-id-575 h6,
body.page-id-575 section,
body.page-id-674 h1,
body.page-id-674 h2,
body.page-id-674 h3,
body.page-id-674 h4,
body.page-id-674 h5,
body.page-id-674 h6,
body.page-id-674 section{
  scroll-margin-top: 190px !important;
}

/* Kill bright cards / notices / pasted editor wrappers */
body.page-id-575 .entry-content [style*="background"],
body.page-id-674 .entry-content [style*="background"],
body.page-id-575 .entry-content .has-background,
body.page-id-674 .entry-content .has-background,
body.page-id-575 .entry-content .wp-block-group,
body.page-id-674 .entry-content .wp-block-group,
body.page-id-575 .entry-content .wp-block-cover,
body.page-id-674 .entry-content .wp-block-cover,
body.page-id-575 .entry-content .wp-block-pullquote,
body.page-id-674 .entry-content .wp-block-pullquote,
body.page-id-575 .entry-content .wp-block-quote,
body.page-id-674 .entry-content .wp-block-quote,
body.page-id-575 .entry-content .notice,
body.page-id-674 .entry-content .notice,
body.page-id-575 .entry-content .box,
body.page-id-674 .entry-content .box,
body.page-id-575 .entry-content .text-block,
body.page-id-674 .entry-content .text-block{
  background: rgba(255,255,255,0.04) !important;
  color: var(--zflash-article-text, #c7d3db) !important;
  border-color: rgba(255,255,255,0.08) !important;
  box-shadow: none !important;
}

/* But keep images and figures clean */
body.page-id-575 .entry-content img,
body.page-id-575 .entry-content figure,
body.page-id-575 .entry-content .wp-block-image,
body.page-id-674 .entry-content img,
body.page-id-674 .entry-content figure,
body.page-id-674 .entry-content .wp-block-image{
  background: transparent !important;
  box-shadow: none !important;
}

/* Make text inside those boxes readable */
body.page-id-575 .entry-content .has-background *,
body.page-id-575 .entry-content [style*="background"] *,
body.page-id-575 .entry-content .text-block *,
body.page-id-674 .entry-content .has-background *,
body.page-id-674 .entry-content [style*="background"] *,
body.page-id-674 .entry-content .text-block *{
  color: inherit !important;
}

/* Mobile */
@media (max-width: 768px){
  body.page-id-575 .default_page_template,
  body.page-id-674 .default_page_template{
    padding-top: 165px !important;
    padding-bottom: 56px !important;
  }

  body.page-id-575 .entry-content,
  body.page-id-674 .entry-content{
    margin-top: 8px !important;
  }

  body.page-id-575 *[id],
  body.page-id-674 *[id],
  body.page-id-575 h1,
  body.page-id-575 h2,
  body.page-id-575 h3,
  body.page-id-575 h4,
  body.page-id-575 h5,
  body.page-id-575 h6,
  body.page-id-575 section,
  body.page-id-674 h1,
  body.page-id-674 h2,
  body.page-id-674 h3,
  body.page-id-674 h4,
  body.page-id-674 h5,
  body.page-id-674 h6,
  body.page-id-674 section{
    scroll-margin-top: 135px !important;
  }
}
/* =====================================================
   ZFLASH – ARTICLE WHITE BOX KILLER
   Fixar ljusa boxar på:
   - page-id-575
   - page-id-674
   ===================================================== */

body.page-id-575 .entry-content div[style*="background"],
body.page-id-575 .entry-content p[style*="background"],
body.page-id-575 .entry-content section[style*="background"],
body.page-id-575 .entry-content article[style*="background"],
body.page-id-575 .entry-content table[style*="background"],
body.page-id-575 .entry-content tbody[style*="background"],
body.page-id-575 .entry-content tr[style*="background"],
body.page-id-575 .entry-content td[style*="background"],
body.page-id-575 .entry-content th[style*="background"],
body.page-id-575 .entry-content span[style*="background"],

body.page-id-674 .entry-content div[style*="background"],
body.page-id-674 .entry-content p[style*="background"],
body.page-id-674 .entry-content section[style*="background"],
body.page-id-674 .entry-content article[style*="background"],
body.page-id-674 .entry-content table[style*="background"],
body.page-id-674 .entry-content tbody[style*="background"],
body.page-id-674 .entry-content tr[style*="background"],
body.page-id-674 .entry-content td[style*="background"],
body.page-id-674 .entry-content th[style*="background"],
body.page-id-674 .entry-content span[style*="background"]{
  background: rgba(255,255,255,0.04) !important;
  background-color: rgba(255,255,255,0.04) !important;
  color: #d8e4eb !important;
  border-color: rgba(255,255,255,0.10) !important;
  box-shadow: none !important;
}

/* Om text inuti boxen också blivit ljusgrå/vit på vit bakgrund */
body.page-id-575 .entry-content div[style*="background"] *,
body.page-id-575 .entry-content p[style*="background"] *,
body.page-id-575 .entry-content section[style*="background"] *,
body.page-id-575 .entry-content article[style*="background"] *,
body.page-id-575 .entry-content table[style*="background"] *,
body.page-id-674 .entry-content div[style*="background"] *,
body.page-id-674 .entry-content p[style*="background"] *,
body.page-id-674 .entry-content section[style*="background"] *,
body.page-id-674 .entry-content article[style*="background"] *,
body.page-id-674 .entry-content table[style*="background"] *{
  color: #d8e4eb !important;
}

/* Vanliga WordPress/editor-boxar */
body.page-id-575 .entry-content .wp-block-group.has-background,
body.page-id-575 .entry-content .has-background,
body.page-id-575 .entry-content .wp-block-cover,
body.page-id-575 .entry-content .wp-block-quote,
body.page-id-575 .entry-content .wp-block-pullquote,
body.page-id-575 .entry-content .wp-block-table,
body.page-id-575 .entry-content .box,
body.page-id-575 .entry-content .notice,

body.page-id-674 .entry-content .wp-block-group.has-background,
body.page-id-674 .entry-content .has-background,
body.page-id-674 .entry-content .wp-block-cover,
body.page-id-674 .entry-content .wp-block-quote,
body.page-id-674 .entry-content .wp-block-pullquote,
body.page-id-674 .entry-content .wp-block-table,
body.page-id-674 .entry-content .box,
body.page-id-674 .entry-content .notice{
  background: rgba(255,255,255,0.04) !important;
  color: #d8e4eb !important;
  border: 1px solid rgba(255,255,255,0.10) !important;
  box-shadow: none !important;
}

/* Tabellen/cellen som ibland blir kritvit */
body.page-id-575 .entry-content table,
body.page-id-575 .entry-content td,
body.page-id-575 .entry-content th,
body.page-id-674 .entry-content table,
body.page-id-674 .entry-content td,
body.page-id-674 .entry-content th{
  background-clip: padding-box;
}
/* =====================================================
   ZFLASH – ECU UNLOCK PAGE (EXAKT FIX)
   Gäller endast page-id-541
   ===================================================== */

body.page-id-541{
  background:#0b1115 !important;
  color:#d8e4eb !important;
}

/* Hela sidans wrapper */
body.page-id-541 .default_page_template{
  background:linear-gradient(180deg,#0b1115 0%, #101820 100%) !important;
  padding:140px 0 70px !important;
}

/* Neutralisera vita containers */
body.page-id-541 .default_page_template .container,
body.page-id-541 .default_page_template .row,
body.page-id-541 .default_page_template .col-md-12{
  background:transparent !important;
}

/* Själva ECU unlock-sektionen */
body.page-id-541 section.zflash-ecu-unlock{
  max-width:980px;
  margin:0 auto;
  background:linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.01)) !important;
  border:1px solid rgba(255,255,255,0.06) !important;
  border-radius:20px !important;
  padding:42px !important;
  box-shadow:0 14px 34px rgba(0,0,0,.35) !important;
  color:#d8e4eb !important;
}

/* Huvudrubrik */
body.page-id-541 h1.woocommerce_page_title{
  color:#ffffff !important;
  font-size:56px !important;
  line-height:1.08 !important;
  font-weight:800 !important;
  letter-spacing:-0.02em !important;
  margin:0 0 24px !important;
}

/* Alla rubriker i sektionen */
body.page-id-541 section.zflash-ecu-unlock h1,
body.page-id-541 section.zflash-ecu-unlock h2,
body.page-id-541 section.zflash-ecu-unlock h3,
body.page-id-541 section.zflash-ecu-unlock h4{
  color:#ffffff !important;
  letter-spacing:-0.02em;
}

body.page-id-541 section.zflash-ecu-unlock h2{
  font-size:30px !important;
  line-height:1.18 !important;
  font-weight:700 !important;
  margin:34px 0 14px !important;
}

body.page-id-541 section.zflash-ecu-unlock h3{
  font-size:22px !important;
  line-height:1.28 !important;
  font-weight:600 !important;
  margin:24px 0 12px !important;
}

/* Brödtext */
body.page-id-541 section.zflash-ecu-unlock,
body.page-id-541 section.zflash-ecu-unlock p,
body.page-id-541 section.zflash-ecu-unlock li,
body.page-id-541 section.zflash-ecu-unlock td,
body.page-id-541 section.zflash-ecu-unlock th{
  color:#d8e4eb !important;
  font-size:18px;
  line-height:1.75;
}

/* Länkar */
body.page-id-541 section.zflash-ecu-unlock a{
  color:#00d9ff !important;
  text-decoration:none;
}

body.page-id-541 section.zflash-ecu-unlock a:hover{
  color:#7fefff !important;
  text-decoration:underline;
}

/* Strong */
body.page-id-541 section.zflash-ecu-unlock strong{
  color:#ffffff !important;
}

/* Listor */
body.page-id-541 section.zflash-ecu-unlock ul,
body.page-id-541 section.zflash-ecu-unlock ol{
  padding-left:24px;
  margin:0 0 20px;
}

body.page-id-541 section.zflash-ecu-unlock li{
  margin-bottom:8px;
}

/* Tabeller */
body.page-id-541 section.zflash-ecu-unlock table{
  width:100%;
  border-collapse:collapse;
  background:rgba(255,255,255,0.03) !important;
  border:1px solid rgba(255,255,255,0.08) !important;
  border-radius:14px;
  overflow:hidden;
}

body.page-id-541 section.zflash-ecu-unlock th,
body.page-id-541 section.zflash-ecu-unlock td{
  border:1px solid rgba(255,255,255,0.08) !important;
  padding:12px 14px;
  text-align:left;
}

body.page-id-541 section.zflash-ecu-unlock th{
  color:#ffffff !important;
  background:rgba(255,255,255,0.05) !important;
}

/* CTA / info-boxar */
body.page-id-541 .zflash-ecu-unlock__cta,
body.page-id-541 .zflash-ecu-unlock__notice,
body.page-id-541 .zflash-ecu-unlock__box{
  padding:18px;
  border:1px solid rgba(255,255,255,0.10) !important;
  border-left:4px solid #00d9ff !important;
  border-radius:14px !important;
  background:rgba(255,255,255,0.04) !important;
  color:#d8e4eb !important;
}

/* Knappar */
body.page-id-541 .zflash-ecu-unlock__button,
body.page-id-541 section.zflash-ecu-unlock .button{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:46px;
  padding:12px 18px;
  border-radius:10px;
  border:1px solid #00d9ff;
  background:#00d9ff;
  color:#000 !important;
  font-weight:700;
  text-decoration:none !important;
  transition:all .25s ease;
}

body.page-id-541 .zflash-ecu-unlock__button:hover,
body.page-id-541 section.zflash-ecu-unlock .button:hover{
  background:transparent;
  color:#00d9ff !important;
}

/* Mobil */
@media (max-width: 768px){
  body.page-id-541 .default_page_template{
    padding:115px 0 40px !important;
  }

  body.page-id-541 section.zflash-ecu-unlock{
    padding:24px 18px !important;
    border-radius:16px !important;
  }

  body.page-id-541 h1.woocommerce_page_title{
    font-size:38px !important;
  }

  body.page-id-541 section.zflash-ecu-unlock h2{
    font-size:24px !important;
  }

  body.page-id-541 section.zflash-ecu-unlock,
  body.page-id-541 section.zflash-ecu-unlock p,
  body.page-id-541 section.zflash-ecu-unlock li{
    font-size:16px !important;
  }
}
/* =====================================================
   ECU Unlock – fix för knapptext som döljs tills hover
   Gäller endast page-id-541
   ===================================================== */

body.page-id-541 section.zflash-ecu-unlock a.zflash-ecu-unlock__button,
body.page-id-541 section.zflash-ecu-unlock a.zflash-ecu-unlock__button:link,
body.page-id-541 section.zflash-ecu-unlock a.zflash-ecu-unlock__button:visited{
  color:#041015 !important;
  background:#00d9ff !important;
  border:1px solid #00d9ff !important;
  text-decoration:none !important;
  opacity:1 !important;
}

body.page-id-541 section.zflash-ecu-unlock a.zflash-ecu-unlock__button *,
body.page-id-541 section.zflash-ecu-unlock a.zflash-ecu-unlock__button span{
  color:#041015 !important;
  fill:#041015 !important;
}

body.page-id-541 section.zflash-ecu-unlock a.zflash-ecu-unlock__button:hover,
body.page-id-541 section.zflash-ecu-unlock a.zflash-ecu-unlock__button:focus{
  color:#ffffff !important;
  background:transparent !important;
  border-color:#00d9ff !important;
}

body.page-id-541 section.zflash-ecu-unlock a.zflash-ecu-unlock__button:hover *,
body.page-id-541 section.zflash-ecu-unlock a.zflash-ecu-unlock__button:focus *,
body.page-id-541 section.zflash-ecu-unlock a.zflash-ecu-unlock__button:hover span,
body.page-id-541 section.zflash-ecu-unlock a.zflash-ecu-unlock__button:focus span{
  color:#ffffff !important;
  fill:#ffffff !important;
}
/* Dölj effekt-box på denna artikel */
body.postid-1127 .zflash-selector-cta{
  display:none !important;
}