:root {
	--theme-color-bg: #F9F9F9;
	--theme-color-orange: #F0881F;
	--theme-color-yellow: #FFD531;
	--theme-color-green: #88BA91;
	--theme-color-teal: #077B98;
	--theme-color-skyblue: #5AB3DC;
	/*Boys*/
	--theme-color-pink: #fc4fbc;
	/*Girls*/
	--theme-color-purple: #9933cc;
	/*Categories*/
	--theme-color-red: #E02954;
	--theme-color-dark-gray: #666666;
	--theme-color-white-1: #f4f4f4;
	--theme-color-white-2: #eeeeee;
	--theme-color-white-3: #e6e6e6;
}

html {
	font-size: 100%;
}

html,
body {
	background-color: var(--theme-color-bg) !important;
	height: 100%;
}

html[lang="en"] body {
	font-family: "Google Sans", sans-serif;
}

html[lang="ar"] {
	direction: rtl;
}

html[lang="ar"] body {
	font-family: 'Cairo', sans-serif;
}

.ar {
	font-family: 'Cairo', sans-serif;
}

nav {
	z-index: 2;
	height: 80px;
	background-color: var(--theme-color-white-1);
	box-shadow: 0 12px 40px rgba(17, 24, 39, 0.10);
}

nav .toytime_logo {
	width: 70px;
}
nav .search button[type='submit']{
	display: inline-flex;
	align-items: center;
}
nav .search button[type='submit'] img{
	height: 20px;
}
nav .lang-switch{
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 1.1rem;
	font-weight: 700;
	line-height: 1;
	margin-inline-start: 10px;
}
nav .search input{
	margin-inline-end: .5rem !important;
}
nav .search .btn.color-blue {
	color: white;
	background-color: var(--theme-color-skyblue);
}
.nav_spacer {
	display: block;
	position: relative;
	height: 170px;
}

.main_nav {
	position: fixed;
	display: flex;
	left: 50%;
	transform: translateX(-50%);
	top: 100px;
	border: 1px solid #eee;
	border-radius: 10px;
	background-color: white;
	padding: 0px 10px;
	box-shadow: var(--bs-box-shadow);
	z-index: 2;
	align-items: center;
	justify-content: center;
	gap: 10px;
}

.main_nav a {
	position: relative;
	padding: 10px 10px 0px 10px;
	text-decoration: none;
	text-align: center;
	width: 80px;
}

.main_nav a span.text {
	font-size: 0.6rem;
	color: #cccccc;
}

.main_nav a::before {
	content: '';
	position: absolute;
	top: 0px;
	left: 50%;
	transform: translateX(-50%);
	width: 80%;
	height: 5px;
	border-radius: 0px 0px 5px 5px;
	background-color: transparent;
}

.main_nav a .nav_img {
	display: block;
	position: relative;
	width: 30px;
	height: 30px;
	margin: 0px auto;
	background-repeat: no-repeat;
	background-size: contain;
	background-position: center;
}

/* Main Nav - Home */
.main_nav a.home.active::before {
	background-color: #666666;
}

.main_nav a.home .nav_img {
	background-image: url('../assets/icons/home_inactive.svg');
}

.main_nav a.home.active .nav_img,
.main_nav a.home:hover .nav_img {
	background-image: url('../assets/icons/home_active.svg');
}

.main_nav a.home:hover span.text,
.main_nav a.home.active span.text {
	color: var(--theme-color-dark-gray);
}

/* Main Nav - boys */
.main_nav a.boys.active::before {
	background-color: var(--theme-color-skyblue);
}

.main_nav a.boys .nav_img {
	background-image: url('../assets/icons/boys_inactive.svg');
}

.main_nav a.boys.active .nav_img,
.main_nav a.boys:hover .nav_img {
	background-image: url('../assets/icons/boys_active.svg');
}

.main_nav a.boys:hover span.text,
.main_nav a.boys.active span.text {
	color: var(--theme-color-skyblue);
}

/* Main Nav - girls */
.main_nav a.girls.active::before {
	background-color: var(--theme-color-pink);
}

