/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: May 29 2026 | 13:04:24 */
/* Add your CSS code here.

For example:
.example {
color: red;
}

For brushing up on your CSS knowledge, check out http://www.w3schools.com/css/css_syntax.asp

End of comment */ 

:root {
	--brand-green: #61ce70;
	--brand-orange: #ec6400;
	--brand-dark-bg: #231D19;
}

body {
	margin: 0;
	font-family: Arial, sans-serif;
	background-color: #231D19 !important;
}

.container {
	max-width: 1320px;
	margin: 0 auto;
}

.section-container {
	max-width: 1320px;
	margin-left: auto;
	margin-right: auto;
	margin-top: 50px !important;
	margin-bottom: 50px !important;
}


.mt-0 {
	margin-top: 0px !important;
}

.nav-breadcrumbs {
	color: var(--brand-green);
	font-size: 14px;
	max-width: 1320px;
	margin: 0 auto;
}

.nav-breadcrumbs a {
	text-decoration: none;
	color: var(--brand-orange) !important;
}

.nav-breadcrumbs .breadcrumb-separator {
	color: var(--brand-orange);
	margin: 0 5px;
	font-size: 16px;
}

.main-header {
	background: #000;
	color: #fff;
}


.hamburger {
	display: none;
	flex-direction: column;
	gap: 5px;
	cursor: pointer;
	z-index: 9999;
}

.hamburger span {
	width: 25px;
	height: 3px;
	background: #fff;
	border-radius: 10px;
	transition: 0.3s;
}

body.menu-open {
	overflow: hidden;
}

.hamburger.active span:nth-child(1) {
	transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
	opacity: 0;
}

.hamburger.active span:nth-child(3) {
	transform: rotate(-45deg) translate(6px, -6px);
}

.top-bar {
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-size: 13px;
	padding: 8px 20px;
}

.top-bar > div{
	flex:1;
}

.top-bar .left{
	display: flex;
	align-items: center;
	justify-content: flex-start;
}

.top-bar .left > div{
	width:auto !important;
}

.top-bar .center {
	color: #FF6A00 !important;
	font-weight: bold;
	text-align:center;
}

.top-bar .right {
	text-align:right;
	display: flex;
	justify-content: flex-end;
	align-items: center;
}

.top-bar .right .icon {
	margin-left: 15px;
	cursor: pointer;
	font-size: 20px;
	color: #fff;
	position: relative;
}

.top-bar .cart .count {
	position: absolute;
	top: -6px;
	right: -10px;
	background: #FF6A00;
	color: #000;
	border-radius: 50%;
	padding: 2px 6px;
	font-size: 10px;
}

.top-bar .right .icon:hover {
	color: #FF6A00;
}


.nav-bar {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 15px 20px;
}

.logo a {
	text-decoration: none;
	font-size: 22px;
	font-weight: bold;
}

.logo .sn {
	color: white;
}

.logo .doll {
	color: #FF6A00;
}

.menu-list {
	list-style: none;
	display: flex;
	margin: 0;
	padding: 0;
}

.sub-menu-toggle {
	padding: 0;
	margin-left: 5px;
	background: transparent !important;
	position: relative;
}

.menu-list li {
	margin-left: 10px;
	position: relative;
}

.menu-list li span.submenu-toggle{
	color: #fff !important;
	font-size: 22px;
	margin-left: 10px;
	margin-right: 20px;
}

.menu-list li a {
	text-decoration: none;
	color: #fff !important;
	/* 	text-transform:uppercase; */
	font-size: 14px;
}

.menu-list li a:hover {
	color: #FF6A00;
}

.menu-list>li {
	position: relative;
	display: flex;
	align-items: center;
}

.menu-list li ul {
	position: absolute;
	top: 100%;
	left: -20px;
	background: #000;
	display: none;
	padding: 20px;
	min-width: 220px;
}

/* .menu-list li:hover>ul {
display: block;
} */

.menu-list li ul {
	display: none;
	flex-wrap: wrap;
	width: auto;
	list-style: none;
}

.single-product div.product .woocommerce-product-gallery.woocommerce-product-gallery-horizontal .slick-prev{
	right: unset;
	left: 0;
	top: 30px;
}

.single-product div.product .woocommerce-product-gallery .flex-control-thumbs .slick-prev:before, .single-product div.product .woocommerce-product-gallery .flex-control-thumbs .slick-next:before{
	font-size: 22px;
	color: #fff;
}

.single-product div.product .woocommerce-product-gallery .flex-control-thumbs .slick-prev, .single-product div.product .woocommerce-product-gallery .flex-control-thumbs .slick-next{
	border:0 !important;
}

.single-product div.product .woocommerce-product-gallery.woocommerce-product-gallery-horizontal .slick-next{
	right: 0;
	top: 30px;
}

.single-product div.product .woocommerce-product-gallery .flex-control-thumbs{
	padding: 0 30px;
	display: flex !important;
	align-items: center;
}

.menu-list li:hover>ul {
	display: flex;
	z-index:999;
}


.menu-list li ul li {
	width: 200px;
	margin: 5px 10px;
}

li.brands-menu ul.sub-menu{
	width: 800px;
	margin-left: -500px;
}

.menu-list li ul li a {
	color: #fff;
	margin-left: 0;
	transition: all 0.3s ease;
	font-size: 13px;
}

.menu-list li ul li:hover a {
	margin-left: 20px;
}

.menu-list li ul li a:hover {
	color: #FF6A00;
}

