/*
En caso de contar con fuentes personalizadas agregar aquí, ya sea vinculando archivos o import de google font.
*/
@import url('css/colors.css?t=3');
@import url('css/reset.css?t=8');

/*Todo el trabajo de estilo Desktop será trabajado aquí*/
/*Trabajaremos un override de clases si es necesario en los siguientes estilos cargadas por media querie
1400px de ancho o más, todo lo que hay en style.css
1280px a 1400px, todo lo que inclye en style y se hace override de lo que necesites aquí mismo.
1279px a 1126px, todo lo que inclye en style y se hace override de lo que necesites aquí mismo.
1125px a 1001px, todo lo que inclye en style y se hace override de lo que necesites aquí mismo. (Tablets resolución grande)
1000px a 631px, todo lo que inclye en style y se hace override de lo que necesites aquí mismo. (Tablets resolución mediano)
320px a 630px, todo lo que inclye en style y se hace override de lo que necesites aquí mismo. (Smartphones)

Con esto evitamos anidar media queries en clases. En un futuro, si detectamos un problema sabemos exactamente donde intervenir (desktop, tablet o smartphone).
*/

/*Importante abrir comentarios para cualquier módulo que trabajes y cerrarlo. Ejemplo con Header*/

/*General*/
[data-theme="light"] .hide-in-light {
	display: none;
}

[data-theme="dark"] .hide-in-dark {
	display: none;
}

.center-block {
	max-width: 1280px;
	/*Lienzo máximo de 1280px*/
	margin: 0 auto;
}

.inner-container {
	max-width: 800px;
	margin: 0 auto;
}

.btn-style-1 {
	display: flex;
	width: fit-content;
	align-items: center;
	justify-content: center;
	background-color: var(--main-text-color);
	color: var(--white);
	font-size: 17pt;
	padding: 10px 10px 10px 48px;
	border-radius: 40px;
	border: 2px solid var(--main-text-color);
	text-decoration: none;
	margin: 0 auto;
	transition: transform 0.3s ease-in-out;
	transform: scale(0.9);
}

.btn-style-1:hover {
	transform: scale(1);
}

.btn-style-1 span.circle {
	background-color: var(--white);
	width: 30px;
	height: 30px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 5px;
	margin-left: 30px;
}

.btn-style-1 span.circle img {
	width: 25px;
	height: 25px;
}

.btn-style-2 {
	display: flex;
	width: fit-content;
	align-items: center;
	justify-content: center;
	font-size: 17pt;
	padding: 10px 10px 10px 48px;
	border-radius: 40px;
	border: 2px solid var(--main-text-color);
	text-decoration: none;
	margin: 0 auto;
	transition: transform 0.3s ease-in-out;
	transform: scale(0.9);
}

.btn-style-2:hover {
	transform: scale(1);
}

.btn-style-2 span.circle {
	background-color: var(--main-text-color);
	width: 30px;
	height: 30px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 5px;
	margin-left: 30px;
}

.btn-style-2 span.circle img {
	width: 25px;
	height: 25px;
}

.title {
	font-size: 2.5rem;
	font-weight: 700;
	line-height: 1.3em;
}

.theme-toggle {
	color: var(--main-text-color);
	background-color: var(--main-background-color);
	padding: .5rem 1.5rem;
}

.product-picker {
	display: none;
}

/*General*/

/*Icon Mobile Nav*/
header .topbar .center-block .hamb-mobile {
	display: none;
	position: relative;
	height: 100%;
	justify-content: center;
	align-items: center;
	z-index: 20;
}

header .topbar .center-block .hamb-mobile .hamb-container {
	display: inline-block;
	cursor: pointer;
}

header .topbar .center-block .hamb-mobile .hamb-container .bar1,
header .topbar .center-block .hamb-mobile .hamb-container .bar2,
header .topbar .center-block .hamb-mobile .hamb-container .bar3 {
	width: 42px;
	height: 6px;
	background-color: var(--black);
	margin: 6px 0;
	transition: 0.4s;
	border-radius: 5px;
}

header .topbar .center-block .hamb-mobile .hamb-container.change .bar1 {
	transform: translate(0, 12px) rotate(-45deg);
}

header .topbar .center-block .hamb-mobile .hamb-container.change .bar2 {
	opacity: 0;
}

header .topbar .center-block .hamb-mobile .hamb-container.change .bar3 {
	transform: translate(0, -12px) rotate(45deg);
}

/*Icon Mobile Nav*/

/*Header*/
header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 9999;
	overflow: visible;
}

header .topbar {
	background-color: var(--white);
	padding: 12px 0;
	box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.08);
}

header .topbar .center-block {
	position: relative;
	display: flex;
	align-items: center;
}

header .topbar .center-block .top-logo {
	max-width: 250px;
	width: 20%;
	margin: 0 15px 0;
}

header .topbar .center-block .top-logo img {
	width: 100%;
	height: 80px;
	object-fit: contain;
}

header .topbar .center-block .top-menu-container {
	width: 60%;
}

header .topbar .center-block .top-menu {
	margin: 0;
	padding: 0;
	list-style-type: none;
	display: flex;
	justify-content: center;
	align-items: center;
}

header .topbar .center-block .top-menu li {
	display: inline-block;
	position: relative;
}

header .topbar .center-block .top-menu li a {
	margin: 0px 15px;
	display: inline-block;
	text-decoration: none;
	font-weight: 600;
	font-stretch: normal;
	font-style: normal;
	line-height: normal;
	letter-spacing: normal;
	vertical-align: middle;
}

header .topbar .center-block .top-menu li.current-menu-parent a {
	color: var(--third-text-color);
}

header .topbar .center-block .top-menu li.current-menu-item a {
	color: var(--third-text-color);
}

header .topbar .center-block .top-menu li a:hover {
	color: var(--third-text-color);
}

header .topbar .center-block .top-menu li a img.arrow {
	width: 15px;
	display: none;
}

header .topbar .center-block .top-menu li ul.submenu {
	display: none;
}

header .topbar .center-block .top-menu li:hover>ul.submenu {
	display: block;
	position: absolute;
	width: 300px;
	margin: 0;
	padding: 10px 0px;
	background-color: var(--white);
	box-shadow: rgba(0, 0, 0, 0.07) 0px 1px 1px, rgba(0, 0, 0, 0.07) 0px 2px 2px, rgba(0, 0, 0, 0.07) 0px 4px 4px, rgba(0, 0, 0, 0.07) 0px 8px 8px, rgba(0, 0, 0, 0.07) 0px 16px 16px;
	border-radius: 15px;
}

header .topbar .center-block .top-menu li ul.submenu li a {
	font-size: 1rem;
	font-weight: 500;
	padding: 10px 10px;
	border-bottom: 1px solid var(--main-background-color);
	color: var(--black);
}

header .topbar .center-block .top-menu li ul.submenu li.current-menu-item a,
header .topbar .center-block .top-menu li ul.submenu li a:hover {
	color: var(--third-text-color);
	font-weight: 600;
}

header .topbar .center-block .top-search-shopping {
	width: 20%;
	display: flex;
	justify-content: flex-end;
	align-items: center;
	padding: 15px 0;
}

header .topbar .center-block .top-search-shopping .top-icon-search {
	display: block;
	width: 30px;
	height: 30px;
}

header .topbar .center-block .top-search-shopping .top-icon-search img {
	width: 100%;
}

header .topbar .center-block .top-search-shopping .top-shopping-bag {
	position: relative;
	width: 58px;
	height: 58px;
	border-radius: 50%;
	background-color: var(--black);
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	margin-left: 25px;
	box-shadow: 4px 4px 20px 0 rgba(159, 159, 159, 0.36);
	margin-right: 20px;
	transition: transform 0.3s ease-in-out;
	transform: scale(0.9);
}

header .topbar .center-block .top-search-shopping .top-shopping-bag:hover {
	transform: scale(1);
}

header .topbar .center-block .top-search-shopping .top-shopping-bag img {
	width: 22px;
	height: 22px;
	fill: #ffffff;
}

header .topbar .center-block .top-search-shopping .top-shopping-bag .badge {
	position: absolute;
	top: -13px;
	right: -2px;
	min-width: 18px;
	height: 28px;
	padding: 0 5px;
	border-radius: 999px;
	background-color: var(--third-text-color);
	color: #fff;
	font-size: 11px;
	font-weight: 600;
	display: flex;
	align-items: center;
	justify-content: center;
}

header .menu-mobile {
	display: none;
	background-color: var(--white);
}

header .menu-mobile .center-block .menu-container {
	opacity: 0;
	transform: translateY(-10px);
	pointer-events: none;
	transition: opacity 0.3s ease, transform 0.3s ease;
}

header .menu-mobile .center-block .menu-container.is-visible {
	opacity: 1;
	transform: translateY(0);
	pointer-events: auto;
	padding-bottom: 50px;
}

header .menu-mobile .center-block .menu-container ul {
	list-style: none;
	text-align: center;
	margin: 0px 30px;
}

header .menu-mobile .center-block .menu-container ul li a {
	display: block;
	text-decoration: none;
	font-size: 1.5rem;
	padding: 15px 0;
	font-weight: bold;
}