.main_nav a.girls .nav_img {
	background-image: url('../assets/icons/girls_inactive.svg');
}

.main_nav a.girls.active .nav_img,
.main_nav a.girls:hover .nav_img {
	background-image: url('../assets/icons/girls_active.svg');
}

.main_nav a.girls:hover span.text,
.main_nav a.girls.active span.text {
	color: var(--theme-color-pink);
}

/* Main Nav - girls */
.main_nav a.categories.active::before {
	background-color: var(--theme-color-purple);
}

.main_nav a.categories .nav_img {
	background-image: url('../assets/icons/categories_inactive.svg');
}

.main_nav a.categories.active .nav_img,
.main_nav a.categories:hover .nav_img {
	background-image: url('../assets/icons/categories_active.svg');
}

.main_nav a.categories:hover span.text,
.main_nav a.categories.active span.text {
	color: var(--theme-color-purple);
}

.custom-category .zoom-img {
	display: block;
	overflow: hidden;
}

.custom-category .zoom-img img {
	width: 660px;
	max-width: 100%;
	display: block;
	transition: transform 0.35s ease;
}

.custom-category .zoom-img:hover img {
	transform: scale(1.08);
}



/* Swiper Slider */
.toy-slider {
	width: 100%;
	position: relative;
	overflow: hidden;
	border-radius: 20px;
}

.toy-slider .swiper-slide {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	height: 100%;
	width: 100%;
	font-size: 32px;
	font-weight: 600;
	background: #f5f5f5;
}

.toy-slider .swiper-slide img {
	width: 100%;
	height: auto;
	display: block;
}

/* Arrows on top of slide */
.toy-slider .swiper-button-prev,
.toy-slider .swiper-button-next {
	top: 35px;
	width: 42px;
	height: 42px;
	/* border-radius: 50%; */
	/* background: rgba(255, 255, 255, 0.85); */
	color: white;
}

.toy-slider .swiper-button-prev {
	left: 20px;
}

.toy-slider .swiper-button-next {
	right: 20px;
}

.toy-slider .swiper-button-prev::after,
.toy-slider .swiper-button-next::after {
	font-size: 18px;
	font-weight: bold;
}

/* Dots on bottom of slide */
.toy-slider .swiper-pagination {
	bottom: 18px !important;
}

.toy-slider .swiper-pagination-bullet {
	width: 10px;
	height: 10px;
	background-color: #ccc;
	opacity: 1;
}

.toy-slider .swiper-pagination-bullet-active {
	background: var(--theme-color-skyblue);
}

/* ---------------- Product Listing ---------------- */

.product-listing {
	padding: 50px 0;
	background: #f8f9fb;
}

.product-listing .product-card {
	text-decoration: none;
}

.product-listing .row {
	row-gap: 24px;
	justify-content: flex-start;
}

/* Desktop first: 4 products per row */
.product-listing .row>.col {
	flex: 0 0 25%;
	max-width: 25%;
}

/* Product Card */
.product-listing .product-card {
	display: flex;
	flex-direction: column;
	text-decoration: none;
	color: inherit;
	width: 100%;
	height: 100%;
	background: #fff;
	border: none;
	border-radius: 22px;
	overflow: hidden;
	box-shadow: 0 12px 40px rgba(17, 24, 39, 0.10);
	transition: transform 0.25s ease, box-shadow 0.25s ease;

}

.product-listing .product-card:hover {
	transform: translateY(-6px);
	box-shadow: 0 18px 45px rgba(0, 0, 0, 0.13);
}

/* Product Image */
.product-listing .product-card .product-img {
	position: relative;
	width: 100%;
	aspect-ratio: 1 / 1;
	background: #f5f5f5;
	overflow: hidden;
}

.product-listing .product-card .product-img>img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 0.35s ease;
}

.product-listing .product-card:hover .product-img>img {
	transform: scale(1.05);
}