.sub-menu-toggle .icon-plus {
	display: flex;
}

.sub-menu-toggle .icon-minus {
	display: none;
}

.menu-list>li:hover .sub-menu-toggle .icon-plus {
	display: none;
}

.menu-list>li:hover .sub-menu-toggle .icon-minus {
	display: flex;
}

.menu-list li ul li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 54%;
	width: 0px;
	transition: all 0.3s ease;
	height: 5px;
	background: #FF6A00;
}

.menu-list li ul li:hover::before {
	width: 5px;
}


.main-footer {
	background: #0a0a0a;
	color: #ccc;
	font-size: 14px;
}

.footer-container {
	display: grid;
	grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
	gap: 40px;
	padding: 0px 20px;
}

.footer-logo img {
	width: 120px;
	margin-bottom: 15px;
}

.footer-col h3 {
	color: #fff;
	margin-bottom: 15px;
	font-size: 16px;
}

.footer-menu {
	list-style: none;
	margin:0;
	padding: 0;
}

.footer-menu li {
	margin-bottom: 10px;
}

.footer-menu a {
	color: #ccc;
	text-decoration: none;
}

.footer-menu a:hover {
	color: #FF6A00;
}

.subscribe-form {
	display: flex;
	margin-bottom: 20px;
	flex-direction: column;
	gap: 10px;
}

.subscribe-form input {
	flex: 1;
	padding: 10px;
	border: none;
}

.subscribe-form button {
	background: #FF6A00 !important;
	border: none;
	padding: 10px 15px;
	cursor: pointer;
	color: #fff !important;
	font-size: 18px;
}

.contact h3 {
	margin-top: 20px;
}

.footer-bottom {
	background: #ff6a00;
	color: #fff;
	text-align: center;
	padding: 15px;
}

.payments img {
	margin: 10px auto 0;
	height: 25px;

}

.footer-col.about {
	padding-right: 75px;
	position: relative;
}

.footer-col {
	padding: 50px 0;
}

.footer-col.about::after {
	content: "";
	position: absolute;
	right: 0;
	top: 0;
	width: 1px;
	height: 100%;
	background: #3d3d3d;
}






.home-products {
	background: var(--brand-dark-bg);
}



.page-section-title {
	color: var(--brand-orange);
	font-size: 30px;
	font-weight: 700;
	line-height: 38px;
	letter-spacing: .1px;
}

.section-title {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 20px;
	color: #FF6A00;
	font-size: 38px;
	font-weight: 400;
	margin-bottom: 30px;
	/* 	white-space: nowrap; */
}

.section-title:before,
.section-title:after {
	content: "";
	flex: 1;
	height: 1px;
	background: #FF6A00;
	min-width: 40px;
	max-width: 100%;
}

.section-title:before {
	margin-right: 0;
}

.section-title:after {
	margin-left: 0;
}

.products-wrapper ul.products {
	display: grid !important;
	grid-template-columns: repeat(5, 1fr);
	gap: 20px;
}

.products-wrapper-sale ul.products {
	grid-template-columns: repeat(4, 1fr) !important;
}

.products-wrapper ul.products li.product {
	width: 100% !important;
	margin: 0 !important;
	background: #fff;
	max-width:100% !important;
	padding: 2px;
}

.products-wrapper ul.products li.product img {
	width: 100%;
	height: auto !important;
	margin-bottom: 3px !important;
}

.products-wrapper .woocommerce-loop-product__title {
	font-size: 13px !important;
	padding: 0 !important;
	margin-bottom: 10px !important;
	color: #000;
	font-weight: 700;
	text-align: center;
}

.products-wrapper .price {
	color: #ff6a00;
	text-align: center;
	font-weight: bold !important;
	margin-bottom: 0 !important;
}

.woocommerce ul.products li.product .price del {
	font-size: 14px;
}

.woocommerce ul.products li.product .price ins {
	font-size: 16px;
	text-decoration: none;
}

.products-wrapper .onsale {
	background: #FF6A00 !important;
	display: flex;
	color: #ddd !important;
	font-weight: 400 !important;
	font-size: 11px !important;
	padding: 0 !important;
	border-radius: 5px !important;
	min-width: 25px !important;
	min-height: 25px !important;
	line-height: normal !important;
	align-items: center;
	top: 10px !important;
	left: 10px !important;
	right: auto !important;
	margin: 0 !important;
	text-align: center !important;
}

.woocommerce .products ul::after,
.woocommerce .products ul::before,
.woocommerce ul.products::after,
.woocommerce ul.products::before {
	content: none !important;
}

.woocommerce ul.products li.product .button.add_to_cart_button {
	display: none !important;
}

.load-more {
	text-align: center;
	margin-top: 75px;
}

.view-more-button {
	background-color: #ec6400;
	border-radius: 0;
	padding: 14px;
	font-size: 13px;
	color: #fff;
	display: inline-block;
	line-height: 13px;
	text-decoration: none;
}

.text-center {
	text-align: center;
}

.text-color-white {
	color: #fff;
}

/* ========== BRAND CAROUSEL STYLES ========== */



.carousel-section {
	position: relative;
}

/* Outer container: horizontal padding creates space for arrow buttons */
.carousel-container {
	position: relative;
	padding: 0 55px;
}

/* Inner wrapper clips the sliding track */
.carousel-wrapper {
	overflow: hidden;
}

/* The sliding track */
.carousel-track {
	display: flex;
	transition: transform 0.45s ease-in-out;
}