header .menu-mobile .center-block .menu-container ul li.current-menu-item a {
	color: var(--third-text-color);
}

header .menu-mobile .center-block .menu-container ul li a:hover {
	color: var(--third-text-color);
}

header .menu-mobile .center-block .menu-container ul li.current a {
	color: var(--third-text-color);
}

header .menu-mobile .center-block .menu-container ul li a img {
	width: 15px;
}

header .menu-mobile .center-block .menu-container ul.submenu {
	margin-top: 0;
	margin-bottom: 0;
}

header .menu-mobile .center-block .menu-container ul li.current-menu-parent a {
	color: var(--third-text-color);
}

header .menu-mobile .center-block .menu-container ul.submenu li a {
	padding: 5px 0;
	font-size: 1.15rem;
	color: var(--black);
}

header .menu-mobile .center-block .menu-container ul.submenu li.current-menu-item a {
	color: var(--third-text-color);
}

/*End Header*/

/*Footer*/
footer {
	background-color: var(--white);
	padding: 0px 0px 30px;
}

footer .footer-data .center-block {
	display: flex;
	justify-content: space-between;
}

footer .footer-data .center-block:first-child {
	border-top: 2px solid #b7b7b7;
	padding-top: 40px;
}

footer .footer-data .center-block .footer-right {
	text-align: right;
}

footer .footer-data .center-block .link-1 {
	text-decoration: none;
	font-size: 2.25rem;
	font-weight: bold;
}

footer .footer-data .center-block .link-1:hover {
	text-decoration: underline;
}

footer .footer-data .center-block .location-schedule {
	margin-top: 30px;
}

footer .footer-data .center-block .copy-social-media {
	margin-top: 30px;
}

footer .footer-data .center-block .copy-social-media ul {
	margin: 0;
	padding: 0;
	list-style: none;
	display: flex;
}

footer .footer-data .center-block .copy-social-media ul li {
	margin-right: 15px;
}

footer .footer-data .center-block .copy-social-media ul li span {
	display: inline-block;
	margin-right: 10px;
	margin-left: 10px;
}

footer .footer-data .center-block .copy-social-media ul li a {
	display: inline-block;
	text-decoration: none;
	font-size: 1rem;
}

footer .footer-data .center-block .copy-social-media ul li a:hover {
	text-decoration: underline;
}

footer .footer-data .center-block .copy-social-media ul li a img {
	display: block;
	width: 30px;
	height: 30px;
}

/*End Footer*/

/*components*/
.searcher-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.4);
	/* Dark semi-transparent bg */
	backdrop-filter: blur(10px);
	/* Gaussian transparency effect */
	-webkit-backdrop-filter: blur(10px);
	/* Safari support */
	z-index: 1000;
	display: none;
	justify-content: center;
	align-items: flex-start;
	padding-top: 104px;
	/* Position from top */
}

.searcher-container {
	padding-top: 3rem;
	width: 90%;
	max-width: 600px;
}

.search-input-wrapper {
	position: relative;
	width: 100%;
	display: flex;
	align-items: center;
	background-color: white;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
	border-radius: 50px;
}

.s-input {
	width: 100%;
	padding-right: 48px;
	/* espacio para la lupa */
	position: relative;
	z-index: 1;
}

.submit-btn {
	position: absolute;
	right: 8px;
	top: 50%;
	width: 30px;
	height: 30px;
	transform: translateY(-50%);
	opacity: 0.6;
	cursor: pointer;
	z-index: 10;
}

.search-input {
	width: calc(100% - 45px);
	/* Right padding for icon */
	border-radius: 50px;
	padding: 15px 0px 15px 25px;
	/* Pill shape */
	border: none;
	outline: none;
	font-size: 1.1rem;
	color: #333;
	font-family: inherit;
	/* Inherit font from parent */
}

.search-input::placeholder {
	color: #020f20;
	/* Dark blue placeholder text color from image */
	font-weight: 500;
}

.search-icon {
	position: absolute;
	right: 20px;
	width: 24px;
	height: 24px;
	pointer-events: none;
	/* Let clicks pass through if needed, or make clickable */
	opacity: 0.8;
}

/*End components*/

/*Main Site content*/
.site-content {
	position: relative;
	padding-left: 85px;
	padding-right: 85px;
}

/*End Main Site content*/

/*Home - Block 1*/
.home-block-one {
	position: relative;
	padding-top: 50px;
}

.home-block-one:hover .center-block .bg-block-one .image-bg-block-one {
	animation: girar 3s linear infinite;
	transform-origin: center;
}

@keyframes girar {
	100% {
		transform: rotate(360deg);
	}
}

.home-block-one .center-block {
	position: relative;
	min-height: 660px;
}

.home-block-one .center-block .bg-block-one {
	position: absolute;
	width: 600px;
	height: 600px;
	opacity: 0.58;
	background-image:
		radial-gradient(circle at 50% 50%, #4ea0d6, rgba(78, 162, 216, 0) 73%);
	top: 0px;
	left: calc(50% - 300px);
	z-index: 1;
}

.home-block-one .center-block .bg-block-one .image-bg-block-one {
	width: 100%;
	height: 100%;
	opacity: 0.8;
}

.home-block-one .center-block .content-block-one {
	position: relative;
	z-index: 5;
	width: 100%;
	max-width: 750px;
	margin: 0px auto 0;
}

.home-block-one .center-block .content-block-one h1 {
	text-align: center;
	font-size: 3.7rem;
	font-weight: bold;
	font-stretch: normal;
	font-style: normal;
	letter-spacing: 0;
	line-height: 1.1em;
	padding-top: 120px;
}

.home-block-one .center-block .content-block-one h2,
.home-block-one .center-block .content-block-one p {
	font-weight: 400;
	text-align: center;
	margin-top: 50px;
	font-stretch: normal;
	font-style: normal;
	line-height: 1.3em;
	font-size: 1.3rem;
}

.home-block-one .center-block .content-block-one .goto-store {
	margin-top: 60px;
}

.home-block-one .center-block .content-block-one .call-specialist {
	display: block;
	width: fit-content;
	margin: 20px auto 0;
	font-weight: bold;
	font-size: 15pt;
}

.home-block-one .center-block .content-block-one .call-specialist:hover {
	color: var(--third-text-color);
}

.hero-deco {
	display: flex;
	justify-content: center;
	width: 100%;
	margin-top: -50px;
}

.hero-deco img {
	max-width: 750px;
}

.breakout-left {
	position: absolute;
	bottom: 0;
	left: calc(50% - 50vw);
	width: 200px;
}

.breakout-right {
	position: absolute;
	bottom: 0;
	right: calc(50% - 50vw);
	width: 200px;
}

.stack {
	position: relative;
}

.home-block-one #fan-hero-l-one,
.home-block-one #fan-hero-r-one {
	width: 100%;
	display: block;
	transform: translateY(-40px);
}

.home-block-one #fan-hero-l-two {
	position: absolute;
	left: 50%;
	bottom: 0;
	/* exact half */
	width: 100%;
}

.home-block-one #fan-hero-r-two {
	position: absolute;
	right: 50%;
	bottom: 0;
	/* exact half (mirrored) */
	width: 100%;
}


/*End Home - Block 1*/

/*Home - Block 2*/
.home-block-two {
	position: relative;
	margin-top: 50px;
}

.home-block-two .center-block {
	background-color: var(--white);
	border-radius: 25px;
	box-shadow: 15px 15px 40px 0 rgba(0, 0, 0, 0.08);
}

.home-block-two .center-block .spec-list {
	padding: 40px 20px;
	display: flex;
}

.home-block-two .center-block .spec-list .spec-item {
	width: 33.3%;
	text-align: center;
}

.home-block-two .center-block .spec-list .spec-item:hover img {
	transform: scale(1.1);
}

.home-block-two .center-block .spec-list .second-spec-item {
	border-left: 1px solid var(--main-text-color);
	border-right: 1px solid var(--main-text-color);
}

.home-block-two .center-block .spec-list .spec-item img {
	width: 60px;
}

.home-block-two .center-block .spec-list .spec-item h3 {
	display: block;
	text-align: center;
	margin: 0 auto;
	max-width: 250px;
}

.spec-dots {
	display: none;
}

/*End Home - Block 2*/

/*Home - Block 3*/
.home-block-three {
	position: relative;
	margin-top: 60px;
}

.home-block-three .title {
	margin-bottom: 20px;
}

.home-block-three .store-category-list {
	display: flex;
	justify-content: center;
	align-items: center;
}