/* Product Pills */
.product-listing .product-card .product-img .product-pills {
	position: absolute;
	top: 12px;
	inset-inline-start: 12px;
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
	width: 100%;
	max-width: calc(100% - 24px);
	z-index: 1;
	justify-content: space-between;
}

.product-listing .product-card .product-img .product-pills span {
	background: #ff4d4d;
	color: #fff;
	font-size: 11px;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 4px;
	line-height: 1;
	padding: 6px 9px;
	border-radius: 999px;
	font-weight: 600;
	white-space: nowrap;
}

/* Product Info */
.product-listing .product-card .product-info {
	padding: 16px;
	background: #fff;
}

.product-listing .product-card .product-info h3 {
	font-size: 16px;
	line-height: 1.4;
	margin: 0 0 10px;
	font-weight: 600;
	color: #222;
}

/* Price */
.product-listing .product-card .product-info .price {
	display: flex;
	align-items: center;
	gap: 8px;
	margin-bottom: 14px;
}

.product-listing .product-card .product-info .price .old-price {
	font-size: 14px;
	color: #999;
	text-decoration: line-through;
}

.product-listing .product-card .product-info .price .new-price {
	font-size: 17px;
	color: #111;
	font-weight: 700;
}

/* Buttons */
.product-listing .product-card .product-actions {
	display: flex;
	gap: 8px;
}

.product-listing .product-card .product-actions button {
	display: flex;
	justify-content: center;
	border: none;
	border-radius: 999px;
	padding: 9px 12px;
	font-size: 13px;
	font-weight: 600;
	cursor: pointer;
	transition: 0.2s ease;
	align-items: center;
}

.product-listing .product-card .product-link {
	display: block;
	text-decoration: none;
	color: inherit;
	flex-grow: 1;
}

.product-listing .product-card .product-actions {
	padding: 0 16px 16px;
	bottom: 0px;
	position: relative;
	/* margin-top: auto; */
}

.product-listing .product-card .product-actions .share-btn {
	flex: 0 0 auto;
	background: #f1f1f1;
	color: #333;
}

.product-listing .product-card .product-actions .cart-btn {
	flex: 1;
	background: var(--theme-color-skyblue);
	color: #fff;
}

.product-listing .product-card .product-actions .share-btn:hover {
	background: #e5e5e5;
}

.product-listing .product-card .product-actions .cart-btn:hover {
	background: var(--theme-color-pink);
}



footer ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

footer ul li {
	margin: 0;
	padding: 0;
}

footer ul li a {
	display: inline-block;
	color: inherit;
}

footer .store-badges {
	display: flex;
	gap: 10px;
	align-items: center;
}

footer .store-badges img {
	height: 42px;
	width: auto;
	display: block;
}

/* ================================================================
   Download App Popup  (.dap-*)
================================================================ */

/* Overlay */
.dap-overlay {
	position: fixed;
	inset: 0;
	z-index: 99999;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(15, 10, 30, 0.65);
	backdrop-filter: blur(6px);
	-webkit-backdrop-filter: blur(6px);
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.35s ease, visibility 0.35s ease;
	padding: 16px;
}

.dap-overlay.dap-active {
	opacity: 1;
	visibility: visible;
}