/* Each brand tile — width set dynamically by JS based on data-item */
.carousel-item {
	flex-shrink: 0;
	padding: 0 8px;
	box-sizing: border-box;
}

#carousel-doll-images .carousel-item {
	padding: 0px;
}

/* White brand card */
.brand-card {
	display: flex;
	align-items: center;
	justify-content: center;
	background: #fff;
	padding: 18px 12px;
	position:relative;
	min-height: 110px;
	text-decoration: none;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	border-radius: 4px;
}

.brand-card .image-title{
	opacity:0;
	position:absolute;
	width:100%;
	height:100%;
	display:flex;
	justify-content:center;
	align-items:center;
	background:#00000080;
	color:#fff;
	transition:all 0.3 ease;
}

.brand-card:hover {
	transform: scale(1.04);
	box-shadow: 0 4px 14px rgba(255, 106, 0, 0.25);
}

.brand-card:hover .image-title{
	opacity:1;
}

.brand-image {
	max-width: 100%;
	max-height: 80px;
	object-fit: contain;
	display: block;
}

.brand-placeholder {
	text-align: center;
	font-size: 13px;
	font-weight: 700;
	color: #333;
	word-break: break-word;
}

/* Navigation arrows — sit inside the container padding on left/right */
.carousel-nav {
	position: absolute;
	top: 40%;
	transform: translateY(-50%);
	border: none;
	border-radius: 4px;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: background 0.3s ease;
	z-index: 10;
	padding: 0;
}

.carousel-doll-images .carousel-nav {
	top: 50%;
}

.carousel-nav:hover {
	background: #FF6A00;
}

.carousel-nav svg {
	width: 30px;
	height: 30px;
	stroke: #fff;
	flex-shrink: 0;
}

.carousel-nav-prev {
	left: -20px;
}

.carousel-nav-next {
	right: -20px;
}

/* Pagination dots */
.carousel-pagination {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 8px;
	margin-top: 22px;
	flex-wrap: wrap;
	min-height: 18px;
}

.carousel-dot {
	width: 10px;
	height: 10px;
	background: rgba(255, 106, 0, 0.3);
	border: none;
	border-radius: 50%;
	cursor: pointer;
	padding: 0;
	transition: background 0.3s ease, transform 0.3s ease;
}

.carousel-dot:hover {
	background: rgba(255, 106, 0, 0.65);
}

.carousel-dot.active {
	background: #FF6A00;
	transform: scale(1.35);
}

/* Responsive */
@media (max-width: 1200px) {
	/* item width handled by JS */
}

@media (max-width: 1024px) {
	/* item width handled by JS */
}

@media (max-width: 768px) {
	.carousel-item {
		padding: 0 5px;
	}

	.carousel-container {
		padding: 0 44px;
	}

	.carousel-nav {
		width: 30px;
		height: 65px;
	}

	.carousel-nav svg {
		width: 18px;
		height: 18px;
	}

	.brand-card {
		padding: 12px 8px;
		min-height: 90px;
	}
}

@media (max-width: 480px) {
	/* item width handled by JS */

	.carousel-container {
		padding: 0 38px;
	}
}

.page-content a {
	text-decoration: none;
}


@keyframes pulse-shrink {
	0% {
		transform: scale(1);
	}

	100% {
		transform: scale(0.91);
	}
}

.wp-btn-link {
	display: inline-block;
	background-color: #ec6400;
	border-radius: 8px;
	padding: 8px 15px;
	width: auto;
	color: #fff !important;
	font-size: 13px;
	font-weight: 600;
	text-decoration: none;
	white-space: nowrap;
	transition: background 0.2s ease;
}

.wp-btn-link:hover {
	animation-name: pulse-shrink;
	animation-duration: .3s;
	animation-timing-function: linear;
	animation-iteration-count: infinite;
	animation-direction: alternate;
	background-color: #d45800;
}

/* ========== DOLL COLLECTIONS SECTION ========== */

.doll-collections {
	background: var(--brand-dark-bg);
}

.doll-collection-grid {
	display: grid;
	grid-template-columns: 1.2fr 3fr;
	gap: 15px;
	align-items: stretch;
}

.doll-sub-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	grid-template-rows: 1fr 1fr;
	gap: 25px 10px;
	height: 100%;
}

/* All cards: flex, centered */
.doll-collection-item {
	position: relative;
	background: #130D09;
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: center;
}

/* Large left card — column: image center, btn absolute bottom-left */
.doll-item-large {
	flex-direction: column;
	padding: 10px;
}




/* Small right cards — row: image left, btn right */
.doll-sub-grid .doll-collection-item {
	flex-direction: row;
	justify-content: flex-start;
	padding: 10px;

}

.doll-sub-grid .doll-circle-wrap {
	width: 45%;
	flex-shrink: 0;
}

.doll-sub-grid .wp-btn-link {
	margin: 0 auto;
}

/* Shared circle styles */
.doll-circle-wrap {
	aspect-ratio: 1 / 1;
	border-radius: 50%;
	overflow: hidden;
	flex-shrink: 0;
	width: 100%;
}

.doll-circle-wrap img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

/* Responsive — doll collections */
@media (max-width: 900px) {
	.doll-collection-grid {
		grid-template-columns: 1fr 1fr;
	}

	.doll-item-large {
		min-height: 420px;
	}
}