.home-block-three .store-category-list .store-category-item {
	display: block;
	position: relative;
	width: calc(50% - 110px);
	padding: 20px 50px;
	min-height: 600px;
	border-radius: 20px;
	text-align: center;
	background-image: radial-gradient(circle at 50% 50%, #313131, #191919 73%);
	transform: scale(0.98);
	transition: transform 0.3s ease-in-out;
}

.home-block-three .store-category-list .store-category-item:hover {
	transform: scale(1);
}

.home-block-three .store-category-list .store-category-item:first-child {
	margin-right: 10px;
}

.home-block-three .store-category-list .store-category-item:last-child {
	margin-left: 10px;
}

.home-block-three .store-category-list .store-category-item .category-bg-item {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 2;
}

.home-block-three .store-category-list .store-category-item .category-bg-item .category-bg-item-elipse {
	border-radius: 9999px;
	border: 2px solid #3b82f6;
	opacity: 0.3;
	width: clamp(300px, 50vw, 500px);
	height: clamp(300px, 50vw, 500px);
}

.home-block-three .store-category-list .store-category-item .image-category {
	width: 100%;
	height: 316px;
	object-fit: cover;
	position: relative;
	z-index: 10;
}

.home-block-three .store-category-list .store-category-item h3 {
	display: inline-block;
	color: var(--white);
	font-size: 2.5rem;
	line-height: 1.1em;
	position: relative;
	z-index: 10;
}

.home-block-three .store-category-list .store-category-item.top h3 {
	margin-top: 10px;
}

.home-block-three .store-category-list .store-category-item.bottom h3 {
	margin-top: 30px;
}

.home-block-three .store-category-list .store-category-item.bottom .image-category {
	margin-top: 30px;
}

.home-block-three .store-category-list .store-category-item p {
	color: var(--white);
	font-size: 1rem;
	margin-top: 20px;
	line-height: 1.3em;
	position: relative;
	z-index: 10;
}

.home-block-three .store-category-list .store-category-item .more-category {
	display: inline-block;
	color: var(--white);
	text-decoration: underline;
	margin-top: 20px;
	font-size: 1rem;
	font-weight: bold;
	position: relative;
	z-index: 10;
}

/*End Home - Block 3*/

/*Home - Block 4*/
.home-block-four {
	position: relative;
	margin-top: 60px;
}

.home-block-four .center-block {
	position: relative;
}

.home-block-four .center-block .title-btn {
	display: flex;
	justify-content: space-between;
}

.home-block-four .center-block .title-btn .goto-store {
	margin: 0;
}

.home-block-four .center-block .filters-list {
	margin-top: 30px;
	padding-bottom: 15px;
	border-bottom: 1px solid var(--filter-border-bottom);
}

.home-block-four .center-block .filters-list ul {
	margin: 0;
	padding: 0;
	list-style: none;
	display: flex;
}

.home-block-four .center-block .filters-list ul li {
	display: flex;
}

.home-block-four .center-block .filters-list ul li a {
	display: inline-block;
	text-decoration: none;
}

.home-block-four .center-block .filters-list ul li span {
	display: inline-block;
	margin: 0px 10px;
}

.home-block-four .center-block .filters-list ul li:hover a {
	font-weight: bold;
	text-decoration: underline;
}

.home-block-four .center-block .filters-list ul li:hover span {
	font-weight: bold;
	text-decoration: underline;
}

.home-block-four .center-block .filters-list ul li.current a {
	font-weight: bold;
	text-decoration: underline;
}

.home-block-four .center-block .filters-list ul li.current span {
	font-weight: bold;
	text-decoration: underline;
}

.products-list {
	margin-top: 30px;
	display: flex;
	flex-wrap: wrap;
}

.products-list .product-item {
	/*flex-grow: 1;*/
	width: calc(33% - 20px);
	margin-left: 10px;
	margin-right: 10px;
	margin-bottom: 50px;
}

.products-list .product-item .image-product {
	background-color: var(--white);
	display: block;
	width: 100%;
	height: 380px;
	border-radius: 25px;
	position: relative;
}

.store-page-block .products-list .product-item .image-product {
	background-color: var(--background-text-blog);
}

.products-list .product-item .image-product img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.products-list .product-item .image-product .shopping-bag {
	position: absolute;
	top: 15px;
	right: 20px;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background-color: var(--main-text-color);
	display: flex;
	align-items: center;
	justify-content: center;
	transition: transform 0.3s ease-in-out;
	transform: scale(0.9);
	box-shadow: 4px 4px 20px 0 rgba(159, 159, 159, 0.36);
}

.products-list .product-item .image-product:hover {
	background-color: var(--hover-background-product);
}

.products-list .product-item .image-product:hover .shopping-bag {
	background-color: var(--third-text-color);
	transform: scale(1);
}

.products-list .product-item .image-product .shopping-bag img {
	width: 20px;
	height: 20px;
}

.products-list .product-item h4 {
	font-size: 1rem;
	font-weight: normal;
	margin-top: 25px;
	margin-left: 10px;
}

.products-list .product-item h3 {
	margin-top: 5px;
	margin-left: 10px;
}

.products-list .product-item .more-product {
	display: inline-block;
	margin-top: 5px;
	margin-left: 10px;
}

.products-list .product-item .more-product:hover {
	color: var(--third-text-color);
}

/*End Home - Block 4*/

/*Home - Block 5 */
.home-block-five {
	position: relative;
	background-color: var(--white);
}

.home-block-five .center-block {
	padding: 50px 0px 20px;
}

.home-block-five .center-block ul {
	margin: 0 auto;
	padding: 0;
	width: 90%;
	list-style: none;
	display: flex;
	flex-wrap: wrap;
}

.home-block-five .center-block ul li {
	width: calc(20% - 20px);
	margin-bottom: 30px;
	margin: 10px;
}

.home-block-five .center-block ul li a {
	display: block;
	width: 100%;
}

.home-block-five .center-block ul li a img {
	display: block;
	width: 100%;
	max-width: 150px;
	object-fit: contain;
	mix-blend-mode: luminosity;
}

/*End Home - Block 5 */

/*Home - Block 6 */
.home-block-six {
	margin-top: 60px;
}

.home-block-six .center-block {
	display: flex;
	align-items: center;
}

.home-block-six .center-block .block-six-left {
	width: calc(40%);
	padding: 0px 20px;
}

.home-block-six .center-block .block-six-left .title {
	line-height: 1.2em;
}

.home-block-six .center-block .block-six-left p {
	margin-top: 25px;
}

.home-block-six .center-block .block-six-left .more-about-us {
	display: inline-block;
	margin-top: 25px;
	font-weight: bold;
}

.home-block-six .center-block .block-six-right {
	width: 60%;
}

.home-block-six .center-block .block-six-right img {
	width: 100%;
	border-radius: 25px;
}

/*End Home - Block 6 */

/*Home - Block 7 */
.home-block-seven {
	position: relative;
	margin-top: 60px;
}

.home-block-seven .center-block .title-btn {
	display: flex;
	justify-content: space-between;
}

.home-block-seven .center-block .title-btn .goto-store {
	margin: 0;
}

.our-posts-list {
	margin-top: 30px;
	display: flex;
	flex-wrap: wrap;
}

.our-posts-list .post-item {
	width: calc(50%);
	margin: 0px;
	display: flex;
	align-items: stretch;
}

.our-posts-list .post-item:nth-child(4n + 3),
.our-posts-list .post-item:nth-child(4n + 4) {
	flex-direction: row-reverse;
}

.our-posts-list .post-item .post-item-left {
	width: calc(50% - 60px);
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 5px;
	background-color: var(--white);
	padding: 25px;
	border-radius: 25px;
	text-decoration: none;
}

.our-post-list-blog .post-item .post-item-left {
	background-color: var(--background-text-blog);
}

.our-posts-list .post-item:nth-child(4n + 1) .post-item-left:hover,
.our-posts-list .post-item:nth-child(4n + 2) .post-item-left:hover {
	background-color: var(--hover-post-1);
}

.our-posts-list .post-item:nth-child(4n + 3) .post-item-left:hover,
.our-posts-list .post-item:nth-child(4n + 4) .post-item-left:hover {
	background-color: var(--hover-post-2);
}

.our-posts-list .post-item .post-item-left:hover h3,
.our-posts-list .post-item .post-item-left:hover p,
.our-posts-list .post-item .post-item-left:hover span {
	color: var(--white);
}

.our-posts-list .post-item .post-item-left .item-left-content {
	position: relative;
	width: 100%;
}

.our-posts-list .post-item .post-item-left .item-left-content h3 {
	font-size: 1.25rem;
	line-height: 1.2em;
}

.our-posts-list .post-item .post-item-left .item-left-content p {
	font-size: 1rem;
	line-height: 1.2em;
	display: -webkit-box;
	-webkit-line-clamp: 4;
	-webkit-box-orient: vertical;
	overflow: hidden;
	margin-top: 20px;
}

.our-posts-list .post-item .post-item-left .item-left-content span {
	display: block;
	font-size: 1rem;
	font-weight: bold;
	text-decoration: underline;
	margin-top: 20px;
}

.our-posts-list .post-item .post-item-right {
	width: calc(50% - 10px);
	margin: 5px;
}

.our-posts-list .post-item .post-item-right img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 25px;
}

/*End Home - Block 7 */

/*Home - Block 8 */
.home-block-eight {
	margin-top: 60px;
	margin-bottom: 40px;
}

.home-block-eight h2 {
	width: 100%;
	max-width: 800px;
	margin: 0 auto;
	text-align: center;
	font-size: 4rem;
	line-height: 1.1em;
}

.home-block-eight .call-btn-actions {
	margin-top: 40px;
	display: flex;
	justify-content: center;
}

.home-block-eight .call-btn-actions a {
	margin: 0;
}

/*End Home - Block 8 */