/* Card */
.dap-card {
	position: relative;
	background: #fff;
	border-radius: 28px;
	width: 100%;
	max-width: 400px;
	overflow: hidden;
	box-shadow: 0 32px 80px rgba(232, 55, 97, 0.22), 0 8px 24px rgba(0, 0, 0, 0.15);
	transform: translateY(40px) scale(0.96);
	transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.dap-overlay.dap-active .dap-card {
	transform: translateY(0) scale(1);
}

/* Decorative gradient blob at top */
.dap-blob {
	position: absolute;
	top: -60px;
	left: -60px;
	width: 260px;
	height: 260px;
	background: radial-gradient(circle, rgba(232, 55, 97, 0.25) 0%, rgba(18, 126, 152, 0.12) 60%, transparent 100%);
	border-radius: 50%;
	pointer-events: none;
}

/* Close button */
.dap-close {
	position: absolute;
	top: 14px;
	right: 14px;
	z-index: 10;
	width: 34px;
	height: 34px;
	border-radius: 50%;
	border: none;
	background: rgba(0,0,0, 0.5);
	color: white;
	font-size: 20px;
	line-height: 1;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: background 0.2s ease, transform 0.2s ease;
}

.dap-close:hover {
	background: rgba(0,0,0, 0.8);
	color: white;
	transform: rotate(90deg);
}

/* Phone mockup section */
.dap-phone-wrap {
	background: linear-gradient(135deg, #e83761 0%, #127e98 100%);
	/* padding: 32px 0 20px; */
	display: flex;
	justify-content: center;
	align-items: flex-end;
	min-height: 160px;
}

.dap-phone {
	width: 90px;
	height: 130px;
	background: #1a1a2e;
	border-radius: 18px;
	border: 3px solid rgba(255, 255, 255, 0.35);
	box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.15);
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	animation: dap-float 3s ease-in-out infinite;
}

.dap-phone::before {
	content: '';
	position: absolute;
	top: 8px;
	left: 50%;
	transform: translateX(-50%);
	width: 28px;
	height: 4px;
	background: rgba(255, 255, 255, 0.25);
	border-radius: 4px;
}

.dap-phone-screen {
	width: 70px;
	height: 100px;
	background: linear-gradient(160deg, #0d1b2a 0%, #1a1a3e 100%);
	border-radius: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	margin-top: 8px;
}

.dap-app-logo {
	width: 50px;
	filter: brightness(0) invert(1);
	opacity: 0.9;
}

@keyframes dap-float {

	0%,
	100% {
		transform: translateY(0px);
	}

	50% {
		transform: translateY(-8px);
	}
}

/* Text body */
.dap-body {
	padding: 22px 28px 26px;
	text-align: center;
}

.dap-eyebrow {
	font-size: 0.65em;
	font-weight: 700;
	letter-spacing: 2.5px;
	text-transform: uppercase;
	color: #e83761;
	margin: 0 0 8px;
}

.dap-title {
	font-size: 1.55em;
	font-weight: 900;
	color: #1F1F39;
	line-height: 1.2;
	margin: 0 0 10px;
}

.dap-subtitle {
	font-size: 0.72em;
	color: rgba(31, 31, 57, 0.65);
	line-height: 1.6;
	margin: 0 0 22px;
}

/* Store buttons */
.dap-stores {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.dap-store-btn {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 12px 20px;
	border-radius: 14px;
	background: #1a1a2e;
	color: #fff;
	text-decoration: none;
	transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
	box-shadow: 0 4px 14px rgba(0, 0, 0, 0.18);
}

.dap-store-btn:hover {
	transform: translateY(-3px);
	box-shadow: 0 10px 28px rgba(0, 0, 0, 0.28);
	background: #127e98;
	color: #fff;
}

.dap-store-btn:first-child:hover {
	background: #127e98;
}

.dap-store-icon {
	/* width: 26px; */
	height: 40px;
	flex-shrink: 0;
}

.dap-store-text {
	display: flex;
	flex-direction: column;
	text-align: left;
}

.dap-store-sub {
	/* font-size: 0.55em; */
	opacity: 0.75;
	line-height: 1;
	font-weight: 400;
	text-align: start;
}

.dap-store-name {
	font-size: 1.5em;
	font-weight: 700;
	line-height: 1.4;
	letter-spacing: 0.3px;
}

/* QR hint */
.dap-qr-hint {
	margin: 16px 0 0;
	font-size: 0.6em;
	color: rgba(31, 31, 57, 0.45);
	letter-spacing: 0.3px;
}

.fab-filter {
	position: fixed;
	bottom: 30px;
	inset-inline-end: 30px;
	width: 60px;
	height: 60px;
	background-color: var(--theme-color-skyblue);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
	cursor: pointer;
	z-index: 1000;
	transition: all 0.3s ease;
}

.fab-filter:hover {
	transform: scale(1.1);
	background-color: var(--theme-color-purple);
}

.fab-filter img {
	width: 28px;
	height: 28px;
	filter: brightness(0) invert(1);
}

/* ---------------- Filter Modal System ---------------- */

.filter-modal {
	display: none;
	position: fixed;
	inset: 0;
	z-index: 1100;
	opacity: 0;
	transition: opacity 0.3s ease;
}

.filter-modal.active {
	display: block;
	opacity: 1;
}

.filter-backdrop {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.4);
	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);
}

.filter-card {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -40%);
	width: 90%;
	max-width: 550px;
	background: #fff;
	border-radius: 28px;
	box-shadow: 0 25px 60px rgba(0, 0, 0, 0.25);
	overflow: hidden;
	transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.filter-modal.active .filter-card {
	transform: translate(-50%, -50%);
}

.filter-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 20px 24px;
	border-bottom: 1px solid #f0f0f0;
	background: #fff;
}