@media (max-width: 600px) {
	.doll-sub-grid .doll-collection-item{
		flex-direction:column;
		gap:10px;
	}
	.doll-collection-grid {
		grid-template-columns: 1fr;
	}
	.doll-sub-grid {
		grid-template-columns: 1fr 1fr;
		height: auto;
	}

	.doll-item-large {
		min-height: 320px;
	}

	.doll-collection-item {
		min-height: 180px;
	}
}


/* ========== FEATURE CUSTOMIZABLE DOLLS SERIES ========== */


.feature-cat-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;
}

.feature-cat-item {
	position: relative;
	display: block;
	overflow: hidden;
	height: 380px;
	text-decoration: none;
	cursor: pointer;
}

/* Image wrapper — clips the zoom effect */
.feature-cat-img-wrap {
	position: absolute;
	inset: 0;
	overflow: hidden;
}

.feature-cat-img-wrap img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 0.55s ease;
	transform: scale(1);
}

.feature-cat-item:hover .feature-cat-img-wrap img {
	transform: scale(1.08);
}

/* Dark overlay — lightens a little on hover but stays readable */
.feature-cat-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(to top,
		rgba(0, 0, 0, 0.72) 0%,
		rgba(0, 0, 0, 0.18) 55%,
		rgba(0, 0, 0, 0.08) 100%);
	transition: background 0.35s ease;
	z-index: 1;
}

.feature-cat-item:hover .feature-cat-overlay {
	background: linear-gradient(to top,
		rgba(0, 0, 0, 0.80) 0%,
		rgba(0, 0, 0, 0.30) 55%,
		rgba(0, 0, 0, 0.12) 100%);
}

/* Name + underline pinned to bottom-left */
.feature-cat-info {
	position: absolute;
	bottom: 30px;
	left: 40px;
	z-index: 2;
	display: flex;
	flex-direction: column;
	gap: 6px;
	transition: transform 0.55s ease;
	transform: scale(1);
}

.feature-cat-name {
	color: #fff;
	font-size: 16px;
	font-weight: 700;
	letter-spacing: 0.5px;
	line-height: 1.2;
	text-shadow: 0 1px 4px rgba(0, 0, 0, 0.6);
	transition: color 0.25s ease;
}

.feature-cat-item:hover .feature-cat-name {
	color: #fff;
}

.feature-cat-line {
	display: block;
	width: 100%;
	height: 3px;
	background: #FF6A00;
	transition: width 0.35s ease;
}

.feature-cat-item:hover .feature-cat-info {
	transform: scale(1.08);
}

/* Responsive */
@media (max-width: 900px) {
	.feature-cat-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.feature-cat-item {
		height: 280px;
	}
}

@media (max-width: 500px) {
	.feature-cat-grid {
		grid-template-columns: 1fr 1fr;
	}

	.feature-cat-item {
		height: 200px;
	}
}


/* ========== VIDEO SECTION ========== */

.home-video-section {
	background: var(--brand-dark-bg);
}

.video-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 16px;
	margin-bottom: 40px;
}

.video-item {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

/* 16:9 responsive iframe wrapper */
.video-responsive-wrap {
	position: relative;
	width: 100%;
	padding-bottom: 56.25%;
	background: #000;
	overflow: hidden;
}

.video-responsive-wrap iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border: none;
}

.video-watch-link {
	display: inline-block;
	align-self: flex-start;
	color: #FF6A00;
	font-size: 13px;
	font-weight: 600;
	text-decoration: none;
	letter-spacing: 0.3px;
	transition: color 0.2s ease;
}

.video-watch-link:hover {
	color: #fff;
}

@media (max-width: 680px) {
	.video-grid {
		grid-template-columns: 1fr;
	}
}


/* ========== KNOWLEDGE BASE LINKS ========== */

.home-knowledge-base-links {
	background: var(--brand-dark-bg);
}

.kb-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	column-gap: 40px;
}

.kb-link-item {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 11px 0;
	border-bottom: 1px dotted rgba(255, 255, 255, 0.5);
	text-decoration: none;
	color: #ddd;
	font-size: 14px;
	font-weight: 500;
	transition: color 0.2s ease;
}

.kb-link-item:hover {
	color: #fff;
}

.kb-icon {
	flex-shrink: 0;
	width: 18px;
	height: 18px;
	color: #6ec1e4 !important;
	transition: color 0.2s ease;
	display: flex;
	align-items: center;
}

.kb-icon svg {
	width: 18px;
	height: 18px;
}

.kb-link-item:hover .kb-icon {
	color: #0b52d1;
}

.kb-label {
	line-height: 1.3;
}

@media (max-width: 900px) {
	.kb-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 540px) {
	.kb-grid {
		grid-template-columns: 1fr;
	}
}


/* ========== FAQ ACCORDION ========== */

.home-que-accordion {
	background: var(--brand-dark-bg);
}

.faq-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 0 24px;
}

.faq-col {
	display: flex;
	flex-direction: column;
}

.faq-item {
	border-bottom: 1px solid #2a2a2a;
}

.faq-question {
	width: 100%;
	background: #000 !important;
	color: #fff;
	border: none;
	border-bottom: 1px solid #1a1a1a;
	padding: 15px 16px;
	text-align: left;
	font-size: 14px;
	font-weight: 600;
	cursor: pointer;
	display: flex;
	align-items: center;
	gap: 10px;
	margin-top: 6px;
	transition: background 0.2s ease, color 0.2s ease;
	letter-spacing: 0.2px;
}

.faq-question:hover {
	background: #111;
	color: #FF6A00;
}