/*Tienda - Block Sample*/
.block-sample {
	position: relative;
	margin-top: 60px;
	padding-bottom: 60px;
	background-color: #ffffff;
}

.site-content-tienda {
	background-color: #ffffff;
}

.block-sample .center-block .store-container {
	position: relative;
}

.block-sample .center-block .store-container .store-title {
	font-size: 3.75rem;
	font-weight: 700;
	color: var(--main-text-color);
	margin-bottom: 3rem;
	font-family: HelveticaNeue, sans-serif;
}

.block-sample .center-block .store-container .store-filters {
	display: flex;
	gap: 1rem;
	margin-bottom: 3rem;
	overflow-x: auto;
	padding-bottom: 0;
}

.block-sample .center-block .store-container .store-filters .store-filter-btn {
	padding-left: 2rem;
	padding-right: 2rem;
	padding-top: 0.75rem;
	padding-bottom: 0.75rem;
	border-radius: 9999px;
	font-size: 1rem;
	font-weight: 500;
	font-family: HelveticaNeue, sans-serif;
	white-space: nowrap;
	transition: all 0.2s;
	border: none;
	cursor: pointer;
}

.block-sample .center-block .store-container .store-filters .store-filter-btn-active {
	background-color: var(--main-text-color);
	color: var(--white);
}

.block-sample .center-block .store-container .store-filters .store-filter-btn-inactive {
	background-color: #e5e7eb;
	color: var(--main-text-color);
}

.block-sample .center-block .store-container .store-filters .store-filter-btn-inactive:hover {
	background-color: #d1d5db;
}

.block-sample .center-block .store-container .store-products-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 1.5rem;
}

.block-sample .center-block .store-container .store-products-grid .store-product-card {
	background-color: var(--white);
	border-radius: 0.5rem;
	overflow: hidden;
	box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
	transition: box-shadow 0.2s;
	text-decoration: none;
	display: block;
}