.filter-header h4 {
	margin: 0;
	font-weight: 700;
	color: #111;
	font-size: 1.2rem;
}

.filter-header .close-btn {
	background: #f5f5f5;
	border: none;
	width: 36px;
	height: 36px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	font-size: 20px;
	color: #666;
	transition: all 0.2s;
}

.filter-header .close-btn:hover {
	background: #eee;
	color: #000;
}

.filter-body {
	/* padding: 24px; */
	max-height: 80vh;
	overflow-y: auto;
}

.filter-body .filter-section {
	box-shadow: none;
	padding: 0;
	margin: 0;
}
.filter-modal .filter-section {
   background: #fff;
   padding: 20px;
   border-radius: 12px;
   box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
   /* margin-bottom: 30px; */
}

.filter-modal .filter-group {
   margin-bottom: 20px;
}

.filter-modal .filter-group label {
   font-weight: 600;
   margin-bottom: 10px;
   display: block;
}

.filter-modal .slider-wrapper {
   padding: 0 10px;
}

.filter-modal .noUi-connect {
   background: var(--theme-color-skyblue);
}

.filter-modal .filter-values {
   display: flex;
   justify-content: space-between;
   margin-top: 10px;
   font-size: 0.9em;
   color: #666;
}

/* ============================================================
   Product Detail Page — All styles scoped under .product-detail-page
   ============================================================ */

.product-detail-page {
	padding: 40px 0 60px;
}

/* ---- Breadcrumbs ---- */
.product-detail-page .breadcrumb-container {
	margin-bottom: 28px;
}

.product-detail-page .breadcrumb-nav {
	height: auto !important;
	background: transparent !important;
	box-shadow: none !important;
	position: relative !important;
}

.product-detail-page .breadcrumb {
	background: transparent;
	padding: 0;
	margin: 0;
	font-size: 0.82rem;
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	list-style: none;
	line-height: 1;
}

.product-detail-page .breadcrumb-item {
	display: flex;
	align-items: center;
	color: #888;
}

.product-detail-page .breadcrumb-item+.breadcrumb-item::before {
	content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 24 24' fill='none' stroke='%23bbb' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='9 18 15 12 9 6'%3E%3C/polyline%3E%3C/svg%3E") !important;
	padding: 0 !important;
	margin: 0 10px !important;
	float: none !important;
	display: flex !important;
	align-items: center !important;
}

html[lang="ar"] .product-detail-page .breadcrumb-item+.breadcrumb-item::before {
	content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 24 24' fill='none' stroke='%23bbb' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='15 18 9 12 15 6'%3E%3C/polyline%3E%3C/svg%3E") !important;
}

.product-detail-page .breadcrumb-item a {
	color: #777;
	text-decoration: none;
	transition: color 0.2s ease;
	font-weight: 500;
}

.product-detail-page .breadcrumb-item a:hover {
	color: var(--theme-color-skyblue);
}

.product-detail-page .breadcrumb-item.active {
	color: #222;
	font-weight: 600;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	max-width: 260px;
}

