@font-face{
	font-family: elektronicar-font;
	src: url("../font/Roboto-Regular.ttf");
}

*{
	font-family: "elektronicar-font", sans-serif;
	box-sizing: border-box;
}

html{
	font-size: 14px;
	/*
	 * overflow-x: clip (not `hidden`) so we suppress page-level horizontal
	 * scrolling WITHOUT turning body into a scroll container — otherwise
	 * position:sticky inside the page (header) silently stops working.
	 * Fallback for older browsers that lack `clip`: keep overflow hidden.
	 */
	overflow-x: clip !important;
}

body{
	overflow-x: clip !important;
	line-height: 1.5 !important;
	font-size: 14px;
	color: #000000;
	margin: 0;
	padding: 0;
	width: 100%;
}

p, h1, h2, h3, h4, h5, h6, a{
	margin-bottom: 0;
}

.wrapper-header{
	display: flex;
	flex-wrap: wrap;
	flex-direction: column;
}

.top-wrapper-header{
	background-color: #29292b;
}

.main-top-header{
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	padding: 0.4rem 0;
}

.left-top-header p,
.left-top-header a{
	color: #fff;
	text-decoration: none;
}

.items-right-header{
	display: flex;
	flex-wrap: wrap;
}

.items-right-header > section{
	padding: 0 1rem;
	color: #fff;
}

.items-right-header > section a{
	display: block;
	color: #fff;
}

.bottom-wrapper-header{
	background-color: #fff;
	border-bottom: 1px solid #29292b;
}

.main-bottom-header{
	padding: 1rem 0;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
}

.wrapper-logo a{
	display: block;
}

.wrapper-logo a img{
	width: 4rem;
}

.wrapper-navigation{
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-end;
	align-items: center;
	background-color: #29292b;
}

.nav-row{
	display: flex;
	flex-wrap: wrap;
}

.nav-toggle{
	display: none;
}

.wrapper-navigation .nav-item{
	transition: all 0.15s ease;

}

.wrapper-navigation .nav-item a{
	padding: 1rem 1rem;
	color: inherit;
	text-decoration: none;
	font-size: 1.3rem;
	color: #fff;
	display: block;
}

.wrapper-navigation .nav-item span{
	padding: 0.5rem 1rem;
	color: inherit;
	font-size: 1.3rem;
	cursor: pointer;
	color: #fff;
}

.wrapper-navigation .nav-item:hover{
	background-color: #29292b;
	color: #f5f5f5;
}

.item-dropdown{
	position: relative;
}

.wrapper-navigation .item-dropdown .list-dropdown{
	width: 13rem;
	transition: opacity 0.1s ease;
	transition-delay: 2s;
	position: absolute;
	left: 0;
	background-color: #29292b;
	display: none;
	z-index: 100;
}

.item-dropdown .list-dropdown .list-item{
	transition: all 0.s ease;
	opacity: 0;
}

.item-dropdown .list-dropdown .list-item a{
	display: block;
	font-size: 1rem;
	transition: all 0.1s ease;
	color: #f5f5f5;
}

.item-dropdown:hover .list-dropdown .list-item a{
	background-color: #29292b;
	color: #f5f5f5;
}

.item-dropdown:hover .list-dropdown{
	display: block;
}

.item-dropdown:hover .list-dropdown .list-item{
	opacity: 1;
}

.list-dropdown .list-item:hover a{
	color: black !important;
	background-color: #fff !important;
}

.main-container-slider{
	position: relative;
}

.slide-img-1{
	background-image: url("../images/slider_1.jpg");
	background-position: center;
	background-size: cover;
	width: 100%;
	height: 45vh;
}

.slide-img-2{
	background-image: url("../images/slider_2.jpg");
	background-position: center;
	background-size: cover;
	width: 100%;
	height: 45vh;
}

.slide-img-3{
	background-image: url("../images/slider_3.jpg");
	background-position: center;
	background-size: cover;
	width: 100%;
	height: 45vh;
}

.main-container-slider .carousel-control-prev{
	height: 100%;
	margin: 0 10px !important;
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	z-index: -1;
	display: flex !important;
	flex-wrap: wrap;
	align-items: center;
	outline: 0;
	opacity: 0;
	transition: all 0.3s ease;
	transform: translateX(-50px);
	width: 5%;
}

.main-container-slider .carousel-control-next{
	height: 100%;
	margin: 0 10px !important;
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	z-index: -1;
	display: flex !important;
	flex-wrap: wrap;
	align-items: center;
	outline: 0;
	opacity: 0;
	transition: all 0.3s ease;
	transform: translateX(50px);
	width: 5%;
}

.carousel-control-next-icon, .carousel-control-prev-icon{
	width: 30px;
	height: 30px;
}

.main-container-slider:hover .carousel-control-prev{
	opacity: 1;
	transform: translateX(0);
	z-index: 5;
}

.main-container-slider:hover .carousel-control-next{
	opacity: 1;
	transform: translateX(0);
	z-index: 5;
}

.carousel-indicators{
	margin: 5px 0;
	z-index: 1 !important;
}

.carousel-indicators li{
	width: 15px !important;
	height: 15px !important;
	border-radius: 50%;
	margin: 0 7px !important;
	background-color: #fff !important;
	opacity: 1 !important;
	transition: background-color 0.3s ease;
}

.carousel-indicators .active{
	background-color: #3998fd !important;
}

.carousel-indicators li:hover{
	background-color: #3998fd !important;	
}

.carousel-indicators .active:hover{
	background-color: #fff !important;	
}

.container-slider-advantage{
	background-color: #29292b;
	margin: 0;
}

.wrapper-item{
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: row;
	background-color: #29292b;
	padding: 2rem 1.5rem;
}

.wrapper-item img{
	width: 8rem;
	margin-right: 2rem;
}

.wrapper-item section p{
	text-transform: uppercase;
	font-size: 1.4rem;
	color: #fff;
}

.wrapper-item section a{
	text-decoration: none;
	color: #fff;
	margin-top: 1rem;
	display: inline-block;
	background-color: #3998fd;
	padding: 0.5rem 1rem;
}

.container-search{
	margin-top: 4rem;
}

.wrapper-search{
    width: 100%;
}
.wrapper-search .search-form{
    position: relative;
    width: 100%;
    max-width: 34rem;
    margin: 0 auto;
    height: 45px;
}
.wrapper-search .search-input{
    width: 100%;
    height: 100%;
    padding: 0 3rem 0 1.1rem;
    background-color: #eaeaea;
    border: 1px solid #ddd;
    border-radius: 3px;
    outline:  ​​0;
    font-size: 0.95rem;
}
.wrapper-search .search-input:focus{
    border-color: #3998fd;
    background-color: #fff;
}
.wrapper-search .search-submit{
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    width: 3.4rem;
    padding: 0;
    border:  ​0;
    background: transparent;
    color: #3998fd;
    font-size: 1.15rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color .15s ease;
}
.wrapper-search .search-submit:hover{
    color: #29292b;
}

.category-navigation{
	list-style: none;
	padding-left: 0;
	margin-bottom: 0;
	margin-right: -15px;
	background-color: #eaeaea;
	padding: 0 0;
	position: relative;
	z-index: 10;
	border: 1px solid #ddd;
	border-radius: 3px;
}

.category-navigation li a{
	text-decoration: none;
	color: #29292b;
	font-size: 1rem;
	width: 100%;
	display: block;
	padding: 0.5rem 1.5rem;
	transition: background-color 0.2s ease;
}

.category-navigation li a:hover{
	background-color: #29292b;
	color: #fff;
}

.nested-category-navigation{
	position: absolute;
	left: 100%;
	top: -1px;
	bottom: -1px;
	display: none;
	width: 100%;
	list-style: none;
	padding: 0;
	border-left: 1px solid #ddd;
	background-color: #eaeaea;
	border-top: 1px solid #ddd;
	border-bottom: 1px solid #ddd;
	border-right: 1px solid #ddd;
	z-index: 50 !important;
}

.nested-category-navigation li a{
    text-decoration: none;
    color: #29292b;
    font-size: 1rem;
    width: 100%;
    display: block;
    padding: 0.5rem 1.5rem;
}

.li-category-navigation:hover .nested-category-navigation{
	display: block;
}

.owl-nav{
	margin: 0 !important;
	display: block !important;
}

.owl-nav .owl-next, .owl-nav .owl-prev{
	position: absolute;
	margin: 0 !important;
	line-height: 0.3 !important;
	outline: 0 !important;
	margin-top: 10px !important;
}

.owl-nav .owl-prev{
	left: 0;
}

.owl-nav .owl-prev span{
	color: #29292b !important;
}

.owl-nav .owl-next{
	right: 0;
}

.owl-nav .owl-next span{
	color: #29292b !important;
}

.owl-nav .owl-next:hover, .owl-nav .owl-prev:hover{
	background: transparent !important;
}

.owl-nav .owl-prev span, .owl-nav .owl-next span{
	font-size: 3.5rem;
	color: #fff;
}

.owl-dots{
	display: flex !important;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	width: 100%;
	padding: 0.3rem 0;
}

.owl-dots .owl-dot{
	outline: 0;
}