.block-sample .center-block .store-container .store-products-grid .store-product-card:hover {
	box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.block-sample .center-block .store-container .store-products-grid .store-product-card .store-product-image-wrapper {
	position: relative;
	aspect-ratio: 1 / 1;
	background-color: #f3f4f6;
	transition: background-color 0.2s;
}

.block-sample .center-block .store-container .store-products-grid .store-product-card:hover .store-product-image-wrapper {
	background-color: #cbcaca;
}

.block-sample .center-block .store-container .store-products-grid .store-product-card .store-product-image-wrapper .store-product-image {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.block-sample .center-block .store-container .store-products-grid .store-product-card .store-product-image-wrapper .store-product-cart-btn {
	position: absolute;
	top: 1rem;
	right: 1rem;
	width: 2.5rem;
	height: 2.5rem;
	background-color: var(--main-text-color);
	border-radius: 9999px;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: background-color 0.2s;
	border: none;
	cursor: pointer;
	padding: 0;
}

.block-sample .center-block .store-container .store-products-grid .store-product-card:hover .store-product-image-wrapper .store-product-cart-btn {
	background-color: #4ea0d5;
}

.block-sample .center-block .store-container .store-products-grid .store-product-card:hover .store-product-image-wrapper .store-product-cart-btn .shopping-bag img {
	filter: brightness(0) invert(1);
}

.block-sample .center-block .store-container .store-products-grid .store-product-card .store-product-image-wrapper .store-product-cart-btn .shopping-bag {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
}

.block-sample .center-block .store-container .store-products-grid .store-product-card .store-product-image-wrapper .store-product-cart-btn .shopping-bag img {
	width: 20px;
	height: 20px;
}

.block-sample .center-block .store-container .store-products-grid .store-product-card .store-product-content {
	padding: 1rem;
}

.block-sample .center-block .store-container .store-products-grid .store-product-card .store-product-content .store-product-category {
	font-size: 0.875rem;
	color: #4b5563;
	margin-bottom: 0.25rem;
	font-family: HelveticaNeue, sans-serif;
}

.block-sample .center-block .store-container .store-products-grid .store-product-card .store-product-content .store-product-name {
	font-weight: 600;
	font-size: 1rem;
	color: var(--main-text-color);
	margin-bottom: 0.5rem;
	font-family: HelveticaNeue, sans-serif;
}

.block-sample .center-block .store-container .store-products-grid .store-product-card .store-product-content .store-product-link-container {
	display: block;
	color: var(--main-text-color);
	font-size: 0.75rem;
	font-weight: 500;
	font-family: HelveticaNeue, sans-serif;
	transition: color 0.2s;
	margin-top: 0.5rem;
}

.block-sample .center-block .store-container .store-products-grid .store-product-card .store-product-content .store-product-link-container:hover {
	color: var(--third-text-color);
}

/*End Tienda - Block Sample*/

/*Store Page Main*/
.store-page-block {
	padding-top: 50px;
	padding-bottom: 50px;
}

.store-page-title {
	font-size: 48px;
	font-weight: bold;
	color: var(--main-text-color);
	margin-bottom: 30px;
}

.store-filters-container {
	display: flex;
	gap: 15px;
	margin-bottom: 50px;
	align-items: center;
	flex-wrap: wrap;
	/* Ensure clean wrapping if needed */
}

.store-filter-btn {
	background-color: #e5e7eb;
	color: #374151;
	padding: 12px 25px;
	border-radius: 50px;
	text-decoration: none;
	transition: background-color 0.3s ease, color 0.3s ease;
}

.store-filter-btn:hover {
	background-color: #d1d5db;
}

.store-filter-btn.active {
	background-color: #001e32;
	color: white;
	font-weight: bold;
}

/*End Store Page Main*/

/*Category Page Main*/
.category-page-block {
	padding-top: 50px;
	padding-bottom: 50px;
}

.category-hero {
	background-color: #151515;
	border-radius: 20px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 50px 80px;
	margin-bottom: 50px;
	min-height: 400px;
	position: relative;
	overflow: hidden;
}

.category-hero-content {
	align-self: flex-end;
	width: 65%;
	z-index: 10;
}

.category-hero-content h1 {
	color: #ffffff;
	font-size: 64px;
	font-weight: bold;
	line-height: 1.1;
	margin-bottom: 20px;
}

.category-hero-content p {
	color: #e5e5e5;
	font-size: 18px;
	line-height: 1.4;
	max-width: 400px;
}

.category-hero-image {
	width: 50%;
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
}

.category-hero-image img {
	width: 100%;
	max-width: 500px;
	height: auto;
	object-fit: contain;
	position: relative;
	z-index: 5;
	/* Rotation for visual interest similar to design */
	/*transform: rotate(-15deg);*/
}

/* Circle background effect simulation */
.category-hero-image::before {
	content: '';
	position: absolute;
	width: 450px;
	height: 450px;
	border: 1px solid rgba(78, 160, 213, 0.3);
	border-radius: 50%;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: 1;
}

.category-block-text {
	margin: 30px auto 50px;
}

.category-block-text h2 {
	text-align: center;
}

.category-block-text p {
	margin: 15px 0 15px;
}

/*End Category Page Main*/

/*Blog Page Main*/
/*
#blog::after {
	content: "";
	position: absolute;
	top: -30%;
	right: 0;
	width: 70%;
	height: 70%;
	pointer-events: none;
	background: #3671B3;
	background: linear-gradient(203deg, rgba(54, 113, 179, 1) 0%, rgba(78, 162, 216, 1) 11%, rgba(255, 255, 255, 1) 31%);
	z-index: 0;
}*/

.top-gradient {
	background: linear-gradient(203deg, rgba(78, 162, 216, 1) 0%, rgba(255, 255, 255, 1) 17%, rgba(249, 249, 248, 1) 49%);
}

body.page-template-page-blog .top-gradient {
	background: linear-gradient(203deg, rgba(78, 162, 216, 1) 0%, rgba(255, 255, 255, 1) 17%, rgba(255, 255, 255, 1) 49%);
}

.blog-page-block {
	padding-top: 0px;
	padding-bottom: 50px;
}

.blog-header {
	text-align: center;
	padding: 100px 0 50px;
	background-size: cover;
	background-position: center;
	border-bottom-left-radius: 20px;
	border-bottom-right-radius: 20px;
}

.blog-header h1 {
	font-size: 64px;
	font-weight: bold;
	color: #000;
	margin-bottom: 40px;
}

.blog-filters {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 15px;
}

.blog-filter-btn {
	display: inline-block;
	padding: 12px 30px;
	border-radius: 50px;
	text-decoration: none;
	font-size: 16px;
	color: #333;
	background-color: #e6e6e6;
	/* Light grey for inactive */
	transition: all 0.3s ease;
}

.blog-filter-btn:hover {
	background-color: #d4d4d4;
}

.blog-filter-btn.active {
	background-color: #4ea0d6;
	/* Blue for active, similar to design */
	color: #fff;
	font-weight: bold;
}

/*End Blog Page Main*/

/*Post Page*/
.post-page {
	padding-bottom: 60px;
}

.post-content {
	max-width: 800px;
	margin: 0 auto;
	padding-top: 2rem;
	display: flex;
	flex-direction: column;
}

.post-meta {
	font-size: 0.9rem;
	font-weight: bold;
	color: var(--main-text-color);
	margin-bottom: 20px;
	/* Desktop: Image is Top. */
	/* If HTML order is Meta, Title, Author, Image, Body */
	/* We need Image to be order -1? */
	/* Let's assume visual order matches Desktop screenshot provided by user */
	/* Screenshot 1 (Desktop) usually shows Image -> Title or Title -> Image? */
	/* User: "first picture is for desktop ... use the image ... for featured image" */
	/* Without seeing the image, "Featured Image" usually implies Top or Top of content. */
	/* I will assume Top for Desktop based on "Featured Image" convention and flexibility of Flexbox. */
}

.post-meta span {
	font-weight: inherit;
}

.post-featured-image {
	width: 100%;
	border-radius: 25px;
	overflow: hidden;
	margin-bottom: 30px;
	order: -1;
	/* Moves Image to top for Desktop */
}

.post-featured-image img {
	width: 100%;
	height: 100%;
	display: block;
}

.post-title {
	font-size: 3rem;
	font-weight: bold;
	line-height: 1.1;
	margin-bottom: 15px;
	color: var(--main-text-color);
}

.post-author {
	font-weight: bold;
	font-size: 1rem;
	margin-bottom: 40px;
	color: var(--main-text-color);
}

.post-body {
	font-size: 1.15rem;
	line-height: 1.6;
	color: var(--main-text-color);
}

.post-navigation-container {
	background-color: #041121;
	padding: 80px 0;
	margin-top: 60px;
}

.post-navigation {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
}

.post-navigation a {
	text-decoration: none;
	color: white;
	width: 45%;
	transition: opacity 0.3s;
}

.post-navigation a:hover {
	opacity: 0.8;
}

.post-navigation .nav-prev {
	text-align: left;
}

.post-navigation .nav-next {
	text-align: right;
}

.post-navigation .nav-label {
	display: block;
	font-size: 1rem;
	font-weight: bold;
	margin-bottom: 15px;
	opacity: 0.8;
}

.post-navigation .nav-title {
	display: block;
	font-size: 1.6rem;
	font-weight: bold;
	line-height: 1.2;
}

.post-navigation .nav-prev span {
	color: inherit;
}

.post-navigation .nav-next span {
	color: inherit;
}

.post-navigation-mobile-next {
	display: none;
}

.full-width {
	margin-left: calc(50% - 50vw);
	margin-right: calc(50% - 50vw);
}

/* Contact Page */
.contact-page-body main {
	background-color: var(--main-background-color);
	min-height: 100vh;
}

.contact-page-section {
	padding-top: 50px;
	/* Space from header */
	padding-bottom: 80px;
	background-color: var(--main-background-color);
	color: white;
}

.contact-title {
	font-size: 5rem;
	font-weight: bold;
	margin-bottom: 80px;
	color: white;
}

.contact-content-grid {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	gap: 60px;
}

.contact-info {
	width: 40%;
}

.contact-info h2 {
	font-size: 1.8rem;
	font-weight: bold;
	margin-bottom: 30px;
	color: white;
}

.contact-info p {
	font-size: 1.1rem;
	line-height: 1.6;
	color: #d1d5db;
	/* Light gray text */
}

.contact-form-container {
	width: 50%;
}

.contact-form {
	display: flex;
	flex-direction: column;
	gap: 30px;
}

.form-row {
	display: flex;
	gap: 40px;
}

.form-group {
	display: flex;
	flex-direction: column;
	width: 100%;
}

.form-group.half {
	width: 50%;
}

.form-group label {
	font-size: 1rem;
	margin-bottom: 10px;
	color: var(--main-text-color);
}

.form-group input,
.form-group textarea {
	background: transparent;
	border: none;
	border-bottom: 1px solid var(--white);
	/* Gray border */
	padding: 10px 0;
	color: white;
	font-size: 1rem;
	font-family: inherit;
	outline: none;
	transition: border-color 0.3s;
	width: 100%;
}

.form-group input:focus,
.form-group textarea:focus {
	border-bottom-color: white;
}

.form-submit {
	margin-top: 20px;
	display: flex;
	justify-content: flex-end;
}

.form-submit p {
	display: flex;
	flex-direction: row-reverse;
	align-items: center;
}

.btn-submit {
	background-color: white;
	color: #020f20;
	border: none;
	border-radius: 50px;
	padding: 10px 10px 10px 30px;
	font-size: 1.1rem;
	font-weight: bold;
	cursor: pointer;
	display: flex;
	align-items: center;
	gap: 15px;
	transition: transform 0.2s;
}

.submit-dark {
	background-color: #020f20;
	color: white;
}

.submit-dark .circle-arrow {
	background-color: white;
}

.btn-submit:hover {
	transform: scale(1.05);
}

[data-theme="light"] .hero-actions a {
	display: flex;
	align-items: center;
	gap: 15px;
	padding: 10px;
	text-decoration: none;
	background-color: var(--white);
	border: solid 2px var(--black);
	border-radius: 50px;
}

.circle-arrow {
	background-color: #1a1a1a;
	width: 35px;
	height: 35px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
}

.circle-arrow img {
	width: 15px;
	height: 15px;
}

/* Cart Page */
.cart-page-body main {
	background-color: white;
	/* Light background for cart page */
}

.cart-page-section {
	padding-top: 50px;
	padding-bottom: 80px;
}

.cart-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 40px;
}

.cart-title {
	font-size: 4rem;
	font-weight: bold;
	color: #05192d;
}

.btn-continue-shopping {
	background-color: #020f20;
	color: white;
	padding: 10px 20px 10px 30px;
	/* Space for arrow circle */
	border-radius: 50px;
	text-decoration: none;
	font-weight: bold;
	display: flex;
	align-items: center;
	gap: 15px;
	transition: opacity 0.3s;
}

.btn-continue-shopping:hover {
	opacity: 0.9;
}

.btn-continue-shopping .circle-arrow {
	background-color: white;
	width: 30px;
	height: 30px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #020f20;
}

.cart-layout-grid {
	display: flex;
	gap: 40px;
}

.cart-products-column {
	width: 65%;
}

.cart-products-header {
	display: flex;
	border-bottom: 1px solid #e5e7eb;
	padding-bottom: 15px;
	margin-bottom: 20px;
	font-weight: bold;
	color: #1f2937;
	font-size: 1.1rem;
}

.cart-products-header .col-product {
	flex: 1.5;
}

.cart-products-header .col-units {
	flex: 0.7;
	text-align: center;
}

.cart-products-header .col-price {
	flex: 0.7;
	text-align: right;
}

.cart-product-item {
	display: flex;
	align-items: center;
	padding: 20px 0;
	gap: 20px;
	border-bottom: 1px solid #e5e7eb;
}

.cart-product-item .product-info-wrapper {
	flex: 1.5;
	display: flex;
	align-items: center;
	gap: 20px;
}

.product-info {
	display: flex;
	align-items: center;
	width: 100%;
}

.cart-product-item .product-img {
	display: none;
}

.cart-product-item .product-image {
	width: 100px;
	height: 100px;
	background-color: #f7f7f7;
	border-radius: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 5px;
}

.cart-product-item .product-image img {
	width: 100%;
	height: auto;
	object-fit: contain;
}

.cart-product-item .product-details {
	display: flex;
	flex-direction: column;
}

.cart-product-item .product-category {
	font-size: 0.9rem;
	color: #6b7280;
	margin-bottom: 5px;
}

.cart-product-item .product-name {
	font-size: 1.2rem;
	font-weight: bold;
	color: #111827;
	margin-bottom: 5px;
}

.cart-product-item .product-model {
	font-size: 0.9rem;
	color: #4b5563;
}

.cart-product-item .product-units-wrapper {
	flex: 0.7;
	display: flex;
	justify-content: center;
}

.quantity-control {
	display: flex;
	align-items: center;
	background-color: #e5e7eb;
	border-radius: 20px;
	padding: 5px 10px;
}

.btn-qty {
	background: none;
	border: none;
	font-size: 1.2rem;
	font-weight: bold;
	cursor: pointer;
	padding: 0 10px;
	color: #4b5563;
}

.qty-value {
	font-weight: bold;
	margin: 0 10px;
	color: #111827;
}

.cart-product-item .product-price-wrapper {
	flex: 0.7;
	text-align: right;
}

.price-value {
	font-size: 1.2rem;
	font-weight: bold;
	color: #111827;
}

.cart-summary-column {
	width: 35%;
}

.cart-summary-card {
	background-color: white;
	border-radius: 20px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
	/* Soft shadow */
	padding: 30px;
}

.summary-title {
	font-size: 1.4rem;
	font-weight: bold;
	margin-bottom: 20px;
}

.summary-rows {
	margin-bottom: 20px;
}

.summary-row {
	display: flex;
	justify-content: space-between;
	margin-bottom: 10px;
	color: #374151;
}

.summary-promo-text {
	font-size: 0.9rem;
	font-weight: bold;
	color: #111827;
	margin-bottom: 20px;
	line-height: 1.4;
}

.summary-promo-text p {
	font-weight: inherit;
}

.summary-total-row {
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-size: 1.5rem;
	font-weight: bold;
	margin-bottom: 20px;
	color: #111827;
}

.summary-total-row span {
	font-weight: inherit;
}

.summary-tax-info {
	font-size: 0.85rem;
	color: #6b7280;
	margin-bottom: 30px;
}

.btn-checkout {
	width: 100%;
	background-color: #1f2937;
	color: white;
	border: none;
	border-radius: 50px;
	padding: 15px;
	font-size: 1.1rem;
	font-weight: bold;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding-left: 30px;
	padding-right: 15px;
	margin-bottom: 30px;
	transition: background-color 0.3s;
}

.btn-checkout:hover {
	background-color: #111827;
}

.btn-checkout .circle-arrow {
	background-color: white;
	width: 30px;
	height: 30px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #1f2937;
}

.payment-options {
	margin-top: 20px;
}

.payment-title {
	font-size: 0.9rem;
	font-weight: bold;
	color: #111827;
	margin-bottom: 15px;
	text-transform: uppercase;
}

.payment-icons {
	display: flex;
	gap: 10px;
}

.payment-circle {
	width: 30px;
	height: 30px;
	background-color: black;
	border-radius: 50%;
}

/* Checkout Page Styles */
.checkout-page .site-content {
	background-color: #fff;
	padding-left: 5vw;
	/* Desktop Layout adjustments */
	padding-right: 5vw;
	max-width: 1400px;
	margin: 0 auto;
}

.checkout-container {
	padding-top: 40px;
	padding-bottom: 80px;
}

.checkout-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 60px;
}