/* ---- Swiper Product Gallery ---- */
.product-detail-page .gallery-container {
	position: sticky;
	top: 110px;
	align-self: flex-start;
}
html[lang="ar"] .product-detail-page .gallery-container{
	direction: ltr !important;
}
.swiper,
.swiper-slide,
.swiper-slide img{
	user-select: none;
	-webkit-user-select: none;
	-webkit-user-drag: none;
}
.product-detail-page .product-main-swiper {
	border-radius: 20px;
	overflow: hidden;
	background: #fff;
	box-shadow: 0 12px 40px rgba(17, 24, 39, 0.08);
	border: 1px solid var(--theme-color-white-3);
	margin-bottom: 12px;
}

.product-detail-page .product-main-swiper .swiper-slide {
	aspect-ratio: 1 / 1;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #fff;
	font-size: inherit;
	font-weight: inherit;
}

.product-detail-page .product-main-swiper .swiper-slide img {
	max-width: 100%;
	max-height: 100%;
	object-fit: contain;
	display: block;
}

.product-detail-page .product-main-swiper .swiper-button-prev,
.product-detail-page .product-main-swiper .swiper-button-next {
	width: 36px;
	height: 36px;
	background: rgba(255, 255, 255, 0.9);
	border-radius: 50%;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.12);
	color: #333;
	top: 50%;
}

.product-detail-page .product-main-swiper .swiper-button-prev::after,
.product-detail-page .product-main-swiper .swiper-button-next::after {
	font-size: 13px;
	font-weight: 900;
}

.product-detail-page .product-main-swiper .swiper-button-prev {
	left: 12px;
}
/*
html[lang="ar"] .product-detail-page .product-main-swiper .swiper-button-prev {
	left: auto;
	right: 12px !important;
	transform: rotate(180deg);
}
*/
.product-detail-page .product-main-swiper .swiper-button-next {
	right: 12px;
}
/*
html[lang="ar"] .product-detail-page .product-main-swiper .swiper-button-next {
	right: auto;
	left: 12px !important;
	transform: rotate(180deg);
}
*/
/* Thumbnail swiper */
.product-detail-page .product-thumb-swiper {
	padding: 4px 0;
}

.product-detail-page .product-thumb-swiper .swiper-slide {
	width: 72px !important;
	height: 72px !important;
	border-radius: 12px;
	overflow: hidden;
	border: 2px solid transparent;
	cursor: pointer;
	background: #fff;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
	transition: border-color 0.2s ease;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: inherit;
	font-weight: inherit;
}

.product-detail-page .product-thumb-swiper .swiper-slide-thumb-active {
	border-color: var(--theme-color-skyblue);
}

.product-detail-page .product-thumb-swiper .swiper-slide img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

/* ---- Product Info ---- */
.product-detail-page .product-title {
	font-size: 1.9rem;
	font-weight: 800;
	margin-bottom: 14px;
	color: #111;
	line-height: 1.25;
}

/* Pills */
.product-detail-page .product-pills {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-bottom: 22px;
}

.product-detail-page .product-pills span {
	padding: 6px 14px;
	font-size: 0.8rem;
	font-weight: 700;
	display: inline-flex;
	align-items: center;
	gap: 6px;
	line-height: 1;
	color: #fff;
	background: #ff4d4d;
	white-space: nowrap;
}

.product-detail-page .pill-discount {
	border-radius: 999px;
}

.product-detail-page .pill-discount img {
	height: 1em;
	filter: brightness(0) invert(1);
}

.product-detail-page .pill-limited {
	border-radius: 6px;
}

/* Price */
.product-detail-page .price-container {
	margin-bottom: 28px;
	display: flex;
	align-items: center;
	gap: 12px;
	flex-wrap: wrap;
}

.product-detail-page .current-price {
	font-size: 2.4rem;
	font-weight: 800;
	color: #111;
	display: flex;
	align-items: center;
	gap: 6px;
	line-height: 1;
}

.product-detail-page .old-price {
	font-size: 1.25rem;
	color: #aaa;
	text-decoration: line-through;
}

.product-detail-page .currency-symbol {
	display: inline-flex;
	align-items: center;
}