.faq-question:focus {
	outline: unset !important;
}

.faq-open .faq-question {
	background: #0a0a0a;
	color: #fff;
}

/* Arrow — right-pointing by default, down when open */
.faq-arrow {
	flex-shrink: 0;
	width: 0;
	height: 0;
	border-top: 5px solid transparent;
	border-bottom: 5px solid transparent;
	border-left: 7px solid #FF6A00;
	transition: transform 0.25s ease;
	margin-top: 1px;
}

.faq-open .faq-arrow {
	transform: rotate(90deg);
}

.faq-answer {
	background: #000;
	color: #ccc;
	font-size: 13px;
	line-height: 1.75;
	padding: 16px 18px 18px 36px;
	border-bottom: 1px solid #1a1a1a;
}

.faq-answer p {
	margin: 0;
	color: #ccc;
}

@media (max-width: 768px) {
	.faq-grid {
		grid-template-columns: 1fr;
	}
	.product-img-wrap.zoom-in .product-image.second-image{
		display:none !important;
	}
	.product-img-wrap.zoom-in .product-image{
		transition:none !important;
	}
}


/* ========== REVIEWS SECTION ========== */

.reviews-section {
	background: var(--brand-dark-bg);
}

.reviews-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
}

.review-card {
	border: 1px solid #a6a6a6;
	padding: 30px;
	display: flex;
	flex-direction: column;
	gap: 16px;
	background: var(--brand-dark-bg);
}

.review-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
}

.review-name {
	color: #fff;
	font-size: 15px;
	font-weight: 700;
}

.review-stars {
	display: flex;
	gap: 2px;
}

.review-stars svg {
	width: 18px;
	height: 18px;
	flex-shrink: 0;
}

/* Black box: thumbnail left + product name right */
.review-product-box {
	display: flex;
	align-items: center;
	gap: 14px;
	background: #0F0C0A;
	padding: 10px;
}

.review-product-box img {
	width: 80px;
	height: 80px;
	object-fit: cover;
	flex-shrink: 0;
}

.review-product-box span {
	color: #fff;
	font-size: 13px;
	font-weight: 600;
	line-height: 1.4;
}

.review-text {
	color: #ccc;
	font-size: 15px;
	line-height: 1.7;
	margin: 0;
}

@media (max-width: 900px) {
	.reviews-grid {
		grid-template-columns: 1fr 1fr;
	}
}

@media (max-width: 560px) {
	.reviews-grid {
		grid-template-columns: 1fr;
	}
}


/* ========== GUARANTEE STRIP ========== */


.guarantee-grid {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 20px;
	text-align: center;
	margin-top: 50px;
}

.guarantee-item {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 14px;
}

.guarantee-item img {
	object-fit: contain;
}



.guarantee-item span {
	color: #fff;
	font-size: 13px;
	font-weight: 600;
	line-height: 1.3;
}

@media (max-width: 900px) {
	.guarantee-grid {
		grid-template-columns: repeat(3, 1fr);
	}
}

@media (max-width: 540px) {
	.guarantee-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.section-title {
		font-size: 26px;
	}

	.section-title:before,
	.section-title:after {
		content: none;
	}
	#home-page .products.columns-4,
	.products-wrapper ul.products{
		grid-template-columns: repeat(2, 1fr) !important;
	}
}



#home-page {
	padding: 0 20px;
	width: 100%;
	max-width: 1320px;
	margin: 0 auto;
}

.certificates-brands-carousel .carousel-section .carousel-item img{
	height:200px;
}

.wc-block-grid__products, ul.products{
	margin:0 !important;
}

/*23app26*/




/* ================================================================
SINGLE PRODUCT EXTRA SECTIONS
( single-product-sections.php )
================================================================ */


.section-heading{ 
	color: #f97300;
	font-size: 23px;
	line-height: 25px;
	font-weight: 600;
	margin-bottom: 30px;
	white-space: nowrap;
}

.section-heading-large{ 
	color: #f97300;
	font-size: 28px;
	line-height: 34px;
	font-weight: 700;
	margin-bottom: 30px;
	white-space: nowrap;
}

.sp-extra-sections {
	background: #231D19;
}

/* Section title row: title left, optional button right */
.sp-section-title-row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	margin-bottom: 10px;
	flex-wrap: wrap;
}

.sp-section-title-row .section-title {
	flex: 1;
	margin-bottom: 0;
	font-size: 28px;
}

.sp-section-title-row .section-title::before,
.sp-section-title-row .section-title::after {
	max-width: 80px;
}


/* ----------------------------------------------------------------
1. SOME TIPS – Tabbed Accordion (image 2 style)
---------------------------------------------------------------- */

.sp-tips-section {
	background: #231D19;
}

.sp-tips-wrapper {
	display: flex;
	align-items: stretch;
	min-height: 340px;
	max-width: 1140px;
	margin-right: auto;
	margin-left: auto;
	position: relative;
}

/* ---- Left nav ---- */
.sp-tips-nav {
	width: 30%;
	flex-shrink: 0; 
	display: flex;
	flex-direction: column;
	padding: 6px 0;
}

.sp-tips-tab {
	display: flex;
	align-items: center;
	width: 100%;
	padding: 17px 24px;
	background: transparent !important;
	border: none !important;    
	color: #fff !important;
	font-size: 16px;
	text-align: left;
	cursor: pointer;
	transition: color 0.2s ease;
	gap: 0;
}

.sp-tips-tab:hover {
	color: #ccc;
}