.checkout-title {
	font-size: 3.5rem;
	font-weight: 700;
	color: #020f20;
	margin: 0;
	letter-spacing: -1px;
}

/* Base Utility Visibility (Desktop First defaults) */
.mobile-only {
	display: none;
}

.desktop-only {
	display: block;
}

.checkout-header-right {
	display: flex;
	align-items: center;
}



.checkout-content {
	display: flex;
	gap: 8%;
}

.checkout-form-column {
	flex: 1;
}

.checkout-summary-column {
	width: 35%;
	max-width: 400px;
}

.checkout-section {
	margin-bottom: 40px;
	border-bottom: 1px solid #e0e0e0;
	padding-bottom: 40px;
}

.checkout-section:last-child {
	border-bottom: none;
}

.section-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 24px;
}

.section-header h2 {
	font-size: 1.1rem;
	font-weight: 800;
	color: #333;
	text-transform: uppercase;
	margin: 0;
	letter-spacing: 0.5px;
}

.btn-edit {
	font-size: 0.85rem;
	font-weight: 700;
	color: #333;
	text-decoration: underline;
	text-underline-offset: 4px;
}

.section-body {
	font-size: 1rem;
	color: #333;
	line-height: 1.6;
}

.delivery-section .section-body {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.option-name {
	font-weight: 600;
	margin-bottom: 4px;
	margin-top: 0;
}

.option-details {
	color: #555;
	font-size: 0.95rem;
	margin: 0;
}

.option-price {
	font-weight: 700;
	font-size: 1.1rem;
}

/* Payment Icons */
.payment-icons {
	display: flex;
	gap: 12px;
	align-items: center;
}

.payment-icon {
	display: inline-block;
	filter: grayscale(100%);
	opacity: 0.6;
	font-weight: bold;
	font-size: 1.2rem;
}

/* Order Summary Card */
.order-summary-card {
	background-color: #fff;
	color: var(--black);
	border-radius: 20px;
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.06);
	padding: 40px;
	position: sticky;
	top: 20px;
}

.order-summary-card h2 {
	color: inherit;
	font-size: 1.25rem;
	margin-bottom: 30px;
	font-weight: 700;
	margin-top: 0;
}

.order-summary-card span {
	color: inherit;
}

.summary-row {
	display: flex;
	justify-content: space-between;
	margin-bottom: 15px;
	font-size: 1rem;
	color: #333;
}

.summary-total-row {
	display: flex;
	justify-content: space-between;
	font-size: 1.4rem;
	font-weight: 800;
	margin-top: 25px;
	margin-bottom: 25px;
}

.summary-tax-info p {
	font-size: 0.85rem;
	color: #555;
	margin-bottom: 4px;
	margin-top: 0;
}

.summary-product {
	margin-top: 30px;
	padding-top: 30px;
	border-top: 1px solid #eaeaea;
	display: flex;
	gap: 20px;
	align-items: center;
}

.summary-product .product-img {
	width: 70px;
	height: 70px;
	background: #f7f7f7;
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 5px;
}

.summary-product .product-img img {
	max-width: 100%;
	max-height: 100%;
	object-fit: contain;
}

.summary-product .product-details {
	display: flex;
	flex-direction: column;
}

.summary-product .product-details .category {
	font-size: 0.75rem;
	color: #666;
	margin-bottom: 2px;
}

.summary-product .product-details .name {
	font-weight: 800;
	font-size: 1.1rem;
	margin-bottom: 2px;
}

.summary-product .product-details .model {
	font-size: 0.8rem;
	color: #888;
	text-transform: uppercase;
}

/* Form Styles */
.address-form {
	display: flex;
	max-width: 80%;
	gap: 20px;
}

.address-form div {
	flex: 1;
}

.payment-form {
	margin-top: 20px;
}

.form-group {
	margin-bottom: 30px;
}

.form-group .form-input {
	width: 100%;
	padding: 12px 0;
	border: none;
	border-bottom: 1px solid #ccc;
	outline: none;
	font-family: inherit;
	font-size: 1rem;
	background: transparent;
	transition: border-color 0.3s;
	border-radius: 0;
	color: #333;
}

.form-group .form-input:focus {
	border-bottom-color: #020f20;
}

.form-group .form-input::placeholder {
	color: #888;
}

.checkbox label {
	color: var(--second-text-color);
}

.form-row {
	display: flex;
	gap: 30px;
}

.form-group.half {
	flex: 1;
}

.btn-finalize {
	margin-top: 30px;
	background-color: #020f20;
	color: #fff;
	border: none;
	padding: 18px 30px;
	border-radius: 50px;
	font-size: 1rem;
	font-weight: 600;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 280px;
	transition: background-color 0.2s;
}

.btn-finalize:hover {
	background-color: #1a2c42;
}

.btn-finalize .circle-arrow {
	background-color: white;
	width: 30px;
	height: 30px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #020f20;
}

[data-theme="light"] .product-page-block .hero-section {
	padding-top: 8rem;
	align-items: start;
}

.hero-section {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	margin-bottom: 8rem;
}

#product-title {
	font-size: 4.6rem;
	font-weight: 700;
	color: var(--primary-color);
	text-transform: uppercase;
	text-align: left;
}

#product-title span {
	display: block;
	text-transform: none;
}

.hero-section .hero-title {
	z-index: 1;
	width: 80%;
}

.hero-section .hero-title p {
	text-align: left;
}

.hero-section .hero-actions {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 20px;
	z-index: 1;
}

[data-theme="light"] .hero-section .hero-actions {
	flex-direction: row;
}

[data-theme="light"] .elipse {
	top: 0;
	right: 0;
	left: unset;
	transform: translate(60%, -25%);
}

.elipse {
	position: absolute;
	top: 40%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 480px;
	height: 480px;
	opacity: 0.55;
	border: solid 0.5px #4ea0d6;
	border-radius: 50%;
	background-image: radial-gradient(circle at 50% 50%, #4ea0d6, rgba(78, 162, 216, 0) 71%);
}

.hero-deco-img {
	z-index: 1;
}


[data-theme="light"] .hero-img-light {
	position: absolute;
	top: 0;
	right: 0;
	left: unset;
	transform: translate(31%, 0);
	display: block;
}

[data-theme="light"] .hero-img-light img {
	width: 700px;
	height: auto;
	display: block;
}

.hero-deco-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.about-page-block .hero-deco-img {
	position: relative;
	padding-bottom: 3rem;
}

.about-page-block .hero-deco-img::before {
	content: '';
	position: absolute;
	bottom: 5%;
	left: 0;
	width: 100%;
	height: 100%;
	background: radial-gradient(ellipse 50% 50% at 50% 60%,
			#7ec8e8 0%,
			#a8ddf3 5%,
			#d4eef9 50%,
			#eef7fb 70%,
			var(--main-background-color) 85%,
			var(--main-background-color) 100%);
	z-index: -1;
}


.product-description p {
	max-width: 600px;
	margin: 0 auto;
	text-align: center;
	margin-bottom: 50px;
}

.product-features {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 20px;
	margin: 50px 0;
}

.product-features .product-features-description {
	max-width: 600px;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 20px;
}

.product-features .product-features-description h2,
.product-features .product-features-description p {
	text-align: center;
	text-transform: unset;
}

.product-features-description h2::after {
	content: "";
	display: block;
	width: 100%;
	height: 1px;
	background: var(--main-text-color);
	margin: 12px 0;
}

.product-features ul.list-features {
	display: flex;
	gap: 20px;
	list-style: none;
}

.product-features ul.list-features li {
	background-color: var(--white);
	color: var(--black);
	padding: 40px;
	border-radius: 15px;
}

.feature p {
	color: var(--black);
	font-size: 1.2rem;
	font-weight: 400;
	margin-top: 15px;
}

.engine-features {
	display: flex;
	gap: 8rem;
	margin: 5rem 0;
	align-items: center;
}

.engine-features div {
	flex: 1;
}

.engine-features h2 {
	margin-bottom: 1em;
}

.engine-features img {
	width: 100%;
}


.product-page-block h2,
.product-page-block .title-like {
	font-size: 3rem;
	font-weight: 700;
	color: var(--primary-color);
	line-height: 1;
	margin-bottom: 0;
}

.tec-spec-title {
	text-align: center;
	margin-bottom: 1em;
}

.tec-spec-text {
	margin-top: 2rem;
	margin-bottom: 4rem;
}

.tec-spec-graphic {
	display: flex;
	flex-direction: column;
	gap: 2rem;
}

.tec-specs img {
	width: 100%;

}

.graphic {
	width: 100%;
}

.graphic img.tint {
	filter: brightness(0) saturate(100%) invert(6%) sepia(34%) saturate(1938%) hue-rotate(175deg) brightness(92%) contrast(105%);
}

.shrink {
	width: 600px;
	margin-left: auto;
	margin-right: auto;
	text-align: center;
}

.shrink ul li {
	margin-bottom: 15px;
	text-align: left;
}

.gallery-container {
	width: 100%;
	position: relative;
}

.gallery {
	width: 100%;
	margin-top: 60px;
}

.gallery-container {
	max-width: 100%;
}

.gallery-container p {
	margin-bottom: 15px;
}

.gallery-title {
	font-size: 3.5rem;
	font-weight: 700;
	color: white;
	margin-bottom: 40px;
	max-width: 700px;
	line-height: 1.1;
	margin-top: 0;
}

.gallery-scroll {
	display: flex;
	overflow-x: hidden;
	gap: 30px;
	scroll-behavior: smooth;
	padding-bottom: 20px;
}

.gallery-item {
	flex: 0 0 400px;
	height: 250px;
	position: relative;
	border-radius: 20px;
	overflow: hidden;
	cursor: pointer;
	transition: transform 0.3s ease;
}

.gallery-item::before {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(to top,
			rgba(0, 0, 0, 0.7),
			rgba(0, 0, 0, 0.0));
	opacity: 1;
	transition: opacity 0.3s ease;
}

.gallery-item:hover {
	transform: translateY(-5px);
}

.gallery-item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.3s ease;
}