.product-detail-page .currency-symbol img {
	height: 0.55em;
	width: auto;
}

/* Attributes */
.product-detail-page .product-attributes {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 12px;
	margin-bottom: 30px;
	padding: 18px;
	background: #fff;
	border-radius: 18px;
	box-shadow: 0 4px 16px rgba(17, 24, 39, 0.06);
}

.product-detail-page .attr-item {
	display: flex;
	align-items: center;
	gap: 12px;
}

.product-detail-page .attr-icon {
	flex-shrink: 0;
	width: 40px;
	height: 40px;
	background: var(--theme-color-white-1);
	border-radius: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.product-detail-page .attr-icon img {
	width: 20px;
	height: 20px;
}

.product-detail-page .attr-text {
	display: flex;
	flex-direction: column;
	gap: 3px;
}

.product-detail-page .attr-label {
	font-size: 0.72rem;
	color: #999;
	text-transform: uppercase;
	letter-spacing: 0.04em;
}

.product-detail-page .attr-value {
	font-size: 0.92rem;
	font-weight: 700;
	color: #333;
}

/* Action Buttons */
.product-detail-page .action-buttons {
	display: flex;
	gap: 12px;
	margin-bottom: 36px;
}

.product-detail-page .btn-buy {
	flex: 2;
	background: var(--theme-color-skyblue);
	color: #fff;
	border: none;
	padding: 15px 20px;
	border-radius: 14px;
	font-weight: 700;
	font-size: 1.05rem;
	cursor: pointer;
	transition: all 0.3s ease;
	box-shadow: 0 8px 20px rgba(90, 179, 220, 0.35);
}

.product-detail-page .btn-buy:hover {
	background: var(--theme-color-pink);
	transform: translateY(-2px);
	box-shadow: 0 10px 28px rgba(153, 51, 204, 0.4);
	color: #fff;
}

.product-detail-page .btn-cart {
	flex: 1;
	background: #fff;
	color: #333;
	border: 2px solid var(--theme-color-white-3);
	padding: 15px 14px;
	border-radius: 14px;
	font-weight: 700;
	cursor: pointer;
	transition: all 0.2s ease;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	font-size: 0.95rem;
}

.product-detail-page .btn-cart img {
	height: 1.1em;
	flex-shrink: 0;
}

.product-detail-page .btn-cart:hover {
	border-color: var(--theme-color-skyblue);
	color: var(--theme-color-skyblue);
}

.product-detail-page .btn-share {
	flex-shrink: 0;
	width: 54px;
	height: 54px;
	background: var(--theme-color-white-1);
	border: 2px solid var(--theme-color-white-3);
	border-radius: 14px;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: all 0.2s ease;
}

.product-detail-page .btn-share img {
	height: 1.3em;
}

.product-detail-page .btn-share:hover {
	background: var(--theme-color-white-2);
	border-color: #ccc;
}

/* Description */
.product-detail-page .description-section {
	border-top: 1px solid var(--theme-color-white-3);
	padding-top: 30px;
}

.product-detail-page .description-section h4 {
	font-weight: 700;
	margin-bottom: 16px;
	font-size: 1.1rem;
	color: #111;
}

.product-detail-page .description-content {
	color: #555;
	line-height: 1.75;
	font-size: 1rem;
}

.product-detail-page .description-content ul {
	padding-inline-start: 20px;
	margin: 0;
}

.product-detail-page .description-content ul li {
	margin-bottom: 6px;
}

/* Related Products */
.related-section {
	padding: 60px 0;
	background: #f8f9fb;
	border-top: 1px solid var(--theme-color-white-2);
}

.related-section h2 {
	font-weight: 800;
	margin-bottom: 40px;
	text-align: center;
}

@media only screen and (max-width: 1200px) {}

@media only screen and (max-width: 992px) {
	.product-listing .row>.col {
		flex: 0 0 33.333%;
		max-width: 33.333%;
	}
}

@media only screen and (max-width: 768px) {
	.product-listing .row>.col {
		flex: 0 0 50%;
		max-width: 50%;
	}
	.product-detail-page {
		padding: 16px 0 130px;
	}

	.product-detail-page .gallery-container {
		position: relative;
		top: 0;
		margin-bottom: 20px;
	}

	.product-detail-page .product-main-swiper {
		border-radius: 14px;
	}

	.product-detail-page .product-thumb-swiper .swiper-slide {
		width: 58px !important;
		height: 58px !important;
		border-radius: 10px;
	}

	.product-detail-page .product-title {
		font-size: 1.4rem;
		margin-bottom: 10px;
	}

	.product-detail-page .current-price {
		font-size: 2rem;
	}

	.product-detail-page .product-attributes {
		border-radius: 14px;
		padding: 14px;
	}

	.product-detail-page .action-buttons {
		position: fixed;
		bottom: 0;
		left: 0;
		right: 0;
		background: rgba(255, 255, 255, 0.96);
		backdrop-filter: blur(12px);
		-webkit-backdrop-filter: blur(12px);
		padding: 12px 16px;
		margin-bottom: 0;
		z-index: 1000;
		box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.08);
		border-top: 1px solid var(--theme-color-white-2);
		gap: 10px;
	}

	.product-detail-page .btn-buy,
	.product-detail-page .btn-cart {
		padding: 13px 12px;
		font-size: 0.92rem;
		border-radius: 12px;
	}

	.product-detail-page .btn-share {
		width: 50px;
		height: 50px;
		border-radius: 12px;
	}

	.related-section {
		padding-bottom: 130px;
	}

	.product-detail-page .breadcrumb-item.active {
		max-width: 140px;
	}
}