.owl-dots .owl-dot span{
	background: #29292b !important;
	width: 1.1rem !important;
	height: 1.1rem !important;
	transition: all 0.2s linear !important;
	margin-top: 0 !important;
	margin-bottom: 0 !important;
}

.owl-theme .owl-dots .owl-dot.active span{
	background: #3998fd !important;
}

.owl-theme .owl-dots .owl-dot:hover span{
	background: #29292b !important;
}

.wrapper-img-new-product{
	background-color: #fff;
}

.wrapper-img-new-product img{
	width: 100%;
	padding: 1rem;
}

.new-product{
	background-color: #fff;
	margin-bottom: 1rem;
	transition: background-color 0.3s ease;
}

.new-product a{
	display: block;
	text-decoration: none;
}

.wrapper-about-new-product{
	padding: 0.5rem 0;
	transition: background-color ease 0.3s;
	background-color: #fff;
	text-align: center;
	height: 110px;
}

.wrapper-about-new-product p{
	color: #29292b;
}

.wrapper-about-new-product > p:nth-child(1){
	font-size: 0.9rem;
    border-bottom: 1px solid #d6d6d6;
    padding-bottom: 0.5rem;
    height: 3.5rem;
}

.wrapper-about-new-product p:nth-child(2){
	color: #29292b;
    font-size: 0.9rem;
    margin-top: 0.1rem;
}

.container-query-form{
	background-color: #3998fd;
}

.form-query{
	margin-top: 3rem;
	text-align: center;
}

.input-field{
	width: 100%;
	position: relative;
}

.input-field{
	display: block;
	max-width: 650px;
	margin: 0 auto;
	margin-bottom: 1.5rem;
}

.input-field input, .input-field textarea{
	width: 100%;
	padding-left: 0.7rem;
}

.input-field input{
	height: 3.4rem;
	border: 0;
	border: 1px solid #29292b;
	border-radius: 3px;
}

.input-field textarea{
	height: 19rem;
	padding-top: 0.5rem;
	border: 1px solid #29292b;
	border-radius: 3px;
}

.input-field span{
	position: absolute;
}

.form-query button{
	display: inline-block;
	border: 1px solid #29292b;
	padding: 0.5rem 1.5rem;
	background-color: #fff;
	border-radius: 3px;
}

.wrapper-contact-info h4{
	margin-bottom: 1.5rem;
}

.contact-item{
	overflow: hidden;
	margin-bottom: 1rem;
}

.contact-item a{
	display: block;
	text-decoration: none;
	color: #29292b;
}

.contact-item a span{
	display: block;
	padding: 1rem;
	float: left;
	font-size: 1.2rem;
	color: #fff;
	background-color: #29292b;
	border-radius: 3px;
}

.contact-item a p{
	margin: 0;
	padding-left: 4rem;
	padding-top: 0.1rem;
}

.wrapper-important-info h4{
	margin-bottom: 1.5rem;
}

.infornation-items{
	display: flex;
	flex-wrap: wrap;
	flex-direction: column;
	align-items: flex-start;
}

.infornation-items a{
	text-decoration: none;
	color: #29292b;
	margin-bottom: 0.5rem;
	display: inline-block;
}

.wrapper-business-info h4{
	margin-bottom: 1.5rem;
}

.business-items{
	display: flex;
	flex-wrap: wrap;
	flex-direction: column;
	align-items: flex-start;
}

.business-items a{
	text-decoration: none;
	color: #29292b;
	margin-bottom: 0.5rem;
	display: inline-block;
}

.wrapper-social-media-info h4{
	margin-bottom: 1.5rem;
}

.social-media-items{
	display: flex;
	flex-wrap: wrap;
	flex-direction: row;
	align-content: end;
}

.social-media-items a{
	text-decoration: none;
	display: inline-block;
	margin-right: 1.5rem;
    border-radius: 3px;
}

.social-media-items a i{
	font-size: 2.5rem;
	color: #29292b;
	margin: 0;
	display: block;
}

.info-pdv{
	margin-top: 4rem;
	font-size: 0.9rem;
}

.container-copyright{
	background-color: #29292b;
}

.copyright-wrapper{
	padding: 1rem 0;
	text-align: center;
}

.copyright-wrapper p{
	color: #fff;
}

.copyright-wrapper p a{
	color: #3998fd;
	text-decoration: none;
}

/* Custom style */

#peb-ecosystem-link
{
	transition: all 0.4s ease;
}

#peb-ecosystem-link:hover
{
	color: #ee4b2b !important;
}

@media all and (min-width: 1200px){
	.container{
		max-width: 1500px;
	}
}

/* ── Mobile / tablet ─────────────────────────────────────────── */

@media (max-width: 991px){
	html{ font-size: 14px; }

	.main-top-header{
		flex-direction: column;
		align-items: flex-start;
		gap: 0.35rem;
	}

	.items-right-header > section{
		padding: 0 0.6rem 0 0;
	}

	.main-bottom-header{
		padding: 0.7rem 0;
		gap: 0.6rem;
	}

	.wrapper-logo a img{
		width: 3.2rem;
	}

	.wrapper-search{
			flex: 1 1 auto;
			min-width: 0;
			height: 40px;
		}

		.wrapper-search .search-form{
			width: 100%;
			height: 100%;
		}

		.wrapper-search .search-input{
			width: 100%;
			min-width: 0;
			font-size: 0.9rem;
		}

		.wrapper-search .search-submit{
			width: 2.9rem;
			font-size: 1rem;
		}

	.nav-toggle{
		display: inline-flex;
		flex-direction: column;
		justify-content: center;
		gap: 5px;
		width: 42px;
		height: 42px;
		border: 1px solid #d0d4da;
		background: #fff;
		border-radius: 6px;
		padding: 9px 10px;
		cursor: pointer;
		flex: 0 0 auto;
	}

	.nav-toggle span{
		display: block;
		height: 2px;
		background: #29292b;
		border-radius: 2px;
		transition: transform 0.2s ease, opacity 0.2s ease;
	}

	.nav-toggle.is-open span:nth-child(1){
		transform: translateY(7px) rotate(45deg);
	}

	.nav-toggle.is-open span:nth-child(2){ opacity: 0; }

	.nav-toggle.is-open span:nth-child(3){
		transform: translateY(-7px) rotate(-45deg);
	}

	.wrapper-navigation{
		display: none;
		width: 100%;
	}

	.wrapper-navigation.is-open{
		display: block;
	}

	.nav-row{
		flex-direction: column;
	}

	.wrapper-navigation .nav-item a{
		padding: 0.85rem 0;
		font-size: 1.1rem;
		border-top: 1px solid #3a3a3c;
	}

	.category-navigation{
		margin-right: 0;
		margin-bottom: 1rem;
	}

	.slide-img-1,
	.slide-img-2,
	.slide-img-3,
	.carousel-inner [style*="height:45vh"]{
		height: 28vh !important;
	}

	.wrapper-item{
		flex-direction: column;
		text-align: center;
		padding: 1.4rem 1rem;
	}

	.wrapper-item img{
		width: 5rem;
		margin: 0 0 0.8rem;
	}

	.wrapper-item section p{
		font-size: 1.05rem;
	}

	.container-new-products h1,
	.container-action-products h1{
		font-size: 1.6rem !important;
		margin-bottom: 1rem !important;
		padding: 0 0.5rem;
	}

	.container-new-products,
	.container-action-products{
		padding-top: 2rem;
		padding-bottom: 1.5rem;
	}

	.container-query-form{
		padding: 2rem 0 2.4rem;
	}

	.container-query-form h3{
		font-size: 1.05rem;
		line-height: 1.5;
		padding: 0 0.5rem;
	}

	.input-field textarea{ height: 10rem; }

	.container-footer{
		padding-top: 2rem;
		padding-bottom: 1.5rem;
	}

	.container-footer .col-xl-3{
		margin-bottom: 1.6rem;
	}

	.info-pdv{ margin-top: 1.2rem; }

	.wrapper-about-new-product{
		height: auto;
		min-height: 96px;
	}
}

@media (max-width: 575px){
	.left-top-header p{
		font-size: 0.8rem;
	}

	.items-right-header{
		width: 100%;
		justify-content: space-between;
	}

	.main-bottom-header{
		flex-wrap: wrap;
	}

	.wrapper-logo{
		order: 1;
	}

	.nav-toggle{
		order: 2;
		margin-left: auto;
	}

	.wrapper-search{
		order: 3;
		flex: 1 1 100%;
	}

	.slide-img-1,
	.slide-img-2,
	.slide-img-3{
		height: 22vh !important;
	}

	.wrapper-img-new-product img{
		padding: 0.5rem;
	}
}

@media all and (min-width: 1920px){
	.container-new-products {
    	padding-top: 7rem;
    	padding-bottom: 0;
    }
    .container-action-products{
    	padding-top: 7rem;
    	padding-bottom: 7rem;
    }
    .container-query-form{
    	padding-top: 7rem;
    	padding-bottom: 7rem;
    }
    .container-footer{
    	padding-top: 4rem;
    	padding-bottom: 4rem;
    }
}