/* Two-digit number e.g. "01" */
.sp-tips-num {
	font-size: 16px;    
	min-width: 30px;
	flex-shrink: 0;
	color: #fff;
	transition: transform 0.25s ease, color 0.2s ease;
	line-height: 1;
}

/* Separator — space always reserved so label never shifts */
.sp-tips-sep {
	display: block;
	width: 22px;
	height: 2px;
	background: transparent;   /* invisible when inactive */
	flex-shrink: 0;
	margin: 0 10px;
	align-self: center;
	transition: background 0.25s ease;
}

.sp-tips-label {
	color: #fff;
	font-size: 16px;
	transition: color 0.2s ease;
	line-height: 1.2;
}

/* Hover: number slides left, orange line appears, label stays put */
.sp-tips-tab:hover .sp-tips-num,
.sp-tips-tab.active .sp-tips-num {
	transform: translateX(-22px);
	color: #fff;
}

.sp-tips-tab:hover .sp-tips-sep,
.sp-tips-tab.active .sp-tips-sep {
	background: var(--brand-orange);
}

.sp-tips-tab:hover .sp-tips-label,
.sp-tips-tab.active .sp-tips-label {
	color: #fff;
}

/* ---- Right content area ---- */
.sp-tips-content-area {
	flex: 1; 
	padding: 0px 35px; 
	display: flex;
	align-items: center;
}

.sp-tips-panel {
	display: none;
}

.sp-tips-panel.active {
	display: block;
}

.sp-tips-panel-title {
	color: var(--brand-orange);
	font-size: 17px;
	font-weight: 700;
	margin: 20px 0 8px 0;
}

.sp-tips-panel-title:first-child {
	margin-top: 0;
}

/* Plain paragraph text (Shipment Q&A style) */
.sp-tips-text {
	color: #ccc;
	font-size: 14px;
	line-height: 1.75;
	margin: 0 0 10px 0;
}

.sp-tips-orange-label {
	color: var(--brand-orange);
	font-weight: 600;
}

/* Numbered list (Order / other panels) */
.sp-tips-steps {
	padding-left: 20px;
	margin: 0;
}

.sp-tips-steps li {
	color: #ccc;
	font-size: 14px;
	line-height: 1.75;
	margin-bottom: 10px;
}

.sp-tips-steps li strong {
	color: #fff;
}

/* Discount note */
.sp-tips-note {
	color: #aaa;
	font-size: 13px;
	line-height: 1.7;
	margin-top: 14px;
	padding-top: 12px;
	border-top: 1px solid #2a2a2a;
}

.sp-tips-note a {
	color: var(--brand-orange);
	text-decoration: none;
}

.sp-tips-note a:hover {
	text-decoration: underline;
}

/* Fast / Free shipping badges */
.sp-tips-shipping-info {
	display: flex;
	gap: 30px;
	margin-top: 14px;
	flex-wrap: wrap;
}

.sp-tips-shipping-info span {
	color: #ccc;
	font-size: 13px;
}

.sp-tips-shipping-info strong {
	color: var(--brand-orange);
}

/* ---- Responsive ---- */
@media (max-width: 768px) {
	.sp-tips-wrapper {
		flex-direction: column;
	}

	.sp-tips-nav {
		width: 100%;
		flex-direction: row;
		flex-wrap: wrap;
		padding: 0;
	}

	.sp-tips-tab {
		flex: 1 0 auto;
		border-bottom: 3px solid transparent;
		padding: 10px 12px;
		font-size: 13px;
		justify-content: center;
		text-align: center;
	}

	.sp-tips-sep {
		display: none;
	}

	.sp-tips-num {
		font-size: 13px;
		min-width: auto;
		margin-right: 4px;
	}

	.sp-tips-tab.active {
		border-bottom-color: var(--brand-orange);
	}

	.sp-tips-content-area {
		padding: 20px;
		border-left: none;
		border-top: 1px solid #2a2a2a;
	}
}


/* ----------------------------------------------------------------
2. BEGINNER'S GUIDE – 6 brand cards
---------------------------------------------------------------- */

.sp-beginner-section {
	background: #231D19;
	max-width: 1140px;
	margin-right: auto;
	margin-left: auto;
	position: relative;
}

.sp-beginner-grid {
	display: grid;
	grid-template-columns: repeat(7, 1fr);
	gap: 20px;
}

.sp-beginner-item {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 12px;
	text-decoration: none;
	transition: transform 0.25s ease;
}



.sp-beginner-item:hover img {
	animation-name: pulse-shrink;
	animation-duration: .3s;
	animation-timing-function: linear;
	animation-iteration-count: infinite;
	animation-direction: alternate; 
}

.sp-beginner-img-wrap {
	width: 100%; 
	border-radius: 6px;
	overflow: hidden;
	padding: 0px;
	display: flex;
	align-items: center;
	justify-content: center; 
	box-sizing: border-box;
	transition: box-shadow 0.25s ease;
}


.sp-beginner-img-wrap img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	display: block;
}

.sp-beginner-name {
	color: #fff;
	font-size: 13px;
	font-weight: 600;
	text-align: center;
	line-height: 1.3;
	transition: color 0.2s ease;
}

.sp-beginner-item:hover .sp-beginner-name {
	color: var(--brand-orange);
}

@media (max-width: 900px) {
	.sp-beginner-grid {
		grid-template-columns: repeat(3, 1fr);
	}
}

@media (max-width: 480px) {
	.sp-beginner-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}