@media only screen and (max-width: 600px) {
	.main_nav {
		width: 100%;
		transform: none;
		left: 0px;
		top: 80px;
		border: 1px solid #eee;
		border-radius: 0px;
		padding: 0px 10px;
	}
	.nav_spacer{
		height: 150px;
	}
	.product-listing {
		padding: 35px 0;
	}

	.product-listing .row {
		row-gap: 16px;
	}

	.product-listing .product-card {
		border-radius: 14px;
	}

	.product-listing .product-card:hover {
		transform: none;
	}

	.product-listing .product-card .product-info {
		padding: 12px;
	}

	.product-listing .product-card .product-info h3 {
		font-size: 14px;
		margin-bottom: 8px;
	}

	.product-listing .product-card .product-info .price {
		gap: 6px;
		margin-bottom: 12px;
	}

	.product-listing .product-card .product-info .price .old-price {
		font-size: 12px;
	}

	.product-listing .product-card .product-info .price .new-price {
		font-size: 15px;
	}

	.product-listing .product-card .product-img .product-pills {
		top: 8px;
		inset-inline-start: 8px;
		gap: 5px;
		max-width: calc(100% - 16px);
	}

	.product-listing .product-card .product-img .product-pills span {
		font-size: 10px;
		padding: 5px 7px;
	}

	.product-listing .product-card .product-actions {
		gap: 6px;
	}

	.product-listing .product-card .product-actions button {
		font-size: 10px;
		padding: 4px 6px;
	}

	.dap-card {
		border-radius: 22px;
	}

	.dap-body {
		padding: 18px 20px 22px;
	}

	.dap-title {
		font-size: 1.3em;
	}
	/* Mobile Bottom Sheet */
	.filter-card {
		top: auto;
		bottom: 0;
		left: 0;
		transform: translateY(100%);
		width: 100%;
		max-width: none;
		border-radius: 24px 24px 0 0;
		transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1);
	}

	.filter-modal.active .filter-card {
		transform: translateY(0);
	}

	.filter-header {
		padding: 16px 20px;
		border-bottom: none;
	}

	/* Optional drag handle for bottom sheet feel */
	.filter-header::before {
		content: '';
		position: absolute;
		top: 8px;
		left: 50%;
		transform: translateX(-50%);
		width: 40px;
		height: 4px;
		background: #e0e0e0;
		border-radius: 2px;
	}
}