/* ── Cookie Consent banner ─────────────────────────────────── */
#cookie-consent {
    position: fixed;
    bottom: 0; left: 0; right: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    background: #29292b;
    border-top: 1px solid #3998fd;
    font-size: 0.85rem;
    color: #f5f5f5;
    flex-wrap: wrap;
    box-shadow: 0 -4px 12px rgba(0,0,0,0.25);
    transition: max-height 0.4s ease, opacity 0.4s ease, padding 0.4s ease;
}
#cookie-consent p { margin: 0; max-width: 700px; }
#cookie-consent button {
    padding: 0.5rem 1.4rem;
    background: #3998fd;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
    transition: background 0.2s ease;
}
#cookie-consent button:hover { background: #1664c0; }
#cookie-consent.hidden {
    max-height: 0;
    padding-top: 0;
    padding-bottom: 0;
    opacity: 0;
    pointer-events: none;
    overflow: hidden;
}
@media screen and (max-width: 736px) {
    #cookie-consent { justify-content: flex-start; font-size: 0.8rem; }
}

/* ── Cart preview (/korpa) ─────────────────────────────────── */
.cart-item{
    display: flex; align-items: center; gap: 1rem;
    border: 1px solid #e4e7ec; border-radius: 6px;
    padding: 1rem 1.25rem; margin-bottom: 0.75rem;
    background: #fff;
}
.cart-item-info{ flex: 1 1 auto; min-width: 0; }
.cart-item-name{ font-size: 1.05rem; color: #29292b; }
.cart-item-options{ font-size: 0.85rem; color: #666; margin-top: 0.25rem; }
.cart-item-actions{ display: flex; align-items: center; gap: 0.5rem; }
.qty-btn{
    width: 34px; height: 34px; border-radius: 4px; border: 1px solid #d0d4da;
    background: #f7f9fb; color: #29292b; font-size: 1.1rem; cursor: pointer; line-height: 1;
}
.qty-input{
    width: 64px; height: 34px; text-align: center; border: 1px solid #d0d4da;
    border-radius: 4px; font-size: 1rem;
}
.remove-btn{
    border: none; background: none; color: #c0392b; cursor: pointer;
    font-size: 0.9rem; text-decoration: underline;
}
.cart-actions{ margin-top: 1rem; text-align: right; }
.remove-all-btn{
    border: 1px solid #c0392b; color: #c0392b; background: #fff;
    border-radius: 4px; padding: 0.5rem 1.25rem; cursor: pointer; font-size: 0.9rem;
}
.remove-all-btn:hover{ background: #c0392b; color: #fff; }
.empty-cart{ color: #666; font-size: 1.1rem; padding: 2rem 0; }

/* ── Preorder page ─────────────────────────────────────────── */
.preorder-card{
    border: 2px solid #e4e7ec; border-radius: 8px; overflow: hidden;
    cursor: pointer; background: #fff; transition: border-color .2s ease, box-shadow .2s ease;
    margin-bottom: 1rem;
}
.preorder-card:hover{ border-color: #3998fd; }
.preorder-card.is-first{ border-color: #3998fd; }
.preorder-card.is-selected{ border-color: #3998fd; box-shadow: 0 0 0 2px #3998fd; }
.preorder-card-img img{ width: 100%; height: 240px; object-fit: contain; display: block; }
.preorder-card-body{ padding: 1rem 1.25rem; }
.preorder-card-name{ display: block; color: #29292b; font-size: 1rem; margin-bottom: 0.5rem; }
.preorder-card-price span{ color: #29292b; font-weight: 700; font-size: 1.1rem; }
.preorder-card-price del{ color: #999; margin-right: 0.5rem; }
.preorder-form .input-field{ margin-bottom: 1rem; }
.preorder-form input{
    width: 100%; border: 1px solid #d0d4da; border-radius: 4px;
    padding: 0.75rem 1rem; font-size: 1rem;
}
.preorder-form button{
    margin-top: 0.5rem; background: #3998fd; color: #fff; border: none;
    padding: 0.8rem 1.6rem; border-radius: 4px; font-size: 1rem; cursor: pointer;
}
.preorder-form button:disabled{ opacity: 0.6; cursor: not-allowed; }

/* ── Cart item image ───────────────────────────────────────── */
.cart-item-img{ flex: 0 0 64px; }
.cart-item-img img{ width: 64px; height: 64px; object-fit: cover; border-radius: 4px; border: 1px solid #e4e7ec; }
.cart-item-meta{ font-size: 0.8rem; color: #b8860b; margin-top: 0.25rem; }

/* ── Min order hint + qty stepper on product page ──────────── */
.min-order-hint{ display: block; color: #b8860b; font-size: 0.85rem; margin-bottom: 0.5rem; }
.qty-stepper{ display: inline-flex; align-items: center; gap: 0.4rem; margin-right: 0.75rem; vertical-align: middle; }
.qty-stepper .qty-btn{
    width: 32px; height: 32px; border: 1px solid #3998fd; background: #fff; color: #3998fd;
    border-radius: 4px; font-size: 1.1rem; cursor: pointer; line-height: 1;
}
.qty-stepper input{
    width: 60px; height: 32px; text-align: center; border: 1px solid #d0d4da; border-radius: 4px; font-size: 1rem;
}

/* ── Header (static — no sticky, no collapse) ─────────────── */
header{
    /* Static header: scrolls away with the page. No sticky positioning,
       no collapse-on-scroll. */
}
.wrapper-header{
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
}

/* ── Header cart dropdown preview ─────────────────────────── */
.wrapper-cart{ position: relative; }
.cart-preview-dropdown{
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    width: 360px;
    max-height: calc(100vh - 140px);
    overflow-y: auto;
    background: #fff;
    border: 1px solid #e4e7ec;
    border-top: 3px solid #3998fd;
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
    border-radius: 6px;
    padding: 0.75rem;
    z-index: 1100;
    transform: translateY(-8px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity .18s ease, transform .18s ease, visibility .18s ease;
}
.cart-preview-dropdown.is-open{
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

/* Force readable link colours inside the dropdown regardless of the
   header's white-link rules (higher specificity beats the header selector). */
.cart-preview-dropdown .cart-item .cart-item-link{
    color: #29292b;
}
.cart-preview-dropdown .cart-item .cart-item-link:hover{ color: #3998fd; }
.cart-preview-dropdown .cart-actions .go-to-cart{
    color: #3998fd;
}
.cart-preview-dropdown .cart-item .cart-item-options{ color: #666; }
.cart-preview-dropdown .cart-item .cart-item-remove .remove-btn{ color: #c0392b; }
.cart-preview-dropdown .cart-item{
    align-items: flex-start;
    border: none;
    border-bottom: 1px solid #f0f1f4;
    border-radius: 0;
    padding: 0.6rem 0.25rem;
    margin-bottom: 0;
}
.cart-preview-dropdown .cart-item-img img{ width: 56px; height: 56px; }
.cart-preview-dropdown .cart-item-actions{ gap: 0.25rem; }
.cart-preview-dropdown .qty-btn{ width: 28px; height: 28px; font-size: 0.95rem; }
.cart-preview-dropdown .qty-input{ width: 48px; height: 28px; font-size: 0.9rem; }
.cart-preview-dropdown .cart-actions{
    display: flex; align-items: center; justify-content: space-between; gap: 0.5rem;
    margin-top: 0.75rem;
}
.go-to-cart{
    color: #3998fd; font-weight: 600; text-decoration: none; font-size: 0.9rem;
}
.go-to-cart:hover{ text-decoration: underline; }
.cart-item-link{
    color: #29292b; font-weight: 600; text-decoration: none; font-size: 1.02rem;
}
.cart-item-link:hover{ color: #3998fd; text-decoration: underline; }

/* ── Cart item layout on the full /korpa page ─────────────── */
.cart-preview .cart-item{ align-items: center; }
.cart-preview .cart-item-name{ font-size: 1.05rem; color: #29292b; }

/* ── Phone: fullscreen cart preview ───────────────────────── */
@media screen and (max-width: 736px) {
    .cart-preview-dropdown{
        position: fixed;
        top: 0; left: 0; right: 0; bottom: 0;
        width: 100%;
        max-height: 100vh;
        border-radius: 0;
        border: none;
        padding: 1rem;
        overflow-y: auto;
    }
    .cart-preview-dropdown .cart-item{ align-items: center; }
}

/* ── Coming-soon category card + diagonal badge ───────────── */
.coming-soon-card{
    position: relative;
    overflow: hidden;
    border-radius: 3px;
}
.coming-soon-badge{
    position: absolute;
    top: 18px;
    left: -34px;
    transform: rotate(-45deg);
    background: #29292b;
    color: #fff;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    padding: 4px 40px;
    z-index: 2;
    box-shadow: 0 2px 6px rgba(0,0,0,0.25);
    pointer-events: none;
}

/* ── Preorder color selector ─────────────────────────────── */
.preorder-color{ margin-top: 0.75rem; text-align: left; }
.preorder-color-label{ font-size: 0.78rem; font-weight: 700; text-transform: uppercase; color: #666; margin-bottom: 0.4rem; }
.preorder-color .pm-pills{ justify-content: flex-start; }
.preorder-card .pm-var[disabled]{ opacity: 0.4; cursor: not-allowed; }
.preorder-card.is-selected .pm-var:not([disabled]){ opacity: 1; }

/* ── Bundles (paketi) ─────────────────────────────────────── */
.bundle-card{ position: relative; border:1px solid #e4e7ec; border-radius:8px; overflow:hidden; background:#fff; transition:transform .2s ease, box-shadow .2s ease; }
.bundle-card:hover{ transform:translateY(-2px); box-shadow:0 8px 24px rgba(0,0,0,0.10); }
.bundle-badge{ position:absolute; top:10px; right:10px; background:#3998fd; color:#fff; font-weight:700; font-size:0.75rem; padding:3px 10px; border-radius:999px; z-index:2; }
.bundle-card-img img{ width:100%; height:160px; object-fit:contain; display:block; background:#f7f9fb; padding:0.5rem; }
.bundle-card-body{ padding:0.75rem 1rem; }
.bundle-card-name{ font-size:1rem; color:#29292b; display:block; margin-bottom:0.35rem; }
.bundle-card-items{ font-size:0.78rem; color:#666; margin-bottom:0.4rem; }
.bundle-card-items span{ display:block; }
.bundle-card-price{ font-size:1.05rem; color:#29292b; }
.bundle-card-price del{ color:#999; margin-right:0.5rem; }

/* Bundle page (pm reuse) */
.bundle-stage{ display:flex; align-items:center; justify-content:center; gap:1rem; flex-wrap:wrap; padding:1rem; }
.bundle-item-thumb{ display:flex; flex-direction:column; align-items:center; gap:0.5rem; position:relative; }
.bundle-item-thumb.has-plus::before{ content:"+"; font-size:1.6rem; color:#999; position:absolute; left:-0.9rem; top:30%; }
.bundle-thumb-img img{ width:130px; height:130px; object-fit:contain; border:1px solid #e4e7ec; border-radius:8px; background:#f7f9fb; }
.bundle-thumb-name{ font-size:0.78rem; color:#666; max-width:130px; text-align:center; }
.bundle-discount-badge{ background:#3998fd; color:#fff; font-weight:700; font-size:0.8rem; padding:3px 10px; border-radius:999px; }
.bundle-contents{ margin:1rem 0; }
.bundle-list{ list-style:none; padding:0; margin:0; }
.bundle-list-item{ display:flex; align-items:center; justify-content:space-between; gap:0.5rem; padding:0.45rem 0; border-bottom:1px dashed #eee; font-size:0.9rem; }
.bundle-list-item .bundle-var{ font-style:normal; color:#666; font-size:0.78rem; }
.bundle-price del{ color:#999; font-weight:400; }
.bundle-off{ font-style:normal; color:#3998fd; font-weight:700; }
.preorder-card-bundle-contents{ font-size:0.78rem; color:#666; margin-top:0.4rem; }
.preorder-card-bundle-contents span{ display:block; }
.preorder-card.is-bundle-card{ cursor:pointer; }

/* ── Preorder: tags, notes, bundle variants ───────────────── */
.preorder-tags{ margin-bottom: 0.5rem; display: flex; flex-wrap: wrap; gap: 0.35rem; }
.preorder-tag{
    display: inline-block; background:#eef4ff; color:#3998fd; font-weight:700; font-size:0.72rem;
    padding:2px 9px; border-radius:999px; letter-spacing:0.02em;
}
.preorder-bundle-variants{ margin-top: 0.5rem; }
.preorder-bundle-variant{ display:flex; justify-content:space-between; gap:0.5rem; font-size:0.8rem; color:#555; margin-bottom:0.15rem; }
.preorder-bundle-variant em{ font-style:normal; color:#3998fd; font-weight:600; }
.preorder-note{ font-size:0.82rem; color:#777; margin-bottom:0.6rem; line-height:1.5; }
.preorder-form input{ margin-bottom:0.9rem; }

/* ── Blog ──────────────────────────────────────────────────── */
.blog-categories{ display:flex; flex-wrap:wrap; gap:0.5rem; }
.blog-cat{ padding:6px 14px; border:1px solid #e4e7ec; border-radius:999px; color:#555; font-size:0.85rem; text-decoration:none; transition:all .15s ease; }
.blog-cat:hover{ border-color:#3998fd; color:#3998fd; }
.blog-cat.is-active{ background:#3998fd; color:#fff; border-color:#3998fd; }

.blog-card{ border:1px solid #e4e7ec; border-radius:8px; overflow:hidden; background:#fff; transition:transform .2s ease, box-shadow .2s ease; height:100%; }
.blog-card:hover{ transform:translateY(-2px); box-shadow:0 8px 24px rgba(0,0,0,0.10); }
.blog-card-img img{ width:100%; height:180px; object-fit:cover; display:block; }
.blog-card-body{ padding:1rem 1.1rem; }
.blog-card-cat{ display:inline-block; background:#eef4ff; color:#3998fd; font-weight:700; font-size:0.72rem; padding:2px 9px; border-radius:999px; margin-bottom:0.5rem; }
.blog-card-title{ font-size:1.05rem; color:#29292b; margin:0 0 0.5rem; line-height:1.3; }
.blog-card-excerpt{ font-size:0.85rem; color:#666; line-height:1.55; margin-bottom:0.75rem; }
.blog-card-meta{ display:flex; align-items:center; gap:0.75rem; font-size:0.78rem; color:#999; }
.blog-card-author{ color:#3998fd; text-decoration:none; }
.blog-card-author:hover{ text-decoration:underline; }

/* Blog post */
.blog-post-title{ font-size:1.7rem; color:#29292b; margin:0 0 0.6rem; line-height:1.3; }
.blog-post-meta{ display:flex; align-items:center; gap:0.9rem; font-size:0.85rem; color:#888; margin-bottom:1.25rem; }
.blog-post-author{ color:#3998fd; text-decoration:none; }
.blog-post-img img{ width:100%; border-radius:8px; margin-bottom:1.5rem; }
.blog-post-body{ color:#333; line-height:1.75; font-size:1rem; }
.blog-post-body p{ margin-bottom:1rem; }
.blog-post-body img{ max-width:100%; border-radius:8px; }
.blog-post-actions{ margin-top:2rem; }

/* Blog author profile */
.author-profile{ text-align:center; border:1px solid #e4e7ec; border-radius:8px; padding:1.5rem; }
.author-avatar img{ width:110px; height:110px; border-radius:50%; object-fit:cover; margin-bottom:0.75rem; }
.author-name{ font-size:1.3rem; color:#29292b; margin-bottom:0.5rem; }
.author-bio{ font-size:0.88rem; color:#666; line-height:1.6; }
.author-post{ border:1px solid #e4e7ec; border-left:3px solid #3998fd; border-radius:6px; padding:0.9rem 1.1rem; transition:box-shadow .15s ease; }
.author-post:hover{ box-shadow:0 4px 14px rgba(0,0,0,0.08); }
.author-post-title{ font-size:1.02rem; color:#29292b; margin:0 0 0.3rem; }
.author-post-excerpt{ font-size:0.85rem; color:#666; margin-bottom:0.3rem; }
.author-post-date{ font-size:0.78rem; color:#999; }

/* ── Home featured blog post ───────────────────────────────── */
.home-featured-post{ display:flex; gap:2rem; align-items:center; border:1px solid #e4e7ec; border-radius:8px; overflow:hidden; background:#fff; }
.home-featured-img{ flex:1 1 45%; max-width:45%; min-height:220px; }
.home-featured-img img{ width:100%; height:100%; object-fit:cover; display:block; }
.home-featured-body{ flex:1 1 55%; padding:1.5rem 1.75rem; }
.home-featured-title{ font-size:1.4rem; color:#29292b; margin:0.4rem 0 0.6rem; line-height:1.3; }
.home-featured-title a{ color:#29292b; text-decoration:none; }
.home-featured-title a:hover{ color:#3998fd; }
.home-featured-excerpt{ font-size:0.92rem; color:#666; line-height:1.6; margin-bottom:0.75rem; }
@media screen and (max-width: 768px){
    .home-featured-post{ flex-direction:column; }
    .home-featured-img{ flex:1 1 auto; max-width:100%; width:100%; min-height:160px; }
    .home-featured-body{ width:100%; padding:1rem 1.25rem; }
}

/* ── M18 Hero (landing page) ────────────────────────────────── */
.hero-m18{
    display: flex;
    align-items: center;
    gap: 2.5rem;
    background: linear-gradient(135deg, #f5f8fc 0%, #eef3f9 100%);
    border: 1px solid #e4e7ec;
    border-radius: 10px;
    overflow: hidden;
    padding: 2.5rem 3rem;
    min-height: 420px;
}
.hero-m18-media{
    flex: 1 1 46%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.hero-m18-media img{
    max-width: 100%;
    max-height: 360px;
    object-fit: contain;
    filter: drop-shadow(0 18px 26px rgba(0,0,0,0.18));
}
.hero-m18-content{
    flex: 1 1 54%;
}
.hero-m18-key{
    display: inline-block;
    font-weight: 800;
    font-size: 1.05rem;
    color: #29292b;
    margin-bottom: 0.4rem;
}
.hero-m18-title{
    font-size: 2.2rem;
    font-weight: 800;
    color: #29292b;
    line-height: 1.15;
    margin: 0 0 0.8rem;
}
.hero-m18-desc{
    font-size: 1.02rem;
    color: #555;
    line-height: 1.6;
    margin-bottom: 1.4rem;
}
.hero-m18-price{
    margin-bottom: 1rem;
}
.hero-m18-price-label{
    display: block;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    color: #3998fd;
    margin-bottom: 0.2rem;
}
.hero-m18-price-row{
    display: flex;
    align-items: baseline;
    gap: 0.9rem;
}
.hero-m18-price .hero-m18-price-now{
    font-size: 2.1rem;
    font-weight: 800;
    color: #29292b;
}
.hero-m18-price .hero-m18-price-old{
    font-size: 1.5rem;
    color: #999;
}
.hero-m18-perks{
    list-style: none;
    padding: 0;
    margin: 0 0 1.4rem;
}
.hero-m18-perks li{
    font-size: 0.98rem;
    color: #333;
    margin-bottom: 0.35rem;
}
.hero-m18-cta{
    display: inline-block;
    background: #3998fd;
    color: #fff;
    font-weight: 800;
    font-size: 1.05rem;
    padding: 0.85rem 2rem;
    border-radius: 6px;
    text-decoration: none;
    letter-spacing: 0.02em;
    transition: background .2s ease, transform .1s ease;
}
.hero-m18-cta:hover{
    background: #2f86e8;
    color: #fff;
    text-decoration: none;
    transform: translateY(-1px);
}
@media screen and (max-width: 768px){
    .hero-m18{
        flex-direction: column;
        padding: 1.75rem 1.25rem;
        min-height: 0;
        text-align: left;
    }
    .hero-m18-media img{
        max-height: 220px;
    }
    .hero-m18-title{
        font-size: 1.7rem;
    }
    .hero-m18-price .hero-m18-price-now{
        font-size: 1.7rem;
    }
}
/* ── Why M18 (use-cases) ────────────────────────────────────── */
.container-why-m18{ padding: 3.5rem 0; background: #fff; }
.why-m18-heading{
    text-align: center;
    font-size: 2rem;
    font-weight: 800;
    color: #29292b;
    margin-bottom: 0.6rem;
}
.why-m18-sub{
    text-align: center;
    color: #666;
    font-size: 1.05rem;
    line-height: 1.6;
    max-width: 640px;
    margin: 0 auto 2.5rem;
}
.why-m18-col{ margin-bottom: 1.5rem; }
.why-m18-card{
    border: 1px solid #e4e7ec;
    border-radius: 10px;
    overflow: hidden;
    background: #fafbfd;
    height: 100%;
    text-align: center;
    padding: 1.25rem 1.25rem 1.5rem;
    transition: transform .2s ease, box-shadow .2s ease;
    position: relative;
}
.why-m18-card:hover{
    transform: translateY(-3px);
    box-shadow: 0 10px 26px rgba(0,0,0,0.10);
}
.why-m18-icon{
    font-size: 1.6rem;
    margin-bottom: 0.75rem;
}
.why-m18-card-img{
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 0.9rem;
    background: #fff;
    border: 1px solid #eee;
}
.why-m18-card-img img{
    width: 100%;
    height: 150px;
    object-fit: cover;
    display: block;
}
.why-m18-card-title{
    font-size: 1.15rem;
    font-weight: 800;
    color: #29292b;
    margin: 0 0 0.4rem;
}
.why-m18-card-text{
    font-size: 0.9rem;
    color: #666;
    line-height: 1.5;
    margin: 0;
}
/* ── How M18 works (3 steps) ────────────────────────────────── */
.container-how-m18{ padding: 3.5rem 0; background: #f5f8fc; }
.how-m18-heading{
    text-align: center;
    font-size: 2rem;
    font-weight: 800;
    color: #29292b;
    margin-bottom: 0.6rem;
}
.how-m18-sub{
    text-align: center;
    color: #666;
    font-size: 1.05rem;
    line-height: 1.6;
    max-width: 640px;
    margin: 0 auto 2.5rem;
}
.how-m18-step{ margin-bottom: 1.5rem; }
.how-m18-card{
    border: 1px solid #e4e7ec;
    border-radius: 10px;
    background: #fff;
    height: 100%;
    text-align: center;
    padding: 1.5rem 1.5rem 1.75rem;
    position: relative;
    transition: transform .2s ease, box-shadow .2s ease;
}
.how-m18-card:hover{
    transform: translateY(-3px);
    box-shadow: 0 10px 26px rgba(0,0,0,0.10);
}
.how-m18-medal{
    font-size: 1.9rem;
    line-height: 1;
    margin-bottom: 0.75rem;
    color: #3998fd;
}
.how-m18-img{
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 1rem;
    background: #fafbfd;
    border: 1px solid #eee;
}
.how-m18-img img{
    width: 100%;
    height: 170px;
    object-fit: cover;
    display: block;
}
.how-m18-title{
    font-size: 1.2rem;
    font-weight: 800;
    letter-spacing: 0.03em;
    color: #29292b;
    margin: 0 0 0.5rem;
}
.how-m18-text{
    font-size: 0.92rem;
    color: #666;
    line-height: 1.55;
    margin: 0;
}
/* ── Compatibility (iPhone / Android) ──────────────────────── */
.container-compat-m18{ padding: 3.5rem 0; background: #fff; }
.compat-m18-heading{
    text-align: center;
    font-size: 2rem;
    font-weight: 800;
    color: #29292b;
    margin-bottom: 0.6rem;
}
.compat-m18-sub{
    text-align: center;
    color: #666;
    font-size: 1.05rem;
    line-height: 1.6;
    max-width: 680px;
    margin: 0 auto 2.5rem;
}
.compat-m18-col{ margin-bottom: 1.5rem; }
.compat-m18-card{
    border: 1px solid #e4e7ec;
    border-radius: 12px;
    overflow: hidden;
    background: #fafbfd;
    height: 100%;
    text-align: center;
    padding: 1.75rem 1.5rem;
    position: relative;
    transition: transform .2s ease, box-shadow .2s ease;
}
.compat-m18-card:hover{
    transform: translateY(-3px);
    box-shadow: 0 10px 26px rgba(0,0,0,0.10);
}
.compat-m18-phone-graphic{
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 1rem;
    background: #fff;
    border: 1px solid #eee;
    max-width: 260px;
    margin-left: auto;
    margin-right: auto;
}
.compat-m18-phone-graphic img{
    width: 100%;
    height: 200px;
    object-fit: contain;
    display: block;
    padding: 0.5rem;
}
.compat-m18-logo{
    font-size: 2.1rem;
    line-height: 1;
    margin-bottom: 0.5rem;
    /* Real brand logos render as inline SVG using currentColor, so they pick
       this up and stay legible whatever the card background is. */
    color: #29292b;
}
.compat-m18-logo svg{
    width: 2.1rem;
    height: 2.1rem;
    display: block;
    margin: 0 auto;
}

/* ── Reservation form: package list + conditional colour groups ──────────
   The package radios stack (there are seven combinations), and only the choice
   groups the selected package needs are shown. */
.form-m18-option-row-stack{
    flex-direction: column;
    align-items: stretch;
    gap: 0.5rem;
}
.form-m18-option-row-stack .form-m18-option{
    width: 100%;
}
.form-m18-choice-group{
    margin-top: 1rem;
}
.form-m18-color-chip.is-narandzasta{ background:#e67e22; }
.form-m18-color-chip.is-zelena{ background:#27ae60; }
.form-m18-color-chip.is-plava{ background:#2d6cdf; }

/* required / optional field markers */
.form-m18-req{ color:#e74c3c; font-weight:700; }
.form-m18-opt{ color:#8a8a99; font-style:normal; font-size:0.85em; }

/* the family package card (full width) */
.offer-m18-card.is-family{
    border-color: #6c5ce7;
}
.offer-m18-card.is-family .offer-m18-name{
    font-size: 1.25rem;
}

/* In-page anchors: the landing CTAs (#rezervisi) scroll smoothly to the
   preorder form instead of navigating away to /preorder. The header is
   static, so only a little breathing room is needed above the target. */
html{
    scroll-behavior: smooth;
}
#rezervisi{
    scroll-margin-top: 20px;
}
@media (prefers-reduced-motion: reduce){
    html{
        scroll-behavior: auto;
    }
}
.compat-m18-title{
    font-size: 1.35rem;
    font-weight: 800;
    color: #29292b;
    margin: 0 0 0.4rem;
}
.compat-m18-text{
    font-size: 0.95rem;
    color: #666;
    line-height: 1.5;
    margin: 0;
}
/* ── Key features (2x3 grid) ───────────────────────────────── */
.container-features-m18{ padding: 3.5rem 0; background: #f5f8fc; }
.features-m18-heading{
    text-align: center;
    font-size: 2rem;
    font-weight: 800;
    color: #29292b;
    margin-bottom: 2.5rem;
}
.features-m18-col{ margin-bottom: 1.25rem; }
.features-m18-card{
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: #fff;
    border: 1px solid #e4e7ec;
    border-radius: 10px;
    padding: 1.25rem 1.3rem;
    height: 100%;
    transition: transform .2s ease, box-shadow .2s ease;
}
.features-m18-card:hover{
    transform: translateY(-2px);
    box-shadow: 0 8px 22px rgba(0,0,0,0.08);
}
.features-m18-icon{
    flex: 0 0 auto;
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.7rem;
    background: #eef4ff;
    border-radius: 10px;
}
.features-m18-body{ min-width: 0; }
.features-m18-title{
    font-size: 1.05rem;
    font-weight: 800;
    color: #29292b;
    margin: 0 0 0.3rem;
}
.features-m18-text{
    font-size: 0.9rem;
    color: #666;
    line-height: 1.5;
    margin: 0;
}
/* ── Offer / price cards ───────────────────────────────────── */
.container-offer-m18{ padding: 3.5rem 0; background: #fff; }
.offer-m18-heading{
    text-align: center;
    font-size: 2rem;
    font-weight: 800;
    color: #29292b;
    margin-bottom: 2.5rem;
}
.offer-m18-col{ margin-bottom: 1.5rem; }
.offer-m18-card{
    position: relative;
    border: 2px solid #e4e7ec;
    border-radius: 12px;
    background: #fafbfd;
    padding: 2rem 1.75rem;
    text-align: center;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.offer-m18-card:hover{
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(0,0,0,0.10);
}
.offer-m18-card.is-2x{
    border-color: #3998fd;
    background: #f4f8ff;
}
.offer-m18-badge{
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #3998fd;
    color: #fff;
    font-weight: 800;
    font-size: 0.78rem;
    letter-spacing: 0.05em;
    padding: 5px 16px;
    border-radius: 999px;
}
.offer-m18-top{ margin-bottom: 1.25rem; }
.offer-m18-name{
    font-size: 1.3rem;
    font-weight: 800;
    color: #29292b;
    margin: 0 0 0.8rem;
}
.offer-m18-price{
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.8rem;
}
.offer-m18-price-now{
    font-size: 2rem;
    font-weight: 800;
    color: #29292b;
}
.offer-m18-price-old{
    font-size: 1.4rem;
    color: #999;
}
.offer-m18-perks{
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem;
    text-align: left;
    flex: 1 1 auto;
}
.offer-m18-perks li{
    font-size: 0.98rem;
    color: #333;
    padding: 0.45rem 0.25rem;
}
.offer-m18-cta{
    display: block;
    width: 100%;
    background: #3998fd;
    color: #fff;
    font-weight: 800;
    font-size: 1.05rem;
    letter-spacing: 0.02em;
    padding: 0.9rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    transition: background .2s ease, transform .1s ease;
}
.offer-m18-cta:hover{
    background: #2f86e8;
    color: #fff;
    text-decoration: none;
    transform: translateY(-1px);
}
@media screen and (max-width: 768px){
    .offer-m18-price-now{ font-size: 1.7rem; }
    .offer-m18-price-old{ font-size: 1.2rem; }
}
/* ── How preorder works (3 steps + arrows) ─────────────────── */
.container-howpo-m18{ padding: 3.5rem 0; background: #f5f8fc; }
.howpo-m18-heading{
    text-align: center;
    font-size: 2rem;
    font-weight: 800;
    color: #29292b;
    margin-bottom: 0.5rem;
}
.howpo-m18-sub{
    text-align: center;
    color: #666;
    font-size: 1.05rem;
    margin-bottom: 2.5rem;
}
.howpo-m18-steps{
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2.25rem;
}
.howpo-m18-step{
    flex: 1 1 0;
    max-width: 300px;
    text-align: center;
}
.howpo-m18-num{
    width: 64px;
    height: 64px;
    margin: 0 auto 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.7rem;
    font-weight: 800;
    color: #fff;
    background: #3998fd;
    border-radius: 50%;
    box-shadow: 0 6px 14px rgba(57,152,253,0.35);
}
.howpo-m18-arrow{
    flex: 0 0 auto;
    align-self: center;
    font-size: 1.8rem;
    color: #3998fd;
    font-weight: 800;
    padding-top: 2rem;
}
.howpo-m18-title{
    font-size: 1.08rem;
    font-weight: 800;
    letter-spacing: 0.02em;
    color: #29292b;
    margin: 0 0 0.4rem;
}
.howpo-m18-text{
    font-size: 0.9rem;
    color: #666;
    line-height: 1.5;
    margin: 0;
}
.howpo-m18-lock{
    max-width: 640px;
    margin: 0 auto;
    text-align: center;
    background: #eef4ff;
    color: #1f6fd6;
    border: 1px solid #cfe0fb;
    border-radius: 999px;
    padding: 0.75rem 1.4rem;
    font-size: 0.98rem;
    line-height: 1.5;
}
@media screen and (max-width: 768px){
    .howpo-m18-steps{
        flex-direction: column;
        align-items: center;
    }
    .howpo-m18-arrow{
        transform: rotate(90deg);
        padding: 0.25rem 0;
    }
    .howpo-m18-lock{ border-radius: 10px; }
}
/* ── Preorder form (landing) ───────────────────────────────── */
.container-form-m18{ padding: 3.5rem 0; background: #fff; }
.form-m18-heading{
    text-align: center;
    font-size: 2rem;
    font-weight: 800;
    color: #29292b;
    margin-bottom: 0.5rem;
}
.form-m18-sub{
    text-align: center;
    color: #666;
    font-size: 1.05rem;
    margin-bottom: 2.5rem;
}
.form-m18-card{
    border: 2px solid #e4e7ec;
    border-radius: 14px;
    background: #fafbfd;
    padding: 2rem 2rem 1.5rem;
}
.form-m18-label{
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.05em;
    color: #3998fd;
    margin: 0 0 0.7rem;
}
.form-m18-option-row{
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 1.4rem;
}
.form-m18-option{
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    border: 1px solid #d0d4da;
    border-radius: 8px;
    padding: 0.7rem 1.1rem;
    background: #fff;
    cursor: pointer;
    transition: border-color .15s ease;
    color: #333;
}
.form-m18-option:hover{ border-color: #3998fd; }
.form-m18-option input[type="radio"]{ accent-color: #3998fd; }
.form-m18-option-label{ font-size: 0.95rem; }
.form-m18-color .form-m18-color-chip{
    width: 18px;
    height: 18px;
    border-radius: 50%;
    border: 1px solid #ccc;
    display: inline-block;
}
.form-m18-color .is-black{ background: #29292b; }
.form-m18-color .is-white{ background: #fff; }
/* Case colours that ship with the package — the four standard ones in the
   five-tag bundle. Same chips, but stated rather than offered: no border and no
   pointer, because there is nothing to click. */
.form-m18-fixed-cases .form-m18-option-row{
    flex-wrap: wrap;
    gap: 0.5rem;
}
.form-m18-fixed-case{
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.45rem 0.8rem;
    border-radius: 999px;
    background: #f5f8fc;
    border: 1px solid #e4e7ec;
    color: #29292b;
    font-size: 0.9rem;
}
.form-m18-fixed-case .form-m18-color-chip{
    width: 18px;
    height: 18px;
    border-radius: 50%;
    border: 1px solid #ccc;
    display: inline-block;
}
.form-m18-fixed-case .is-black{ background: #29292b; }
.form-m18-fixed-case .is-white{ background: #fff; }
.form-m18-fixed-note{
    margin: 0.5rem 0 0;
    font-size: 0.85rem;
    color: #8a8a99;
}
.form-m18-fields{ margin-bottom: 1rem; }
.form-m18-field{
    display: block;
    margin-bottom: 0.9rem;
}
.form-m18-field > span{
    display: block;
    font-size: 0.85rem;
    color: #555;
    margin-bottom: 0.3rem;
    font-weight: 600;
}
.form-m18-field input{
    width: 100%;
    padding: 0.75rem 0.9rem;
    border: 1px solid #d0d4da;
    border-radius: 6px;
    font-size: 0.95rem;
    background: #fff;
    outline: 0;
}
.form-m18-field input:focus{ border-color: #3998fd; }
.form-m18-note{
    font-size: 0.92rem;
    font-weight: 700;
    color: #1f6fd6;
    margin: 0 0 1rem;
}
.form-m18-cta{
    display: block;
    width: 100%;
    background: #2fae53;
    color: #fff;
    font-weight: 800;
    font-size: 1.1rem;
    padding: 0.95rem 1.5rem;
    border: 0;
    border-radius: 8px;
    cursor: pointer;
    transition: background .2s ease, transform .1s ease;
}
.form-m18-cta:hover{ background: #289a49; transform: translateY(-1px); }
.form-m18-fineprint{
    font-size: 0.75rem;
    color: #999;
    text-align: center;
    margin-top: 0.9rem;
}
.form-m18-err{
    font-size: 0.88rem;
    color: #d33;
    margin-top: 0.75rem;
    min-height: 1.1em;
}
/* ── FAQ (collapsible) ─────────────────────────────────────── */
.container-faq-m18{ padding: 3.5rem 0; background: #f5f8fc; }
.faq-m18-heading{
    text-align: center;
    font-size: 2rem;
    font-weight: 800;
    color: #29292b;
    margin-bottom: 2.5rem;
}
.faq-m18-list{ max-width: 820px; margin: 0 auto; }
.faq-m18-item{
    border: 1px solid #e4e7ec;
    border-radius: 9px;
    background: #fff;
    margin-bottom: 0.7rem;
    overflow: hidden;
}
.faq-m18-q{
    list-style: none;
    cursor: pointer;
    font-size: 1.0rem;
    font-weight: 700;
    color: #29292b;
    padding: 1rem 3.2rem 1rem 1.25rem;
    position: relative;
}
.faq-m18-q::-webkit-details-marker{ display: none; }
.faq-m18-q::after{
    content: "▸";
    position: absolute;
    right: 1.15rem;
    top: 50%;
    transform: translateY(-50%);
    color: #3998fd;
    font-size: 1.1rem;
    transition: transform .2s ease;
}
.faq-m18-item[open] .faq-m18-q::after{
    transform: translateY(-50%) rotate(90deg);
}
.faq-m18-a{
    margin: 0;
    padding: 0 1.25rem 1.05rem;
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
}
/* ── Bottom tagline (dark CTA before footer) ───────────────── */
.container-tagline-m18{
    background: linear-gradient(135deg, #232528 0%, #2a2c30 100%);
    padding: 4.5rem 1.5rem;
}
.tagline-m18-box{
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
}
.tagline-m18-title{
    font-size: 2rem;
    font-weight: 800;
    color: #ffffff;
    margin: 0 0 0.9rem;
    line-height: 1.2;
}
.tagline-m18-text{
    font-size: 1.05rem;
    color: #c7cbd1;
    line-height: 1.6;
    margin: 0;
}
@media screen and (max-width: 768px){
    .tagline-m18-title{ font-size: 1.5rem; }
}

/* ============================================================
   M18 landing upgrade — sections added from the advertiser's
   brief (.hermes/Landing.pdf). Same palette, same rhythm:
   headings #29292b, body #666, accent #3998fd, borders #e4e7ec,
   surfaces alternating #fff / #f5f8fc, sections 3.5rem 0.
   No new colour, font or dark surface anywhere in this block.
   ============================================================ */

/* A deliberate stand-in until real photography lands: keeps the
   image box the right shape and reads as "waiting for media"
   rather than as a broken image. */
.m18-ph{
    background: #f5f8fc;
    border: 1px dashed #d0d4da;
    border-radius: 10px;
    object-fit: contain;
    padding: 1.1rem;
    width: 100%;
    height: 100%;
}

/* ---------- trust strip (directly under the hero) ---------- */
.container-trust-m18{
    background: #fafbfd;
    border-top: 1px solid #e4e7ec;
    border-bottom: 1px solid #e4e7ec;
    padding: 1.4rem 0;
}
.m18-trust-strip{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
    gap: 1.75rem 3rem;
}
.m18-trust-item{
    display: flex;
    align-items: flex-start;
    gap: 0.7rem;
    max-width: 260px;
}
.m18-trust-item svg{
    width: 26px;
    height: 26px;
    flex: 0 0 auto;
    color: #3998fd;
    margin-top: 2px;
}
.m18-trust-item b{
    display: block;
    font-size: 0.95rem;
    font-weight: 800;
    color: #29292b;
    line-height: 1.3;
}
.m18-trust-item span{
    display: block;
    font-size: 0.85rem;
    color: #666;
    line-height: 1.4;
}

/* ---------- hero gallery thumbnails ---------- */
.hero-m18-thumbs{
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    margin-top: 0.9rem;
    justify-content: center;
}
.hero-m18-thumb{
    width: 72px;
    height: 72px;
    border: 2px solid #e4e7ec;
    border-radius: 9px;
    background: #fafbfd;
    padding: 0;
    cursor: pointer;
    overflow: hidden;
    transition: border-color .2s ease, transform .2s ease;
}
.hero-m18-thumb img{
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 0.35rem;
}
.hero-m18-thumb:hover{
    border-color: #3998fd;
    transform: translateY(-2px);
}
.hero-m18-thumb.is-active{
    border-color: #3998fd;
    background: #eef4ff;
}
.hero-m18-rating{
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin: 0.2rem 0 0.6rem;
    font-size: 0.9rem;
    color: #666;
}
.hero-m18-rating .stars{
    color: #3998fd;
    letter-spacing: 2px;
    font-size: 1rem;
}

/* ---------- tenzija i rezloucija ---------- */
.container-tension-m18{
    padding: 3.5rem 0;
    background: #f5f8fc;
    border-top: 1px solid #e4e7ec;
}
.tension-m18-grid{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 2.5rem;
}
.tension-m18-copy{
    flex: 1 1 380px;
    min-width: 290px;
}
.tension-m18-media{
    flex: 1 1 320px;
    min-width: 260px;
}
.tension-m18-media img{
    width: 100%;
    max-width: 340px;
    display: block;
    margin: 0 auto;
    border-radius: 12px;
}
.tension-m18-title{
    font-size: 1.85rem;
    font-weight: 800;
    color: #29292b;
    line-height: 1.25;
    margin: 0 0 1rem;
}
.tension-m18-sub{
    font-size: 1.02rem;
    color: #666;
    line-height: 1.7;
    margin: 0 0 1.1rem;
}
.tension-m18-close{
    font-size: 1.05rem;
    font-weight: 800;
    color: #29292b;
    line-height: 1.6;
    margin: 1.4rem 0 0;
    padding: 1rem 1.25rem;
    background: #fff;
    border-left: 4px solid #3998fd;
    border-radius: 0 9px 9px 0;
}

/* ---------- upotreba (usage) ---------- */
.container-usage-m18{
    padding: 3.5rem 0;
    background: #fff;
}
.usage-m18-heading,
.tension-m18-heading{
    font-size: 1.85rem;
    font-weight: 800;
    color: #29292b;
    text-align: center;
    margin: 0 0 0.7rem;
    line-height: 1.25;
}
.usage-m18-sub,
.tension-m18-heading + .usage-m18-sub{
    font-size: 1.02rem;
    color: #666;
    text-align: center;
    max-width: 720px;
    margin: 0 auto 2.2rem;
    line-height: 1.6;
}
.usage-m18-grid{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.4rem;
}
.usage-m18-card{
    flex: 0 1 232px;
    min-width: 190px;
    background: #fafbfd;
    border: 1px solid #e4e7ec;
    border-radius: 12px;
    padding: 1rem;
    text-align: center;
    transition: transform .2s ease, box-shadow .2s ease;
}
.usage-m18-card:hover{
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(41, 41, 43, .08);
}
.usage-m18-media{
    height: 150px;
    border-radius: 9px;
    overflow: hidden;
    margin-bottom: 0.9rem;
    background: #fff;
}
.usage-m18-media img{
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.usage-m18-title{
    font-size: 1rem;
    font-weight: 800;
    color: #29292b;
    margin: 0 0 0.35rem;
}
.usage-m18-text{
    font-size: 0.87rem;
    color: #666;
    line-height: 1.5;
    margin: 0;
}

/* ---------- "works with both networks" badge under how-m18 ---------- */
.how-m18-badge-row{
    display: flex;
    justify-content: center;
    margin-top: 2rem;
}
.how-m18-badge{
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: #fff;
    border: 1px solid #cfe0fb;
    border-radius: 999px;
    padding: 0.75rem 1.6rem;
    font-size: 0.97rem;
    font-weight: 700;
    color: #29292b;
    text-align: center;
}
.how-m18-badge .tick{
    color: #27ae60;
    font-size: 1.05rem;
    line-height: 1;
}

/* ---------- single accordion under the offer ---------- */
.container-accordion-m18{
    padding: 3.5rem 0;
    background: #f5f8fc;
    border-top: 1px solid #e4e7ec;
}
.accordion-m18-heading{
    font-size: 1.6rem;
    font-weight: 800;
    color: #29292b;
    text-align: center;
    margin: 0 0 0.6rem;
}
.accordion-m18-sub{
    font-size: 0.98rem;
    color: #666;
    text-align: center;
    margin: 0 auto 1.8rem;
    max-width: 660px;
    line-height: 1.6;
}

/* ---------- "šta dobijate" + guarantee ---------- */
.container-included-m18{
    padding: 3.5rem 0;
    background: #fff;
}
.included-m18-heading{
    font-size: 1.85rem;
    font-weight: 800;
    color: #29292b;
    text-align: center;
    margin: 0 0 2rem;
}
.included-m18-list{
    max-width: 760px;
    margin: 0 auto;
    list-style: none;
    padding: 0;
}
.included-m18-item{
    display: flex;
    align-items: flex-start;
    gap: 0.85rem;
    padding: 0.85rem 0;
    border-bottom: 1px solid #e4e7ec;
    font-size: 1rem;
    color: #333;
    line-height: 1.5;
}
.included-m18-item:last-child{ border-bottom: none; }
.included-m18-icon{
    flex: 0 0 auto;
    width: 26px;
    text-align: center;
    font-size: 1.05rem;
}
.included-m18-item b{ color: #29292b; font-weight: 800; }
.guarantee-m18-row{
    display: flex;
    justify-content: center;
    margin-top: 2.2rem;
}
.guarantee-m18-badge{
    display: flex;
    align-items: center;
    gap: 1rem;
    max-width: 620px;
    background: #fafbfd;
    border: 1px solid #cfe0fb;
    border-radius: 12px;
    padding: 1.2rem 1.5rem;
}
.guarantee-m18-badge svg{
    width: 38px;
    height: 38px;
    flex: 0 0 auto;
    color: #3998fd;
}
.guarantee-m18-badge b{
    display: block;
    font-size: 1.02rem;
    font-weight: 800;
    color: #29292b;
    margin-bottom: 0.25rem;
}
.guarantee-m18-badge span{
    display: block;
    font-size: 0.9rem;
    color: #666;
    line-height: 1.5;
}

/* ---------- testimonials ---------- */
.container-reviews-m18{
    padding: 3.5rem 0;
    background: #f5f8fc;
    border-top: 1px solid #e4e7ec;
}
.reviews-m18-heading{
    font-size: 1.85rem;
    font-weight: 800;
    color: #29292b;
    text-align: center;
    margin: 0 0 0.7rem;
}
.reviews-m18-sub{
    font-size: 1.02rem;
    color: #666;
    text-align: center;
    margin: 0 auto 2.2rem;
    max-width: 640px;
    line-height: 1.6;
}
.reviews-m18-grid{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.2rem;
}
.review-m18-card{
    flex: 0 1 340px;
    min-width: 280px;
    background: #fff;
    border: 1px solid #e4e7ec;
    border-radius: 12px;
    padding: 1.4rem 1.5rem;
    display: flex;
    flex-direction: column;
}
.review-m18-stars{
    color: #3998fd;
    letter-spacing: 2px;
    font-size: 0.95rem;
    margin-bottom: 0.7rem;
}
.review-m18-text{
    font-size: 0.95rem;
    color: #333;
    line-height: 1.65;
    margin: 0 0 1.1rem;
    flex: 1 1 auto;
}
.review-m18-author{
    display: flex;
    align-items: center;
    gap: 0.7rem;
    border-top: 1px solid #e4e7ec;
    padding-top: 0.85rem;
}
.review-m18-avatar{
    width: 38px;
    height: 38px;
    border-radius: 50%;
    flex: 0 0 auto;
    object-fit: cover;
    background: #eef4ff;
    border: 1px solid #cfe0fb;
}
.review-m18-initials{
    width: 38px;
    height: 38px;
    border-radius: 50%;
    flex: 0 0 auto;
    background: #eef4ff;
    border: 1px solid #cfe0fb;
    color: #1f6fd6;
    font-size: 0.85rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
}
.review-m18-name{
    font-size: 0.92rem;
    font-weight: 800;
    color: #29292b;
    line-height: 1.2;
}
.review-m18-verified{
    font-size: 0.78rem;
    color: #666;
}

/* ---------- comparison table ---------- */
.container-compare-m18{
    padding: 3.5rem 0;
    background: #fff;
}
.compare-m18-heading{
    font-size: 1.85rem;
    font-weight: 800;
    color: #29292b;
    text-align: center;
    margin: 0 0 0.7rem;
}
.compare-m18-sub{
    font-size: 1.02rem;
    color: #666;
    text-align: center;
    margin: 0 auto 2rem;
    max-width: 660px;
    line-height: 1.6;
}
.compare-m18-scroll{
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}
.compare-m18-table{
    width: 100%;
    min-width: 560px;
    border-collapse: collapse;
    background: #fff;
    border: 1px solid #e4e7ec;
    border-radius: 12px;
    overflow: hidden;
}
.compare-m18-table th{
    font-size: 0.95rem;
    font-weight: 800;
    color: #29292b;
    padding: 1rem 1.1rem;
    text-align: left;
    background: #fafbfd;
    border-bottom: 1px solid #e4e7ec;
}
.compare-m18-table th.is-m18{
    background: #eef4ff;
    color: #1f6fd6;
}
.compare-m18-table td{
    font-size: 0.93rem;
    color: #666;
    padding: 0.9rem 1.1rem;
    border-bottom: 1px solid #e4e7ec;
    vertical-align: top;
    line-height: 1.5;
}
.compare-m18-table tr:last-child td{ border-bottom: none; }
.compare-m18-table td.is-m18{
    background: #f4f8ff;
    color: #29292b;
    font-weight: 700;
}
.compare-m18-table td .no{ color: #999; }
.compare-m18-rowlabel{
    font-weight: 700;
    color: #29292b;
}

/* ---------- network / reach ---------- */
.container-network-m18{
    padding: 3.5rem 0;
    background: #f5f8fc;
    border-top: 1px solid #e4e7ec;
    text-align: center;
}
.network-m18-heading{
    font-size: 1.85rem;
    font-weight: 800;
    color: #29292b;
    margin: 0 auto 0.9rem;
    max-width: 820px;
    line-height: 1.3;
}
.network-m18-sub{
    font-size: 1.02rem;
    color: #666;
    max-width: 680px;
    margin: 0 auto 1.8rem;
    line-height: 1.65;
}
.network-m18-strip{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem 1.6rem;
    margin-bottom: 2rem;
}
.network-m18-strip span{
    font-size: 0.92rem;
    font-weight: 700;
    color: #29292b;
    background: #fff;
    border: 1px solid #e4e7ec;
    border-radius: 999px;
    padding: 0.5rem 1.15rem;
}
.network-m18-cta{
    display: inline-block;
    background: #3998fd;
    color: #fff;
    font-size: 1rem;
    font-weight: 800;
    text-decoration: none;
    padding: 1rem 2.4rem;
    border-radius: 8px;
    transition: background .2s ease, transform .2s ease;
}
.network-m18-cta:hover{
    background: #2f86e8;
    color: #fff;
    transform: translateY(-2px);
}

/* ---------- closing: seven reasons ---------- */
.closing-m18-list{
    list-style: none;
    padding: 0;
    margin: 2rem auto 0;
    max-width: 720px;
    text-align: left;
}
.closing-m18-item{
    display: flex;
    align-items: center;
    gap: 0.9rem;
    padding: 0.7rem 0;
    font-size: 1rem;
    color: #c7cbd1;
    line-height: 1.5;
}
.closing-m18-item span.num{
    flex: 0 0 auto;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #3998fd;
    color: #fff;
    font-size: 0.88rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
}
.tagline-m18-cta{
    display: inline-block;
    margin-top: 2rem;
    background: #3998fd;
    color: #fff;
    font-size: 1rem;
    font-weight: 800;
    text-decoration: none;
    padding: 1rem 2.4rem;
    border-radius: 8px;
    transition: background .2s ease, transform .2s ease;
}
.tagline-m18-cta:hover{
    background: #2f86e8;
    color: #fff;
    transform: translateY(-2px);
}

/* ---------- sticky mobile CTA ---------- */
.m18-sticky-cta{
    display: none;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 60;
    background: #fff;
    border-top: 1px solid #e4e7ec;
    box-shadow: 0 -4px 16px rgba(41, 41, 43, .10);
    padding: 0.7rem 0.9rem;
    align-items: center;
    gap: 0.8rem;
}
.m18-sticky-cta .info{
    flex: 1 1 auto;
    min-width: 0;
}
.m18-sticky-cta .info b{
    display: block;
    font-size: 0.9rem;
    font-weight: 800;
    color: #29292b;
    line-height: 1.25;
}
.m18-sticky-cta .info span{
    display: block;
    font-size: 0.78rem;
    color: #666;
}
.m18-sticky-cta a{
    flex: 0 0 auto;
    background: #3998fd;
    color: #fff;
    font-size: 0.9rem;
    font-weight: 800;
    text-decoration: none;
    padding: 0.75rem 1.3rem;
    border-radius: 8px;
    white-space: nowrap;
}
.m18-sticky-cta a:hover{ background: #2f86e8; color: #fff; }

/* ---------- responsive ---------- */
@media screen and (max-width: 991px){
    .tension-m18-title,
    .usage-m18-heading,
    .included-m18-heading,
    .reviews-m18-heading,
    .compare-m18-heading,
    .network-m18-heading{ font-size: 1.55rem; }
}
@media screen and (max-width: 768px){
    .container-tension-m18,
    .container-usage-m18,
    .container-accordion-m18,
    .container-included-m18,
    .container-reviews-m18,
    .container-compare-m18,
    .container-network-m18{ padding: 2.6rem 0; }
    .tension-m18-grid{ gap: 1.6rem; }
    .tension-m18-media{ order: -1; }
    .tension-m18-close{ font-size: 0.98rem; padding: 0.9rem 1rem; }
    .m18-trust-strip{ gap: 1.1rem 1.6rem; }
    .m18-trust-item{ max-width: none; flex: 1 1 180px; }
    .hero-m18-thumb{ width: 60px; height: 60px; }
    .usage-m18-card{ flex: 1 1 100%; }
    .review-m18-card{ flex: 1 1 100%; }
    .guarantee-m18-badge{ flex-direction: column; text-align: center; }
    /* give the sticky bar room so it never covers the last block */
    body.has-m18-sticky{ padding-bottom: 74px; }
    .m18-sticky-cta.is-visible{ display: flex; }
    .network-m18-cta,
    .tagline-m18-cta{ width: 100%; padding: 1rem 1rem; }
    .closing-m18-item{ font-size: 0.94rem; }
}