/* ----------------------------------------------------------------
3. ORDER TIMELINE – static image
---------------------------------------------------------------- */

.sp-timeline-section {
	background: #231D19;
	max-width: 1140px;
	margin-right: auto;
	margin-left: auto;
	position: relative;
}

.sp-timeline-img-wrap {
	text-align: center;
	overflow: hidden;
	border-radius: 4px;
}

.sp-timeline-img-wrap img {
	max-width: 100%;
	height: auto;
	display: block;
	margin: 0 auto;
}


/* ----------------------------------------------------------------
4. YOU MAY ALSO WANT TO KNOW
---------------------------------------------------------------- */

.sp-know-section {
	background: #231D19;
	max-width: 1140px;
	margin-right: auto;
	margin-left: auto;
	position: relative;
}

/* Orange heading — matches image 2 */
.sp-know-heading {
	color: var(--brand-orange);
	font-size: 22px;
	font-weight: 700;
	margin: 0 0 18px 0;
	letter-spacing: 0.2px;
}

/* 3-column layout */
.sp-know-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	column-gap: 40px;
}

.sp-know-col {
	display: flex;
	flex-direction: column;
}

/* Each link row */
.sp-know-link {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 13px 0;
	border-bottom: 1px dotted rgba(255, 255, 255, 0.35);
	text-decoration: none;
	color: #ddd;
	font-size: 14px;
	font-weight: 500;
	transition: color 0.2s ease;
}

.sp-know-link:hover {
	color: #fff;
}

/* Blue info-circle icon */
.sp-know-icon i {
	flex-shrink: 0;
	width: 18px;
	height: 18px;
	color: #6ec1e4;
	transition: color 0.2s ease;
	display: flex;
	align-items: center;
}

.sp-know-link:hover i {
	color: #0b52d1;
}


.sp-know-label {
	line-height: 1.3;
}

@media (max-width: 900px) {
	.sp-know-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 540px) {
	.sp-know-grid {
		grid-template-columns: 1fr;
	}
}


/* ----------------------------------------------------------------
5. FINISHED SEX DOLL ORDER IMAGES – carousel
---------------------------------------------------------------- */

.sp-order-images-section {
	background: #231D19;
	max-width: 1140px;
	margin-right: auto;
	margin-left: auto;
	position: relative;
}

#carousel-sp-order-images .carousel-item {
	padding: 0;
}


/* ----------------------------------------------------------------
6. MOST POPULAR SEX DOLL BRAND – 10-column static grid
---------------------------------------------------------------- */

.sp-popular-brands-section {
	background: #231D19;
	margin-bottom: 80px;
	max-width: 1140px;
	margin-right: auto;
	margin-left: auto;
	position: relative;
}

.sp-brands-grid {
	display: grid;
	grid-template-columns: repeat(10, 1fr);
	gap: 30px 20px;
}

/* Each brand: white card on top, name text below */
.sp-brand-item {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 5px 10px;
	text-decoration: none;
	transition: transform 0.2s ease;
}

.sp-brand-item:hover .brand-image {
	animation-name: pulse-shrink;
	animation-duration: .3s;
	animation-timing-function: linear;
	animation-iteration-count: infinite;
	animation-direction: alternate;
	background-color: #d45800;
}

.sp-brand-img-wrap {
	width: 100%;
	background: #fff;
	border-radius: 4px;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0px;
	min-height: 60px;
	box-sizing: border-box;
	transition: box-shadow 0.25s ease;
}


.sp-brand-img-wrap .brand-image {
	max-width: 100%;
	max-height: 65px;
	object-fit: contain;
	display: block;
}

.sp-brand-img-wrap .brand-placeholder {
	text-align: center;
	font-size: 11px;
	font-weight: 700;
	color: #333;
	word-break: break-word;
	padding: 4px;
	line-height: 1.3;
}

.sp-brand-name {
	color: #ccc;
	font-size: 12px;
	font-weight: 500;
	text-align: center;
	line-height: 1.3;
	transition: color 0.2s ease;
}

.sp-brand-item:hover .sp-brand-name {
	color: var(--brand-orange);
}

@media (max-width: 1100px) {
	.sp-brands-grid {
		grid-template-columns: repeat(8, 1fr);
	}
}

@media (max-width: 768px) {
	.sp-brands-grid {
		grid-template-columns: repeat(5, 1fr);
	}
}

@media (max-width: 480px) {
	.sp-brands-grid {
		grid-template-columns: repeat(4, 1fr);
	}
}


/* ----------------------------------------------------------------
7. RELATED PRODUCTS – reuses .products-wrapper / .products-wrapper-sale
---------------------------------------------------------------- */

.sp-related-section {
	background: #231D19;
	margin-bottom: 80px; 
	border-top: 1px solid #ebebeb;
}



/* ----------------------------------------------------------------
8. TOP CATEGORIES – 5 category circles  (matches sndoll.com design)
---------------------------------------------------------------- */

.sp-top-cats-section {
	background: #231D19;
	margin-bottom: 80px;  
	max-width: 1140px;
	margin-right: auto;
	margin-left: auto;
	position: relative;
}

.sp-top-cats-grid {
	display: grid !important;
	grid-template-columns: repeat(5, 1fr) !important;
	gap: 14px;
}

.sp-cat-item {
	display: flex !important;
	flex-direction: column;
	align-items: center;
	gap: 0;
	text-decoration: none;
	background: #0F0C0A;
	padding: 22px 12px 18px;
	transition: transform 0.25s ease;
}