.gallery-item:hover img {
	transform: scale(1.1);
}

.gallery-label {
	position: absolute;
	bottom: 20px;
	left: 20px;
	color: white;
	text-shadow: 0 2px 10px rgba(0, 0, 0, 0.6);
}

.gallery-label span {
	color: white;
	font-size: 1.4rem;
	font-weight: 700;
	text-shadow: 0 2px 10px rgba(0, 0, 0, 0.6);
}

.gallery-nav {
	display: flex;
	gap: 15px;
	margin-top: 20px;
	justify-content: flex-end;
}

.gallery-nav button {
	background-color: white;
	border: none;
	width: 50px;
	height: 50px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: transform 0.2s, background-color 0.2s;
}

.gallery-nav button:hover {
	transform: scale(1.1);
	background-color: #e0e0e0;
}

.gallery-nav button img {
	filter: invert(1);
	width: 20px;
	height: 20px;
}

/* Arrow rotation fix */
.gallery-nav button img.rotate-180 {
	transform: rotate(180deg);
}

/* End Gallery Desktop */

/* Q&A Section Desktop */
.qa-section {
	margin-top: 60px;
	width: 100%;
}

.qa-container {
	position: relative;
	/* Reuse post-featured-image styles but add relative for overlay */
}

/* Ensure background image covers */
.qa-bg-image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 1;
}

.qa-content {
	position: relative;
	z-index: 2;
	padding: 60px;
	width: 50%;
	/* Desktop: content on left or overlay? Design image shows overlay cards on the left/center? */
	/* Looking at image: The cards are on the left. */
}

.qa-item {
	background-color: white;
	border-radius: 30px;
	margin-bottom: 20px;
	padding: 20px 30px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
	cursor: pointer;
	transition: all 0.3s ease;
}

.qa-item[open] {
	padding-bottom: 30px;
}

.qa-item summary {
	list-style: none;
	/* Hide default triangle */
	font-size: 1.2rem;
	font-weight: 700;
	color: #020f20;
	display: flex;
	align-items: center;
	gap: 15px;
	cursor: pointer;
}

.qa-item summary::-webkit-details-marker {
	display: none;
}

.qa-item summary .icon-plus {
	background-color: #eee;
	width: 30px;
	height: 30px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.5rem;
	font-weight: 400;
	color: #666;
	transition: transform 0.3s;
}

.qa-item[open] summary .icon-plus {
	transform: rotate(45deg);
}

.qa-item p {
	margin-top: 15px;
	padding-left: 45px;
	/* Align with text */
	font-size: 1rem;
	color: #555;
	line-height: 1.5;
}


/* Measures Section Desktop */
.measures {
	padding-top: 40px;
	padding-bottom: 40px;
}

.measures-container {
	max-width: 1200px;
	margin: 0 auto;
}

.measures-title {
	color: white;
	font-size: 3.5rem;
	font-weight: 700;
	margin-bottom: 60px;
	text-align: center;
	max-width: 800px;
	margin-left: auto;
	margin-right: auto;
	line-height: 1.1;
}

.measures-card {
	background-color: white;
	border-radius: 40px;
	padding: 20px;
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
	margin-bottom: 60px;
}

.measures-table {
	width: 100%;
	border-collapse: separate;
	border-spacing: 0;
	margin: 10px 0;
}

.measures-table th {
	background-color: #020f20;
	color: white;
	padding: 25px;
	text-align: center;
	font-weight: 700;
	font-size: 1.1rem;
	border: none;
}

/* First Column Header Alignment and Radius */
.measures-table th:first-child {
	text-align: left;
	border-top-left-radius: 40px;
	border-bottom-left-radius: 40px;
	padding-left: 40px;
	position: relative;
	/* Separator line */
}

.measures-table th:first-child::after {
	content: '';
	position: absolute;
	right: 0;
	top: 20%;
	height: 60%;
	width: 2px;
	background-color: rgba(255, 255, 255, 0.3);
}

/* Last Column Header Radius */
.measures-table th:last-child {
	border-top-right-radius: 40px;
	border-bottom-right-radius: 40px;
	padding-right: 40px;
}

/* Data Cells */
.measures-table td {
	padding: 25px;
	color: #333;
	font-size: 1rem;
	text-align: center;
	border-bottom: 1px solid #eee;
}

.measures-table td p {
	color: #333;
	font-size: 1rem;
}

/* Row Label Alignment */
.measures-table td.row-label {
	font-weight: 700;
	color: #020f20;
	text-align: left;
	padding-left: 40px;
}

.measures-table td:last-child {
	padding-right: 40px;
}

/* Remove bottom border on last row */
.measures-table tr:last-child td {
	border-bottom: none;
}

.measures-footer {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 50px;
}

.measures-note {
	font-size: 1.25rem;
	text-align: center;
	max-width: 700px;
	line-height: 1.5;
}

.measures-actions {
	display: flex;
	align-items: center;
	gap: 30px;
	flex-direction: row;
}

.model-selector {
	display: flex;
	align-items: center;
	gap: 15px;
}

.model-selector label {
	font-weight: 700;
	font-size: 1.1rem;
}

.select-wrapper {
	position: relative;
	background-color: white;
	border-radius: 50px;
	padding: 10px 20px;
	width: 250px;
	display: flex;
	align-items: center;
}

.select-wrapper select {
	width: 100%;
	border: none;
	background: transparent;
	font-size: 1.1rem;
	font-weight: 600;
	appearance: none;
	outline: none;
	padding-right: 20px;
	cursor: pointer;
}

.select-wrapper .select-arrow {
	position: absolute;
	right: 20px;
	width: 12px;
	pointer-events: none;
}

/* Match .btn-submit styles */
.btn-measures-buy {
	background-color: white;
	color: #020f20;
	border: none;
	border-radius: 50px;
	padding: 10px 10px 10px 30px;
	font-size: 1.1rem;
	font-weight: bold;
	cursor: pointer;
	display: flex;
	align-items: center;
	gap: 15px;
	transition: transform 0.2s;
	text-decoration: none;
}

.btn-measures-buy:hover {
	transform: scale(1.05);
}

.btn-measures-buy .circle-arrow {
	background-color: #1a1a1a;
	width: 35px;
	height: 35px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
}

.btn-measures-buy .circle-arrow img {
	width: 15px;
	height: 15px;
}

.measures-links {
	margin-top: 40px;
	display: flex;
	gap: 60px;
}

.measures-links a {
	font-size: 1rem;
	text-decoration: none;
	border-bottom: 1px solid var(--main-text-color);
	padding-bottom: 2px;
	transition: opacity 0.2s;
}

.measures-links a:hover {
	opacity: 0.8;
}

/* End Measures Section Desktop */

.results,
.no-results {
	display: block;
	padding: 60px 50px;
	background-color: #f6f6f6;
	border-radius: 20px;
	margin-bottom: 3rem;
}

.results.has-results {
	display: block;
}

.results h1,
.no-results h1 {
	font-size: 3rem;
	font-weight: 700;
	color: var(--main-text-color);
}

