/* KidLand static clone - design layer on top of the real ported theme CSS.
   Typography/colors keep the site's real palette (navy #103178 / orange #FF9923);
   layout & components below are a fresh, modern build inspired by major kids/toy
   e-commerce UIs (rounded cards, floating cart action, pill filters, colorful
   category tiles) rather than the original theme's dated WooCommerce grid. */

:root {
	--navy: #103178;
	--navy-dark: #0b2257;
	--orange: #ff9923;
	--orange-dark: #e8850f;
	--body-text: #5b6c8f;
	--bg-soft: #f6f8fc;
	--bg-soft-2: #eef2fa;
	--border-soft: #e8ecf5;
	--success: #2ea86b;
	--danger: #e5484d;
	--radius-lg: 20px;
	--radius-md: 14px;
	--radius-sm: 10px;
	--shadow-card: 0 1px 2px rgba(16,49,120,.05), 0 1px 12px rgba(16,49,120,.06);
	--shadow-card-hover: 0 18px 30px -8px rgba(16,49,120,.22);
}

* { box-sizing: border-box; }
body { background: #fff; }

.container { max-width: 1310px; margin: 0 auto; padding: 0 20px; }

a { transition: color .15s ease; }

::-webkit-scrollbar { height: 8px; width: 8px; }
::-webkit-scrollbar-thumb { background: #d7deed; border-radius: 10px; }

/* ============================================================
   BUTTONS
   ============================================================ */
.ts-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 12px 26px;
	border: 1.5px solid var(--navy);
	color: var(--navy);
	text-decoration: none;
	border-radius: 999px;
	font-size: 14px;
	font-weight: 600;
	text-align: center;
	background: #fff;
	cursor: pointer;
	transition: all .2s ease;
}
.ts-button:hover { background: var(--navy); color: #fff; border-color: var(--navy); transform: translateY(-1px); }
.ts-button-primary { background: var(--orange); border-color: var(--orange); color: #fff; box-shadow: 0 8px 18px -6px rgba(255,153,35,.6); }
.ts-button-primary:hover { background: var(--orange-dark); border-color: var(--orange-dark); }

/* ============================================================
   HEADER
   ============================================================ */
.ts-header { border-bottom: 1px solid var(--border-soft); }
.header-top,
.header-right.ts-alignright { color: var(--body-text); font-size: 13px; }
.header-top strong, .header-right.ts-alignright strong { color: var(--navy); }

.ts-search-by-category .search-table {
	display: flex;
	align-items: center;
	background: var(--bg-soft);
	border-radius: 999px;
	padding: 4px 4px 4px 20px;
	border: 1px solid var(--border-soft);
}
.ts-search-by-category input[name="s"] {
	border: none;
	background: transparent;
	outline: none;
	font-family: Jost, sans-serif;
	font-size: 14px;
	padding: 10px 0;
	width: 220px;
}
.ts-search-by-category .search-button input[type="submit"] {
	border: none;
	background: var(--navy);
	color: #fff;
	border-radius: 999px;
	padding: 10px 20px;
	font-size: 13px;
	font-weight: 600;
	cursor: pointer;
	transition: background .2s ease;
}
.ts-search-by-category .search-button input[type="submit"]:hover { background: var(--orange); }

.main-menu > ul.menu > li { position: relative; }
.main-menu > ul.menu > li > a { position: relative; padding-bottom: 4px; }
.main-menu > ul.menu > li > a .menu-label:after {
	content: "";
	position: absolute;
	left: 0;
	bottom: -2px;
	width: 0;
	height: 2px;
	background: var(--orange);
	transition: width .2s ease;
}
.main-menu > ul.menu > li:hover > a .menu-label:after { width: 100%; }
.main-menu .sub-menu {
	border-radius: var(--radius-sm);
	box-shadow: var(--shadow-card-hover);
	border: 1px solid var(--border-soft);
	overflow: hidden;
}

/* ============================================================
   HERO CAROUSEL
   ============================================================ */
.hero-carousel {
	position: relative;
	overflow: hidden;
	height: 480px;
	border-radius: var(--radius-lg);
	margin-top: 20px;
	background: var(--bg-soft);
}
.hero-carousel .hero-slide {
	position: absolute;
	inset: 0;
	background-size: cover;
	background-position: center;
	opacity: 0;
	visibility: hidden;
	transition: opacity .7s ease;
}
.hero-carousel .hero-slide.active { opacity: 1; visibility: visible; }
.hero-carousel .hero-slide:after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(100deg, rgba(8,26,68,.82) 0%, rgba(8,26,68,.66) 30%, rgba(8,26,68,.28) 52%, rgba(8,26,68,0) 68%);
}
.hero-carousel .hero-slide-content {
	position: relative;
	z-index: 2;
	height: 100%;
	width: 46%;
	min-width: 320px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: 0 0 0 56px;
	color: #fff;
}
.hero-carousel .hero-eyebrow {
	display: inline-flex;
	align-self: flex-start;
	align-items: center;
	background: var(--orange);
	color: #fff;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: .06em;
	text-transform: uppercase;
	padding: 7px 16px;
	border-radius: 999px;
	margin-bottom: 18px;
}
.hero-carousel .hero-slide-content h2 {
	color: #fff;
	font-size: 40px;
	font-weight: 700;
	line-height: 1.18;
	margin-bottom: 14px;
	letter-spacing: -.01em;
	text-shadow: 0 2px 20px rgba(0,0,0,.45);
}
.hero-carousel .hero-slide-content p {
	font-size: 16px;
	line-height: 1.6;
	color: rgba(255,255,255,.95);
	margin-bottom: 24px;
	max-width: 340px;
	text-shadow: 0 1px 10px rgba(0,0,0,.35);
}
.hero-carousel .hero-slide-content .ts-button-primary { align-self: flex-start; }

.hero-controls {
	position: absolute;
	right: 24px;
	bottom: 22px;
	z-index: 3;
	display: flex;
	gap: 10px;
}
.hero-arrow {
	position: static;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	border: 1px solid rgba(255,255,255,.35);
	background: rgba(8,26,68,.4);
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	backdrop-filter: blur(2px);
	transition: all .2s ease;
}
.hero-arrow:hover { background: var(--orange); border-color: var(--orange); }
.hero-arrow svg { width: 16px !important; height: 16px !important; flex: none; display: block; }

.hero-carousel .hero-dots { position: absolute; bottom: 30px; left: 56px; display: flex; gap: 8px; z-index: 3; }
.hero-carousel .hero-dots button { width: 8px; height: 8px; border-radius: 50%; border: none; background: rgba(255,255,255,.45); cursor: pointer; padding: 0; transition: all .2s ease; }
.hero-carousel .hero-dots button.active { background: #fff; width: 22px; border-radius: 5px; }

@media only screen and (max-width: 767px) {
	.hero-carousel { height: 460px; border-radius: var(--radius-md); }
	.hero-carousel .hero-slide:after { background: linear-gradient(180deg, rgba(8,26,68,.15) 0%, rgba(8,26,68,.35) 45%, rgba(8,26,68,.88) 92%); }
	.hero-carousel .hero-slide-content { width: 100%; min-width: 0; padding: 0 24px 64px; justify-content: flex-end; }
	.hero-carousel .hero-slide-content h2 { font-size: 27px; }
	.hero-carousel .hero-slide-content p { max-width: 100%; }
	.hero-carousel .hero-dots { left: 24px; bottom: 22px; }
	.hero-controls { right: 16px; bottom: 22px; }
	.hero-arrow { width: 34px; height: 34px; }
}

/* ============================================================
   SHOP-BY-THEME PHOTO TILES (replaces the old low-res promo banner)
   ============================================================ */
.theme-tiles {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;
	padding: 10px 0 40px;
}
.theme-tile {
	position: relative;
	display: block;
	border-radius: var(--radius-md);
	overflow: hidden;
	aspect-ratio: 3/4;
	text-decoration: none;
}
.theme-tile img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.theme-tile:hover img { transform: scale(1.06); }
.theme-tile:after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(11,34,87,0) 40%, rgba(11,34,87,.75) 100%);
}
.theme-tile .theme-tile-label {
	position: absolute;
	left: 16px;
	right: 16px;
	bottom: 16px;
	z-index: 2;
	color: #fff;
	font-size: 16px;
	font-weight: 700;
}
.theme-tile .theme-tile-label span {
	display: block;
	font-size: 11.5px;
	font-weight: 600;
	color: var(--orange);
	text-transform: uppercase;
	letter-spacing: .05em;
	margin-bottom: 4px;
}
@media only screen and (max-width: 767px) {
	.theme-tiles { grid-template-columns: repeat(2, 1fr); gap: 12px; padding: 4px 0 24px; }
}

/* ============================================================
   SECTION HEADINGS
   ============================================================ */
.ts-heading { text-align: center; margin: 48px 0 28px; }
.ts-heading .heading {
	font-size: 28px;
	font-weight: 700;
	color: var(--navy);
	position: relative;
	display: inline-block;
	letter-spacing: -.01em;
}
.ts-heading .heading:after {
	content: "";
	display: block;
	width: 56px;
	height: 4px;
	background: var(--orange);
	border-radius: 4px;
	margin: 10px auto 0;
}

/* ============================================================
   CATEGORY TILES ("Nos Catégories")
   ============================================================ */
.category-tiles {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 20px;
}
.category-tile {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-decoration: none;
	text-align: center;
	gap: 12px;
	padding: 22px 10px;
	border-radius: var(--radius-md);
	background: var(--bg-soft);
	border: 1px solid transparent;
	transition: all .25s ease;
}
.category-tile:hover {
	background: #fff;
	border-color: var(--border-soft);
	box-shadow: var(--shadow-card-hover);
	transform: translateY(-4px);
}
.category-tile .cat-icon-circle {
	width: 76px;
	height: 76px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #fff;
	box-shadow: 0 4px 12px rgba(16,49,120,.08);
}
.category-tile .cat-icon-circle img { width: 42px; height: 42px; object-fit: contain; }
.category-tile .cat-name { font-size: 14px; font-weight: 600; color: var(--navy); }

/* alternating tint per tile for a playful, colorful look */
.category-tile:nth-child(5n+1) .cat-icon-circle { background: #fff1e2; }
.category-tile:nth-child(5n+2) .cat-icon-circle { background: #e7edfb; }
.category-tile:nth-child(5n+3) .cat-icon-circle { background: #e6f7ef; }
.category-tile:nth-child(5n+4) .cat-icon-circle { background: #fdeaea; }
.category-tile:nth-child(5n+5) .cat-icon-circle { background: #f1eafd; }

@media only screen and (max-width: 767px) {
	.category-tiles { grid-template-columns: repeat(3, 1fr); gap: 12px; }
	.category-tile { padding: 16px 6px; }
	.category-tile .cat-icon-circle { width: 60px; height: 60px; }
	.category-tile .cat-icon-circle img { width: 32px; height: 32px; }
	.category-tile .cat-name { font-size: 12.5px; }
}

/* ============================================================
   PRODUCT GRID + CARD (kid-card) — the main redesign
   ============================================================ */
.products {
	display: grid !important;
	grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
	gap: 22px;
}
@media only screen and (max-width: 1279px) {
	.products { grid-template-columns: repeat(auto-fill, minmax(170px, 1fr)); gap: 16px; }
}
@media only screen and (max-width: 480px) {
	.products { grid-template-columns: repeat(2, 1fr); gap: 12px; }
}

.products.ts-slider {
	display: flex !important;
	overflow-x: auto;
	scroll-snap-type: x proximity;
	gap: 18px;
	padding-bottom: 8px;
}
.products.ts-slider > .kid-card { flex: 0 0 210px; scroll-snap-align: start; }

.kid-card {
	position: relative;
	display: flex;
	flex-direction: column;
	background: #fff;
	border: 1px solid var(--border-soft);
	border-radius: var(--radius-md);
	overflow: hidden;
	box-shadow: var(--shadow-card);
	transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.kid-card:hover {
	transform: translateY(-5px);
	box-shadow: var(--shadow-card-hover);
	border-color: transparent;
}
.kid-card.added-flash { border-color: var(--orange); box-shadow: 0 0 0 3px rgba(255,153,35,.25); }

.kc-media {
	position: relative;
	aspect-ratio: 1 / 1;
	background: var(--bg-soft);
}
.kc-media-link { display: block; width: 100%; height: 100%; }
.kc-media img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	padding: 16px;
	transition: transform .3s ease;
}
.kid-card:hover .kc-media img { transform: scale(1.05); }

.kc-badges { position: absolute; top: 10px; left: 10px; display: flex; flex-direction: column; gap: 6px; z-index: 2; }
.kc-badge {
	padding: 4px 10px;
	border-radius: 999px;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: .02em;
	color: #fff;
	line-height: 1.4;
}
.kc-badge-sale { background: var(--orange); }
.kc-badge-hot { background: var(--navy); }
.kc-badge-oos { background: #6b7280; }

.kc-body { padding: 14px 14px 16px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.kc-title-link { text-decoration: none; }
.kc-title {
	font-size: 14px;
	font-weight: 600;
	color: var(--navy);
	line-height: 1.35;
	margin: 0;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
	min-height: 2.7em;
}
.kc-title-link:hover .kc-title { color: var(--orange); }
.kc-price { display: flex; align-items: baseline; gap: 8px; margin-top: auto; flex-wrap: wrap; }
.price-current { font-size: 16px; font-weight: 700; color: var(--navy); }
.kc-price.has-sale .price-current,
.product-detail .summary .price.has-sale .price-current { color: var(--orange); }
.price-old { font-size: 12.5px; color: #a8b3c9; text-decoration: line-through; }
.kc-price { flex-wrap: wrap; }

.kc-buy-btn {
	display: block;
	width: 100%;
	margin-top: 10px;
	padding: 10px 0;
	border: 1.5px solid var(--navy);
	border-radius: 999px;
	background: #fff;
	color: var(--navy);
	font-family: Jost, sans-serif;
	font-size: 13.5px;
	font-weight: 600;
	cursor: pointer;
	transition: all .2s ease;
}
.kc-buy-btn:hover { background: var(--navy); color: #fff; }
.kc-buy-btn:active { transform: scale(.98); }
.kc-buy-btn-disabled, .kc-buy-btn-disabled:hover {
	background: #f0f2f5; color: #a8b3c9; border-color: #e2e6ee; cursor: not-allowed;
}
.kid-card-oos .kc-media img { opacity: .55; filter: grayscale(.3); }
.kid-card-oos .kc-title { color: #8a93a8; }


/* ============================================================
   MOBILE MENU SIDEBAR
   ============================================================ */
.mobile-menu-wrapper {
	position: fixed; top: 0; right: 0; height: 100%; width: 300px; max-width: 85vw;
	background: #fff; z-index: 999; overflow-y: auto; box-shadow: -4px 0 16px rgba(0,0,0,.15);
	transition: transform .3s ease;
}
#group-icon-header.mobile-menu-wrapper {
	position: fixed !important; top: 0 !important; right: 0 !important; left: auto !important; bottom: 0 !important;
	height: 100% !important; width: 300px !important; max-width: 85vw !important; background: #fff !important;
	z-index: 999 !important; overflow-y: auto !important; box-shadow: -4px 0 16px rgba(0,0,0,.15);
	transition: transform .3s ease; transform: translateX(100%); visibility: hidden;
}
#group-icon-header.mobile-menu-wrapper.menu-open { transform: translateX(0); visibility: visible; }
#group-icon-header .ts-sidebar-content { padding: 20px; position: static !important; }
.mobile-menu .sub-menu { display: none; padding-left: 16px; }
.mobile-menu li.submenu-open > .sub-menu { display: block; }
.mobile-menu-overlay { position: fixed; inset: 0; background: rgba(0,0,0,.4); z-index: 998; display: none; }
.mobile-menu-overlay.visible { display: block; }

#ts-group-icons-header {
	position: fixed; bottom: 0; left: 0; right: 0; display: flex; justify-content: space-around; align-items: center;
	background: #fff; box-shadow: 0 -2px 10px rgba(0,0,0,.08); z-index: 500; padding: 8px 0;
}

/* ============================================================
   CART DROPDOWN
   ============================================================ */
.cart-dropdown-form, .account-dropdown-form {
	display: none; position: absolute; right: 0; top: 100%; background: #fff; border: 1px solid var(--border-soft);
	box-shadow: var(--shadow-card-hover); border-radius: var(--radius-sm); width: 300px; z-index: 200; padding: 16px;
}
.ts-tiny-cart-wrapper:hover .cart-dropdown-form,
.ts-tiny-account-wrapper:hover .account-dropdown-form,
.cart-dropdown-form.force-open { display: block; }
.cart_list { list-style: none; margin: 0 0 12px; padding: 0; }
.cart_list li.cart-item-wrapper { display: flex; align-items: center; gap: 8px; padding: 8px 0; border-bottom: 1px solid var(--border-soft); font-size: 13px; }
.cart-item-link { display: flex; align-items: center; gap: 8px; flex: 1; text-decoration: none; }
.cart-item-link img { width: 40px; height: 40px; object-fit: contain; border-radius: 6px; background: var(--bg-soft); }
.cart-dropdown-actions { display: flex; gap: 8px; }

/* ============================================================
   BREADCRUMB
   ============================================================ */
.breadcrumb-title-wrapper { background: var(--bg-soft); padding: 26px 0; margin-bottom: 34px; }
.breadcrumb-title-wrapper .container { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px; }
.breadcrumb-title-wrapper h1 { font-size: 26px; font-weight: 700; color: var(--navy); margin: 0; }
.breadcrumb-nav a { color: var(--body-text); text-decoration: none; }
.breadcrumb-nav a:hover { color: var(--orange); }
.breadcrumb-title-wrapper.breadcrumb-slim { padding: 14px 0; margin-bottom: 24px; }
.breadcrumb-title-wrapper.breadcrumb-slim .breadcrumb-nav { font-size: 13.5px; }

/* ============================================================
   SHOP TOOLBAR / FILTERS
   ============================================================ */
.shop-toolbar { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; margin-bottom: 24px; }
.shop-toolbar input, .shop-toolbar select {
	padding: 11px 18px; border: 1px solid var(--border-soft); border-radius: 999px; font-family: Jost, sans-serif; font-size: 14px; background: var(--bg-soft);
}
.category-filter-list { display: flex; flex-wrap: wrap; gap: 10px; list-style: none; margin: 0 0 28px; padding: 0; }
.category-filter-list a {
	display: inline-block; padding: 9px 20px; border: 1.5px solid var(--border-soft); border-radius: 999px;
	color: var(--navy); text-decoration: none; font-size: 13.5px; font-weight: 600; transition: all .2s ease; background: #fff;
}
.category-filter-list a.active, .category-filter-list a:hover { background: var(--navy); border-color: var(--navy); color: #fff; }

/* ============================================================
   PRODUCT DETAIL PAGE
   ============================================================ */
.product-detail { display: flex; gap: 52px; padding: 10px 0 20px; flex-wrap: wrap; }

/* -- gallery -- */
.product-detail .product-gallery { flex: 1 1 420px; max-width: 460px; }
.product-detail .product-gallery img {
	width: 100%;
	border: 1px solid var(--border-soft);
	border-radius: var(--radius-lg);
	background: var(--bg-soft);
	aspect-ratio: 1/1;
	object-fit: contain;
	padding: 20px;
}
.product-detail .product-gallery .thumbs { display: flex; gap: 10px; margin-top: 14px; flex-wrap: wrap; }
.product-detail .product-gallery .thumbs img {
	width: 74px; height: 74px; object-fit: contain; cursor: pointer;
	border-radius: var(--radius-sm); border: 2px solid var(--border-soft);
	background: var(--bg-soft); aspect-ratio: 1/1; padding: 8px;
	transition: border-color .2s ease, transform .2s ease;
}
.product-detail .product-gallery .thumbs img:hover { transform: translateY(-2px); }
.product-detail .product-gallery .thumbs img.active { border-color: var(--orange); }

/* -- summary column: consistent type scale, generous rhythm -- */
.product-detail .summary { flex: 1 1 400px; max-width: 560px; }

.pdp-eyebrow {
	font-size: 12px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
	color: var(--orange); margin: 0 0 10px;
}
.pdp-title {
	font-size: 28px; font-weight: 700; color: var(--navy); line-height: 1.3;
	margin: 0 0 16px;
}
@media only screen and (max-width: 767px) {
	.pdp-title { font-size: 22px; }
}

.product-detail .summary .price {
	display: flex; align-items: baseline; gap: 12px;
	margin: 0 0 18px;
}
.product-detail .summary .price .price-current { font-size: 30px; font-weight: 700; color: var(--navy); font-family: Jost, sans-serif; }
.product-detail .summary .price.has-sale .price-current { color: var(--orange); }
.product-detail .summary .price .price-old { font-size: 17px; font-weight: 400; color: #a8b3c9; text-decoration: line-through; font-family: Jost, sans-serif; }

.pdp-divider { border: none; border-top: 1px solid var(--border-soft); margin: 0 0 18px; }

.product-detail .summary .short-description {
	color: var(--body-text);
	font-size: 15.5px;
	line-height: 1.75;
	margin-bottom: 18px;
}
.product-detail .summary .short-description p { margin: 0 0 10px; }
.product-detail .summary .short-description p:last-child { margin-bottom: 0; }

.pdp-meta { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 26px; }
.pdp-meta .meta-item {
	font-size: 12.5px; font-weight: 600; color: var(--navy);
	background: var(--bg-soft); border: 1px solid var(--border-soft);
	padding: 5px 12px; border-radius: 999px;
}
.pdp-meta .meta-cat { color: var(--body-text); background: #fff; }
.pdp-meta .meta-instock { color: var(--success); background: #e6f7ef; border-color: #cdeee0; }
.pdp-meta .meta-oos { color: #b91c1c; background: #fdecec; border-color: #f7d3d3; }

.pdp-buy-btn:disabled, #product-qty:disabled, .number-button button:disabled {
	opacity: .55; cursor: not-allowed;
}
.pdp-buy-btn:disabled:hover { background: inherit; }
#buy-now-btn:disabled { background: #dcdfe6 !important; color: #8a93a8 !important; }
#add-to-cart-btn:disabled { background: #fff !important; color: #a8b3c9 !important; border-color: #e2e6ee !important; }

.pdp-label {
	font-size: 12px; font-weight: 700; letter-spacing: .05em; text-transform: uppercase;
	color: #9aa6bd; margin: 0 0 10px;
}
.pdp-qty-row { margin-bottom: 18px; }

/* compact quantity stepper — fixed, content-sized, not stretched */
.number-button {
	display: inline-flex;
	align-items: stretch;
	width: auto;
	border: 1.5px solid var(--border-soft);
	border-radius: var(--radius-sm) !important;
	overflow: hidden;
	background: #fff;
}
.number-button button {
	border: none;
	background: none;
	width: 38px;
	height: 42px;
	font-size: 16px;
	color: var(--navy);
	cursor: pointer;
	transition: background .15s ease;
	flex: none;
}
.number-button button:hover { background: var(--bg-soft); }
.number-button input {
	width: 44px !important;
	height: 42px;
	text-align: center !important;
	border: none !important;
	border-left: 1px solid var(--border-soft) !important;
	border-right: 1px solid var(--border-soft) !important;
	border-radius: 0 !important;
	background: #fff !important;
	padding: 0 !important;
	font-family: Jost, sans-serif;
	font-size: 15px;
	color: var(--navy);
	flex: none;
	-moz-appearance: textfield;
}
.number-button input::-webkit-outer-spin-button,
.number-button input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }

.pdp-cta-group { display: flex; flex-direction: column; gap: 12px; margin-bottom: 22px; }
.pdp-buy-btn { display: block; width: 100%; padding: 15px 0; cursor: pointer; font-size: 15px; margin-bottom: 0; }
.pdp-buy-btn-outline { border: 1.5px solid var(--navy) !important; background: #fff; color: var(--navy); }
.pdp-buy-btn-outline:hover { background: var(--navy); color: #fff; }

.cod-note {
	display: flex; align-items: center; gap: 10px;
	background: #fff7ea; border: 1px solid #ffe1af; border-radius: var(--radius-sm);
	padding: 14px 16px; font-size: 13.5px; color: #8a6414; margin-bottom: 24px;
}
.cod-note svg { flex: none; color: var(--orange); }

.pdp-trust-badges {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 12px 20px;
	padding-top: 20px;
	border-top: 1px solid var(--border-soft);
}
.trust-badge { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--body-text); }
.trust-badge svg { flex: none; color: var(--success); }
@media only screen and (max-width: 480px) {
	.pdp-trust-badges { grid-template-columns: 1fr; }
}

/* -- description section (own full-width block below the gallery/summary row) -- */
.pdp-section-title {
	font-size: 20px; font-weight: 700; color: var(--navy);
	margin: 44px 0 20px; padding-bottom: 14px; border-bottom: 1px solid var(--border-soft);
}
.description-card {
	color: var(--body-text);
	font-size: 15px;
	line-height: 1.85;
	max-width: 880px;
}
.description-card h4 {
	color: var(--navy);
	font-size: 17px;
	font-weight: 700;
	margin: 26px 0 10px;
}
.description-card h4:first-child { margin-top: 0; }
.description-card strong { color: var(--navy); font-weight: 600; }
.description-card p { margin: 0 0 14px; }
.description-card ul, .description-card ol { margin: 0 0 14px; padding-left: 22px; }
.description-card li { margin-bottom: 6px; }

@media only screen and (max-width: 767px) {
	.product-detail { gap: 28px; }
	.product-detail .summary .price .price-current { font-size: 24px; }
	.pdp-section-title { font-size: 18px; margin: 32px 0 16px; }
}

/* ============================================================
   CART PAGE
   ============================================================ */
.cart-page-table { width: 100%; border-collapse: collapse; margin-bottom: 30px; }
.cart-page-table th { text-align: left; padding: 12px 10px; color: var(--navy); font-size: 13px; text-transform: uppercase; letter-spacing: .04em; border-bottom: 2px solid var(--border-soft); }
.cart-page-table td { padding: 16px 10px; border-bottom: 1px solid var(--border-soft); text-align: left; }
.cart-page-table img { width: 60px; height: 60px; object-fit: contain; border-radius: var(--radius-sm); background: var(--bg-soft); }
.cart-page-table .qty-input { width: 60px; padding: 8px; border: 1px solid var(--border-soft); border-radius: var(--radius-sm); }
.cart-page-table .remove-item { color: var(--danger); text-decoration: none; font-size: 18px; }
.cart-totals { max-width: 360px; margin-left: auto; background: var(--bg-soft); padding: 20px 24px; border-radius: var(--radius-md); }
.cart-totals table { width: 100%; }
.cart-totals td { padding: 8px 0; }
#cart-shipping.qb-free { color: var(--success); font-weight: 600; }
.cart-shipping-note {
	background: #fff7ea; border: 1px solid #ffe1af; color: #8a6414;
	font-size: 12.5px; padding: 10px 12px; border-radius: var(--radius-sm); margin-bottom: 14px;
}
.cart-trust-line { text-align: center; font-size: 12.5px; color: var(--body-text); margin: 14px 0 0; }
.cart-empty { text-align: center; padding: 60px 0; }

/* ============================================================
   CHECKOUT PAGE
   ============================================================ */
.checkout-layout { display: flex; gap: 44px; padding: 10px 0 60px; flex-wrap: wrap; }
.checkout-layout .checkout-form { flex: 1 1 480px; }
.checkout-layout .order-summary { flex: 1 1 320px; background: var(--bg-soft); padding: 26px; border-radius: var(--radius-md); align-self: flex-start; }
.checkout-form .form-row { margin-bottom: 18px; }
.checkout-form label { display: block; margin-bottom: 7px; font-size: 13px; color: var(--navy); font-weight: 600; }
.checkout-form input, .checkout-form select, .checkout-form textarea {
	width: 100%; padding: 13px 16px; border: 1.5px solid var(--border-soft); border-radius: var(--radius-sm);
	font-family: Jost, sans-serif; font-size: 14px; transition: border-color .2s ease;
}
.checkout-form input:focus, .checkout-form textarea:focus { outline: none; border-color: var(--navy); }
.checkout-form .field-error { color: var(--danger); font-size: 12px; margin-top: 5px; display: none; }
.checkout-form .form-row.has-error input, .checkout-form .form-row.has-error select { border-color: var(--danger); }
.checkout-form .form-row.has-error .field-error { display: block; }
.order-summary .summary-row, .confirm-details .summary-row { display: flex; justify-content: space-between; padding: 9px 0; border-bottom: 1px solid #e6e9ef; font-size: 14px; gap: 12px; }
.order-summary .summary-total, .confirm-details .summary-total { font-weight: 700; font-size: 17px; color: var(--navy); border-bottom: none; }
.cod-note { background: #fff7ea; border: 1px solid #ffe1af; border-radius: var(--radius-sm); padding: 14px 16px; font-size: 13px; margin-bottom: 22px; color: #8a6414; }
.order-confirmation { text-align: center; padding: 60px 20px; max-width: 560px; margin: 0 auto; }
.order-confirmation .icon-success {
	width: 70px; height: 70px; border-radius: 50%; background: #e6f7ef; color: var(--success);
	display: flex; align-items: center; justify-content: center; font-size: 32px; margin: 0 auto 20px;
}
.order-confirmation h1 { color: var(--navy); margin-bottom: 12px; font-size: 26px; }
.order-confirmation .confirm-details { text-align: left; background: var(--bg-soft); padding: 22px; border-radius: var(--radius-md); margin: 24px 0; }

/* ============================================================
   MISC PAGES
   ============================================================ */
.static-page-content { padding: 10px 0 60px; line-height: 1.85; color: var(--body-text); }
.static-page-content h1 { color: var(--navy); margin-bottom: 20px; font-size: 26px; }
.static-page-content h3 { color: var(--navy); }
.not-found-page { text-align: center; padding: 100px 20px; }
.not-found-page .code-404 { font-size: 120px; color: var(--navy); font-weight: 700; line-height: 1; }

/* ============================================================
   FOOTER
   ============================================================ */
#colophon { background: var(--bg-soft); margin-top: 60px; }
.footer-columns { display: flex; gap: 40px; flex-wrap: wrap; padding: 50px 0 30px; }
.footer-columns h5 { color: var(--navy); margin-bottom: 16px; font-size: 15px; font-weight: 700; }
.footer-columns ul { list-style: none; margin: 0; padding: 0; }
.footer-columns ul li { margin-bottom: 10px; list-style: none !important; }
.footer-columns ul li a { color: var(--body-text); text-decoration: none; font-size: 14px; }
.footer-columns ul li a:hover { color: var(--orange); }
.list-icons { list-style: none !important; display: flex; gap: 10px; padding: 0; margin: 0; }
.list-icons li { list-style: none !important; display: inline-flex; }
.list-icons li a {
	display: inline-flex; align-items: center; justify-content: center; width: 36px; height: 36px;
	border-radius: 50%; background: #fff; color: var(--navy); text-decoration: none; box-shadow: 0 2px 6px rgba(16,49,120,.08);
}
.list-icons li a:hover { background: var(--navy); color: #fff; }
.end-footer { border-top: 1px solid var(--border-soft); }

/* ============================================================
   QUICK-BUY MODAL ("J'achète" popup on the product page)
   ============================================================ */
.quickbuy-overlay {
	position: fixed;
	inset: 0;
	z-index: 3000;
	background: rgba(11,34,87,.55);
	backdrop-filter: blur(3px);
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 20px;
	opacity: 0;
	visibility: hidden;
	transition: opacity .2s ease, visibility .2s ease;
}
.quickbuy-overlay.open { opacity: 1; visibility: visible; }
body.quickbuy-open { overflow: hidden; }

.quickbuy-modal {
	position: relative;
	background: #fff;
	border-radius: var(--radius-lg);
	width: 100%;
	max-width: 440px;
	max-height: 90vh;
	overflow-y: auto;
	padding: 28px;
	box-shadow: 0 24px 60px rgba(0,0,0,.3);
	transform: translateY(10px) scale(.98);
	transition: transform .2s ease;
}
.quickbuy-overlay.open .quickbuy-modal { transform: translateY(0) scale(1); }

.quickbuy-close {
	position: absolute;
	top: 16px;
	right: 16px;
	width: 32px;
	height: 32px;
	border-radius: 50%;
	border: none;
	background: var(--bg-soft);
	color: var(--body-text);
	font-size: 20px;
	line-height: 1;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all .15s ease;
}
.quickbuy-close:hover { background: var(--navy); color: #fff; }

.quickbuy-product { display: flex; align-items: center; gap: 14px; margin-bottom: 20px; padding-right: 30px; }
.quickbuy-product img { width: 56px; height: 56px; object-fit: contain; border-radius: var(--radius-sm); background: var(--bg-soft); flex: none; }
.quickbuy-product-info h3 { font-size: 15px; font-weight: 700; color: var(--navy); margin: 0 0 4px; line-height: 1.3; }
.quickbuy-price { font-size: 15px; font-weight: 700; color: var(--orange); }

#quickbuy-form.checkout-form .form-row { margin-bottom: 14px; }

.quickbuy-summary { background: var(--bg-soft); border-radius: var(--radius-sm); padding: 14px 16px; margin: 18px 0; }
.quickbuy-summary .summary-row { display: flex; justify-content: space-between; gap: 12px; padding: 6px 0; font-size: 13.5px; color: var(--body-text); }
.quickbuy-summary .summary-row span:last-child { text-align: right; }
.quickbuy-summary .qb-free { color: var(--success); font-weight: 600; }
.quickbuy-summary .summary-total { border-top: 1px solid var(--border-soft); margin-top: 4px; padding-top: 10px; font-weight: 700; color: var(--navy); font-size: 15px; }

.quickbuy-submit { width: 100%; border: none; cursor: pointer; padding: 14px 0; }

.quickbuy-success { display: none; text-align: center; padding: 20px 0 6px; }
.quickbuy-success .icon-success {
	width: 56px; height: 56px; border-radius: 50%; background: #e6f7ef; color: var(--success);
	display: flex; align-items: center; justify-content: center; font-size: 26px; margin: 0 auto 16px;
}
.quickbuy-success h3 { color: var(--navy); font-size: 18px; margin-bottom: 8px; }
.quickbuy-success p { color: var(--body-text); font-size: 14px; margin-bottom: 20px; }
.quickbuy-success .ts-button { min-width: 140px; border: none; }

.quickbuy-trust { display: flex; justify-content: center; gap: 20px; margin: 18px 0 0; font-size: 12px; color: var(--body-text); }
.quickbuy-trust span { display: inline-flex; align-items: center; gap: 5px; }
.quickbuy-trust svg { color: var(--success); }

@media only screen and (max-width: 480px) {
	.quickbuy-modal { padding: 22px 18px; }
	.quickbuy-trust { flex-direction: column; align-items: center; gap: 8px; }
}

/* ============================================================
   TOP PROMO BAR
   ============================================================ */
.promo-bar { background: var(--navy); padding: 10px 0; }
.promo-bar-inner { position: relative; display: flex; align-items: center; justify-content: center; }
.promo-bar-text { color: var(--orange); font-size: 13px; font-weight: 600; letter-spacing: .01em; text-align: center; }
.promo-bar-close {
	position: absolute;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
	background: none;
	border: none;
	color: rgba(255,255,255,.65);
	font-size: 20px;
	line-height: 1;
	width: 24px;
	height: 24px;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: color .15s ease;
}
.promo-bar-close:hover { color: #fff; }
@media only screen and (max-width: 767px) {
	.promo-bar-text { font-size: 11.5px; padding: 0 30px; }
}