/*
.sp-cat-item:hover {
transform: translateY(-4px);
}
*/


/* Circle — ~80% of card width */
.sp-cat-circle {
	width: 78%;
	aspect-ratio: 1 / 1;
	border-radius: 50%;
	overflow: hidden;
	background: #1a1a1a;
	margin-bottom: 18px;
	flex-shrink: 0;
}

.sp-cat-circle img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 0.35s ease;
}

/*
.sp-cat-item:hover .sp-cat-circle img {
transform: scale(1.08);
}
*/

/* Orange button label — same style as .wp-btn-link */
.sp-cat-name {
	display: inline-block;
	background-color: #f97300;
	border-radius: 4px;
	padding: 7px 14px;
	color: #fff !important;
	font-size: 13px;
	font-weight: 600;
	text-align: center;
	line-height: 1.3;
	white-space: nowrap;
	transition: background 0.2s ease;
}

.main-header .right .dgwt-wcas-search-wrapp, .main-header .right .dgwt-wcas-search-wrapp .dgwt-wcas-ico-magnifier-handler {
	margin:0 !important;
}

/*
.sp-cat-item:hover .sp-cat-name {
animation-name: pulse-shrink;
animation-duration: .3s;
animation-timing-function: linear;
animation-iteration-count: infinite;
animation-direction: alternate;
background-color: #d45800;
}
*/

@media (max-width: 991px) {


	.main-header .right .dgwt-wcas-search-wrapp{
		display:none;
	}

	.top-bar .center{
		display:none;
	}

	.top-bar .right .icon{
		margin:0;
	}

	.hamburger {
		display: flex;
	}

	.main-header{
		padding: 00px;
	}

	.nav-bar, .top-bar{
		padding-left:0 !important;
		padding-right:0 !important;
	}

	.top-bar .trp_language_switcher_shortcode .trp-language-switcher, .top-bar .trp_language_switcher_shortcode .trp-language-switcher .trp-ls-shortcode-current-language{
		width:auto !important;
	}

	.top-bar .trp_language_switcher_shortcode .trp-language-switcher .trp-ls-shortcode-current-language{
		padding:4px 0;	
	}

	.top-bar .trp_language_switcher_shortcode .trp-language-switcher .trp-ls-shortcode-current-language a{ 
		padding:7px 0;
	}

	.mobile-hide{
		display:none;	
	}

	.menu {
		position: fixed;
		top: 0;
		right: -100%;
		width: 280px;
		display:flex;
		align-items: center;
		justify-content: flex-end;
		height: 100vh;
		background: #000;
		padding: 100px 30px;
		transition: 0.4s ease;
		z-index: 999;
		box-shadow: -5px 0 20px rgba(0,0,0,0.1);
	}

	.menu.active {
		right: 0;
	}

	.menu-list {
		flex-direction: column;
		gap: 20px;
	}

	.menu-list li {
		list-style: none;
		justify-content: flex-end;
	}

	.menu-list a {
		font-size: 18px;
		text-decoration: none;
		color: #000;
	}

	.nav-bar {
		display: flex;
		justify-content: space-between;
		padding-top:0;
		align-items: center;
	}
}

@media (max-width: 900px) {
	.sp-top-cats-grid {
		grid-template-columns: repeat(3, 1fr) !important;
	}
}

@media (max-width: 540px) {
	.sp-top-cats-grid {
		grid-template-columns: repeat(2, 1fr) !important;
	}
}

@media(max-width:767px){

	/* Disable animations */
	.elementor-motion-effects-layer,
	.elementor-invisible,
	.animated {
		animation: none !important;
		transition: none !important;
		transform: none !important;
	}

	/* Improve image rendering */
	img{
		height:auto;
	}

	/* Reduce layout shift */
	.elementor-widget-image img{
		width:100%;
		height:auto;
	}

	/* Disable background attachment fixed */
	*{
		background-attachment:scroll !important;
	}

}


.trp-language-switcher div.trp-ls-shortcode-language {
	background:#000 !important;
}

.trp-language-switcher{
	width:150px;
}

.trp_language_switcher_shortcode{
	position:relative;
}

.trp_language_switcher_shortcode .trp-language-switcher::after{
	position: absolute;
	width: 1px;
	height: 75%;
	content: "";
	background: #fff !important;
	top: 10px;
	right: 25px;
}

.content-single-wrapper{
	display: flex;
	gap: 20px;
	justify-content: space-between;
}

.top-bar .selectron23 .selectron23-container .selectron23-option .selectron23-option-text{
	display:none !important;
}

.top-bar .selectron23 .selectron23-container, .top-bar .selectron23 .selectron23-container .selectron23-option, .trp-language-switcher div.trp-ls-shortcode-current-language{
	background:transparent !important;
}

table.shop_attributes th{
	color: #fff !important;
}


.woocommerce-pagination .page-numbers{
	list-style: none;
}

.woocommerce-pagination ul.page-numbers{
	display:flex;
	gap:3px;
	justify-content:center;
}

.woocommerce-pagination .page-numbers li{
	display:inline-flex;
	width:22px;
	justify-content:center;
	align-items:center;
	height:22px;
	background:#FF6A00 !important;
	color:#fff !important;
}

.woocommerce-pagination .page-numbers li a{
	color:#fff !important;
}

.woocommerce-tabs .woocommerce-Tabs-panel--description p{
	display:grid;
	grid-template-columns:1fr 1fr;
}