.no-results h1 {
	text-align: center;
}

.no-results.show {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 20px;
}

.no-results .search-input-wrapper {
	max-width: 600px;
	width: 100%;
}

.about-title {
	font-size: 4rem;
	font-weight: 700;
	line-height: 1;
	color: var(--primary-color);
}

.about-page-block p {
	max-width: 600px;
	line-height: 1;
	margin-top: 3rem;
}

.gen-content {
	max-width: 900px;
	margin: 0 auto;
	padding-bottom: 60px;
}

.gen-content h2 {
	margin-top: 15px;
}

.gen-content p {
	max-width: 100%;
	line-height: 1.3em;
	margin-top: 20px;
}

.values-block {
	display: flex;
	justify-content: center;
	gap: 2rem;
}

.values-block h2,
.values-block p {
	text-align: center;
}

.values-block p {
	margin-top: 1.5rem;
	line-height: 1.3em;
}

.values-block h2 {
	font-size: 2.6rem;
	font-weight: 700;
}

.advantages-block {
	display: flex;
	padding: 0 50px;
	flex-wrap: wrap;
	gap: 20px;
	margin-top: 60px;
	justify-content: center;
}

.advantages-block h2 {
	font-size: 2.6rem;
	font-weight: 700;
	margin-bottom: 25px;
}

.advantages-container {
	display: flex;
	gap: 20px;
	justify-content: center;
}

.advantage-card {
	background-color: var(--white);
	border-radius: 20px;
	padding: 40px;
	width: calc(50% - 10px);
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
	border: 1px solid rgba(0, 0, 0, 0.05);
	transition: transform 0.3s ease;
}

.advantage-card:hover {
	transform: translateY(-5px);
}

.advantage-card .icon {
	font-size: 1rem;
	margin-bottom: 20px;
	line-height: 1;
}

.advantage-card .icon img {
	width: 50px !important;
	height: 50px !important;
}

.advantage-card h3 {
	font-size: 2rem;
	font-weight: 700;
	margin-bottom: 15px;
	color: var(--main-text-color);
	line-height: 1.2;
}

.advantage-card p {
	font-size: 1.1rem;
	line-height: 1.5;
	color: var(--second-text-color);
}

.about-page-block .advantages-block p {
	margin-top: 0;
	max-width: 100%;
}


.product-img {
	height: 600px;
	margin-top: 120px;
	margin-bottom: 60px;
}

.product-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.cta-block {
	text-align: center;
	padding: 100px 0;
	max-width: 900px;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.cta-block h2 {
	font-size: 3.5rem;
	font-weight: 700;
	line-height: 1.1;
	margin-bottom: 30px;
	color: var(--main-text-color);
}

.cta-block p {
	font-size: 1.25rem;
	max-width: 700px;
	margin: 0 auto 40px;
	line-height: 1.5;
	color: var(--main-text-color);
}

.cta-block .btn-style-2 {
	color: var(--main-text-color);
}

.about-description {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-top: 100px;
}

.about-description .description-content {
	width: 45%;
	padding-right: 50px;
}

.about-description .description-content h2 {
	font-size: 3.5rem;
	font-weight: 700;
	line-height: 1;
	margin-bottom: 30px;
	color: var(--main-text-color);
}

.about-description .description-content p {
	font-size: 1.15rem;
	line-height: 1.5;
	margin-bottom: 20px;
	color: var(--main-text-color);
}

.about-description .description-image {
	width: 60%;
	margin-right: calc(50% - 50vw);
	position: relative;
}

.about-description .description-image img {
	width: 100%;
	height: auto;
	display: block;
	object-fit: cover;
}

/* =========================================
   CONTACTO (CF7) - Botón Voltiak
   ========================================= */

.voltiak-cf7 input.wpcf7-submit.btn-submit {
	background-color: #fff;
	color: #020f20;
	border: none;
	border-radius: 50px;

	padding: 10px 60px 10px 30px;

	font-size: 1.1rem;
	font-weight: bold;
	cursor: pointer;

	display: inline-flex;
	align-items: center;

	transition: transform 0.2s;
	-webkit-appearance: none;
	appearance: none;

	/* Flecha + círculo */
	background-image:
		url('/wp-content/themes/voltiak/images/arrow-next-white.svg'),
		radial-gradient(circle 17.5px at calc(100% - 27.5px) 50%,
			#1a1a1a 100%,
			transparent 101%);
	background-repeat: no-repeat, no-repeat;


	background-position:
		calc(100% - 20.5px) 50%,
		/* flecha */
		0 0;
	/* círculo */

	/* Flecha grande y círculo completo */
	background-size:
		15px 15px,
		/* flecha */
		100% 100%;
	/* círculo */
}

.voltiak-cf7 input.wpcf7-submit.btn-submit:hover {
	transform: translateY(-1px);
}

.squote-summary-column {
	width: 100%;
}

/*Store pagination*/
.store-pagination {
	margin: 15px 0px;
}

.store-pagination span,
.store-pagination a {
	border: 2px solid var(--main-text-color);
	border-radius: 50%;
	height: 38px;
	min-width: 38px;
	border-radius: 38px;
	display: inline-block;
	line-height: 38px;
	text-transform: uppercase;
	margin: 0 3px 6px;
	letter-spacing: 0.03em;
	font-size: 18px;
	text-decoration: none;
	font-weight: 700;
	text-align: center;
	transform: scale(1);
	transition: transform 0.3s ease-in-out;
}

.store-pagination .current {
	background-color: var(--main-text-color);
	color: #fff;
}

.store-pagination a:hover {
	transform: scale(1.1);
	background-color: var(--main-text-color);
	color: #fff;
}

.store-pagination a.next,
.store-pagination a.prev {
	padding: 0px 7px;
}

/*Store pagination*/

/*Blog pagination*/
.blog-pagination {
	margin: 50px 0px;
}

.blog-pagination span,
.blog-pagination a {
	border: 2px solid var(--main-text-color);
	border-radius: 50%;
	height: 38px;
	min-width: 38px;
	border-radius: 38px;
	display: inline-block;
	line-height: 38px;
	text-transform: uppercase;
	margin: 0 3px 6px;
	letter-spacing: 0.03em;
	font-size: 18px;
	text-decoration: none;
	font-weight: 700;
	text-align: center;
	transform: scale(1);
	transition: transform 0.3s ease-in-out;
}

.blog-pagination .current {
	background-color: var(--hover-post-1);
	color: #fff;
}

.blog-pagination a:hover {
	transform: scale(1.1);
	background-color: var(--hover-post-1);
	color: #fff;
}

.blog-pagination a.next,
.blog-pagination a.prev {
	padding: 0px 7px;
}

/*Blog pagination*/

/*Breadcrumb*/
.breadcrumb {
	padding: 15px 0 0px;
}

.breadcrumb .sep,
.breadcrumb a,
.breadcrumb .current {
	font-size: 1rem;
	line-height: 1.4em;
	font-weight: 700;
}

.breadcrumb .sep {
	margin: 0 8px;
	opacity: .6;
}

.breadcrumb a {
	text-decoration: none;
}

.breadcrumb .current {
	font-weight: 400;
	opacity: 0.8;
}

/* ===================== Single Post – Tables ===================== */

.post-body table {
	width: 100%;
	border-collapse: collapse;
	font-size: 15px;
	color: var(--main-text-color);
	background-color: var(--white);
	margin: 2em 0;
	display: block;
	overflow-x: auto;
	-webkit-overflow-scrolling: touch;
	border-radius: 12px;
	box-shadow: 0 2px 16px rgba(1, 17, 34, 0.08);
}

.post-body tbody tr {
	border-bottom: 1px solid var(--filter-border-bottom);
	transition: background-color 0.2s ease;
}

.post-body tbody tr:last-child {
	border-bottom: none;
}

.post-body tbody tr:first-child {
	background-color: var(--main-text-color);
	color: var(--white);
}
.post-body tbody td {
	padding: 5px 15px;
	vertical-align: middle;
	line-height: 1.5;
	font-size: 1rem;
	border-right: 1px solid rgba(1, 17, 34, 0.07);
}
.post-body tbody tr:first-child td {
	padding: 13px 15px;
	font-weight: 600;
	font-size: 13px;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	border-bottom: 2px solid var(--third-text-color);
	border-right: 1px solid rgba(255, 255, 255, 0.1);
	color: var(--white);
}

.post-body tbody tr:first-child td:last-child {
	border-right: none;
}

.post-body tbody tr:nth-child(even) {
	background-color: var(--main-background-color);
}

.post-body tbody tr:first-child:nth-child(even) {
	background-color: var(--main-text-color);
}

.post-body tbody tr:hover {
	background-color: rgba(78, 160, 214, 0.08);
}

.post-body tbody tr:first-child:hover {
	background-color: var(--main-text-color);
}


.post-body tbody td:last-child {
	border-right: none;
}

.post-body tfoot tr {
	background-color: var(--main-background-color);
	border-top: 2px solid var(--filter-border-bottom);
}

.post-body tfoot td {
	padding: 12px 18px;
	font-weight: 600;
	font-size: 13px;
	color: var(--second-text-color);
}

/* ===================== /Single Post – Tables ===================== */