/* Dental Premium — feuille de style unique du thème.
   Mobile-first : les règles de base sont pour mobile, le desktop
   arrive dans les media queries en bas de fichier. */

:root {
	--dp-blue: #0E6B76;
	--dp-navy: #293163;
	--dp-teal: #38B5C4;
	--dp-cyan: #7FB3F0;
	--dp-bg: #FFFFFF;
	--dp-hover: #F4F8FC;
	--dp-line: #E3EBF3;
	--dp-muted: #7C93AC;
	--dp-text: #24334A;
}

* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
	margin: 0;
	font-family: var(--dp-font-family, 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif);
	color: var(--dp-text);
	background: var(--dp-bg);
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--dp-blue); text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
h1, h2 { margin: 0; color: var(--dp-navy); }

.dp-topbar {
	background: var(--dp-navy);
	color: #fff;
	display: flex;
	align-items: center;
	padding: 7px 0;
	font-size: 10.5px;
	font-weight: 600;
	overflow: hidden;
}
.dp-topbar-track {
	display: flex; width: max-content;
	animation: dp-marquee 16s linear infinite;
}
.dp-topbar-group { display: flex; align-items: center; gap: 10px; padding: 0 16px; white-space: nowrap; }
.dp-topbar svg { vertical-align: -2px; margin-right: 3px; }
.dp-topbar-sep { opacity: .35; }
.dp-topbar-fill { display: none; }
.dp-topbar-phone { display: none; }
.dp-topbar a { color: #fff; }

.dp-header {
	background: #fff;
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 10px 16px;
	border-bottom: 1px solid var(--dp-line);
	flex-wrap: wrap;
}
.dp-menu-toggle {
	background: none;
	border: none;
	padding: 4px;
	color: var(--dp-navy);
	order: 1;
}
.dp-logo {
	display: flex;
	align-items: center;
	gap: 7px;
	order: 2;
	color: var(--dp-navy);
}
.dp-logo img { width: 42px; height: 42px; object-fit: contain; }
.dp-logo strong { display: block; font-size: 15px; font-weight: 800; letter-spacing: -0.01em; line-height: 1.1; }
.dp-logo em { display: none; font-style: normal; font-size: 8px; font-weight: 600; letter-spacing: .06em; color: var(--dp-muted); text-transform: uppercase; }
.dp-lang-switch {
	display: flex; align-items: center; gap: 4px; order: 3; margin-left: auto;
	background: #F1F5FA; border: 1px solid var(--dp-line); border-radius: 999px; padding: 3px;
}
.dp-lang-btn {
	border: none; background: transparent; color: var(--dp-muted); font-size: 11px; font-weight: 700;
	padding: 5px 10px; border-radius: 999px; cursor: pointer; transition: background .15s ease, color .15s ease;
}
.dp-lang-btn.is-active {
	background: linear-gradient(135deg, var(--dp-teal), var(--dp-blue)); color: #fff;
}
.dp-account-links {
	display: flex;
	align-items: center;
	gap: 16px;
	order: 3;
}
.dp-account-links a { display: flex; align-items: center; color: var(--dp-navy); position: relative; }
.dp-account-links span { display: none; }
.dp-cart-count {
	position: absolute; top: -6px; right: -8px;
	background: var(--dp-blue); color: #fff;
	font-size: 8.5px; font-weight: 700; font-style: normal;
	width: 14px; height: 14px; border-radius: 50%;
	display: flex; align-items: center; justify-content: center;
}
.dp-search {
	order: 4;
	flex-basis: 100%;
	display: flex; align-items: center; gap: 8px;
	background: #F1F5FA; border: 1px solid var(--dp-line);
	border-radius: 10px; padding: 10px 14px;
}
.dp-search input { border: none; background: none; outline: none; font-size: 13px; flex-grow: 1; font-family: inherit; color: var(--dp-navy); }
.dp-search button { background: none; border: none; color: var(--dp-muted); display: flex; }

.dp-search-suggest {
	display: none; position: absolute; top: calc(100% + 6px); left: 0; right: 0; z-index: 60;
	background: #fff; border: 1px solid var(--dp-line); border-radius: 12px; overflow: hidden;
	box-shadow: 0 12px 28px rgba(11,37,69,.14); max-height: 380px; overflow-y: auto;
}
.dp-search-suggest.is-open { display: block; }
.dp-search-suggest-item { display: flex; align-items: center; gap: 12px; padding: 10px 14px; border-bottom: 1px solid var(--dp-line); }
.dp-search-suggest-item:last-child { border-bottom: none; }
.dp-search-suggest-item:hover { background: var(--dp-hover); }
.dp-search-suggest-item img { width: 44px; height: 44px; object-fit: contain; border-radius: 8px; background: var(--dp-hover); flex-shrink: 0; }
.dp-search-suggest-info { display: flex; flex-direction: column; gap: 3px; min-width: 0; }
.dp-search-suggest-name { font-size: 12.5px; font-weight: 600; color: var(--dp-navy); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.dp-search-suggest-price { font-size: 12px; font-weight: 700; color: var(--dp-teal); }

.dp-nav { background: #fff; border-bottom: 1px solid var(--dp-line); }
.dp-nav ul { list-style: none; margin: 0; padding: 8px 16px; display: none; flex-direction: column; gap: 4px; }
.dp-nav.is-open ul { display: flex; }
.dp-nav a { display: block; padding: 8px 4px; font-size: 14px; font-weight: 700; color: var(--dp-navy); letter-spacing: .02em; }
.dp-nav .current-menu-item > a { color: var(--dp-blue); }

.dp-hero-row { display: flex; flex-direction: column; gap: 12px; padding: 14px 16px 0; }
.dp-cat-sidebar { display: none; }
.dp-shop-row { max-width: 1280px; margin: 0 auto; padding: 0 16px; }
.dp-shop-row-sidebar { display: none; }
.dp-shop-row-main { min-width: 0; }
.dp-shop-row-main .woocommerce-breadcrumb,
.dp-shop-row-main .woocommerce > h1.page-title,
.dp-shop-row-main .woocommerce-products-header__title,
.dp-shop-row-main .term-description,
.dp-shop-row-main .woocommerce-result-count,
.dp-shop-row-main .woocommerce-ordering,
.dp-shop-row-main ul.products,
.dp-shop-row-main nav.woocommerce-pagination { max-width: none !important; margin-left: 0 !important; margin-right: 0 !important; padding-left: 0 !important; padding-right: 0 !important; }
.dp-hero { display: block; position: relative; border-radius: 16px; overflow: hidden; background: var(--dp-navy); }
.dp-hero img { width: 100%; height: 200px; object-fit: cover; object-position: left center; }
.dp-hero--carousel .dp-hero-slide {
	position: absolute; inset: 0; opacity: 0; transition: opacity .6s ease; pointer-events: none;
}
.dp-hero--carousel .dp-hero-slide.is-active { opacity: 1; pointer-events: auto; position: relative; }
.dp-hero--carousel .dp-hero-slide img { height: 100%; }
.dp-hero-dots {
	position: absolute; bottom: 12px; left: 50%; transform: translateX(-50%);
	display: flex; gap: 6px; z-index: 2;
}
.dp-hero-dot {
	width: 7px; height: 7px; border-radius: 50%; background: rgba(255,255,255,.45);
	border: none; padding: 0; cursor: pointer; transition: background .2s ease, width .2s ease;
}
.dp-hero-dot.is-active { background: #fff; width: 18px; border-radius: 4px; }

.dp-cat-emoji { display: inline-flex; align-items: center; justify-content: center; font-size: 17px; line-height: 1; flex-shrink: 0; }
.dp-cat-emoji--lg { font-size: 34px; }
.dp-cat-emoji--photo img { width: 20px; height: 20px; object-fit: cover; border-radius: 5px; }

.dp-banner2 {
	display: block; margin: 0 16px 20px; border-radius: 16px; overflow: hidden; background: var(--dp-hover);
}
.dp-banner2 img { width: 100%; height: auto; display: block; }

.dp-cat-carousel { overflow: hidden; padding: 4px 0 18px; -webkit-mask-image: linear-gradient(to right, transparent, #000 24px, #000 calc(100% - 24px), transparent); mask-image: linear-gradient(to right, transparent, #000 24px, #000 calc(100% - 24px), transparent); }
.dp-cat-track {
	display: flex; gap: 14px; width: max-content;
	animation: dp-marquee var(--dp-cat-speed, 25s) linear infinite;
}
.dp-cat-carousel:hover .dp-cat-track { animation-play-state: paused; }
@keyframes dp-marquee {
	from { transform: translateX(0); }
	to { transform: translateX(-50%); }
}
.dp-cat-carousel-item {
	flex: 0 0 auto; width: 96px; display: flex; flex-direction: column; align-items: center; gap: 8px;
	color: var(--dp-navy); text-align: center;
}
.dp-cat-carousel-media {
	width: 88px; height: 88px; border-radius: 50%; background: #fff; border: 1px solid var(--dp-line);
	box-shadow: 0 1px 3px rgba(11,37,69,.07), 0 6px 16px rgba(11,37,69,.05);
	display: flex; align-items: center; justify-content: center; overflow: hidden; color: var(--dp-blue);
}
.dp-cat-carousel-media img { width: 100%; height: 100%; object-fit: cover; }
.dp-cat-carousel-name { font-size: 11.5px; font-weight: 600; line-height: 1.25; }

.dp-brand-carousel {
	margin: 20px 16px; padding: 16px 24px; background: #fff; border: 1px solid var(--dp-line);
	box-shadow: 0 1px 3px rgba(11,37,69,.06); border-radius: 14px; overflow: hidden;
	-webkit-mask-image: linear-gradient(to right, transparent, #000 32px, #000 calc(100% - 32px), transparent);
	mask-image: linear-gradient(to right, transparent, #000 32px, #000 calc(100% - 32px), transparent);
}
.dp-brand-track {
	display: flex; align-items: center; gap: 40px; width: max-content;
	animation: dp-marquee var(--dp-brand-speed, 22s) linear infinite;
}
.dp-brand-carousel:hover .dp-brand-track { animation-play-state: paused; }
.dp-brand-item { flex: 0 0 auto; display: flex; align-items: center; }
.dp-brand-item img { height: 32px; width: auto; max-width: 110px; object-fit: contain; filter: grayscale(1); opacity: .7; transition: filter .2s ease, opacity .2s ease; }
.dp-brand-item:hover img { filter: grayscale(0); opacity: 1; }
.dp-brand-item--text { font-weight: 800; font-size: 13px; color: #8497AC; white-space: nowrap; }

.dp-section-head { padding: 0 16px; display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 12px; gap: 10px; }
.dp-section-head h2 { font-size: 18px; font-weight: 800; }
.dp-see-all {
	display: inline-flex; align-items: center; gap: 6px; background: #EAF3FC; color: var(--dp-blue);
	font-size: 11.5px; font-weight: 700; padding: 7px 14px; border-radius: 999px; white-space: nowrap;
}

.dp-product-grid { padding: 0 16px 24px; display: grid; grid-template-columns: repeat(var(--dp-cols-mobile, 2), minmax(0, 1fr)); gap: 12px; }
.dp-product-card {
	background: #fff; border: 1px solid var(--dp-line); border-radius: 14px; overflow: hidden; position: relative;
	display: flex; flex-direction: column; box-shadow: 0 1px 3px rgba(11,37,69,.07), 0 6px 16px rgba(11,37,69,.05);
	transition: transform .18s ease, box-shadow .18s ease;
}
.dp-product-card:hover { transform: translateY(-3px); box-shadow: 0 4px 10px rgba(11,37,69,.09), 0 12px 24px rgba(11,37,69,.08); }
.dp-product-media { display: block; aspect-ratio: 1 / 1; padding: 12px; }
.dp-product-media img { width: 100%; height: 100%; object-fit: contain; }
.dp-wishlist-btn {
	position: absolute; top: 8px; right: 8px; width: 24px; height: 24px; border-radius: 50%;
	background: #fff; border: 1px solid var(--dp-line); color: var(--dp-navy);
	display: flex; align-items: center; justify-content: center; z-index: 1;
}
.dp-product-body { padding: 0 12px 16px; display: flex; flex-direction: column; align-items: center; gap: 8px; flex-grow: 1; text-align: center; }
.dp-product-name {
	font-size: 12.5px; font-weight: 700; color: var(--dp-navy); line-height: 1.3; text-align: center;
	display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; min-height: 2.5em;
}
.dp-product-price { font-size: 14.5px; font-weight: 800; color: var(--dp-teal); text-align: center; }
.dp-product-price .woocommerce-Price-amount { font-weight: 800; }
.dp-add-to-cart, a.dp-add-to-cart, .dp-product-card .button {
	display: inline-flex !important; align-items: center; justify-content: center; gap: 6px;
	background: linear-gradient(135deg, var(--dp-teal), var(--dp-blue)) !important; color: #fff !important; border: none; border-radius: 999px;
	padding: 10px 20px !important; font-size: 12.5px !important; font-weight: 700 !important; text-align: center;
	box-shadow: 0 4px 10px rgba(14,107,118,.28); transition: transform .15s ease, box-shadow .15s ease; margin-top: 2px;
}
.dp-add-to-cart:hover, a.dp-add-to-cart:hover, .dp-product-card .button:hover { transform: translateY(-2px); box-shadow: 0 6px 14px rgba(14,107,118,.4); }
.dp-add-to-cart::before, a.dp-add-to-cart::before { content: "🛒"; }

.dp-trust-stats {
	display: flex; justify-content: center; gap: 28px; flex-wrap: wrap;
	padding: 18px 16px; margin: 0 16px 20px; text-align: center;
}
.dp-trust-stat { display: flex; flex-direction: column; }
.dp-trust-stat strong { font-size: 17px; font-weight: 800; color: var(--dp-navy); }
.dp-trust-stat span { font-size: 11.5px; color: var(--dp-muted); font-weight: 600; }
@media (min-width: 640px) { .dp-trust-stats { gap: 56px; padding: 24px 16px; } .dp-trust-stat strong { font-size: 20px; } }

/* ---------- Bannière "Produit introuvable ? Contactez-nous" ---------- */
.dp-cta-banner {
	margin: 8px 16px 40px; padding: 44px 24px; border-radius: 20px; text-align: center;
	background: linear-gradient(135deg, var(--dp-teal), var(--dp-navy));
	background-size: cover; background-position: center;
	color: #fff;
}
.dp-cta-inner { max-width: 560px; margin: 0 auto; display: flex; flex-direction: column; align-items: center; }
.dp-cta-icon { opacity: .9; margin-bottom: 14px; }
.dp-cta-banner h2 { font-size: 21px; font-weight: 800; margin: 0 0 10px; line-height: 1.3; }
.dp-cta-banner p { font-size: 14px; opacity: .92; margin: 0 0 22px; line-height: 1.6; }
.dp-cta-button {
	display: inline-flex; align-items: center; gap: 8px; background: #fff; color: var(--dp-navy) !important;
	font-weight: 700; font-size: 14px; padding: 13px 26px; border-radius: 999px;
	box-shadow: 0 6px 16px rgba(0,0,0,.18); transition: transform .15s ease, box-shadow .15s ease;
}
.dp-cta-button:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(0,0,0,.24); }

@media (min-width: 900px) {
	.dp-cta-banner { margin: 8px 48px 56px; padding: 60px 24px; }
	.dp-cta-banner h2 { font-size: 28px; }
	.dp-cta-banner p { font-size: 15.5px; }
}

.dp-fallback-inner { max-width: 760px; margin: 0 auto; padding: 32px 16px 48px; }

/* ---------- Article de blog (single.php) ---------- */
.dp-post-inner { max-width: 760px; margin: 0 auto; padding: 32px 16px 60px; }
.dp-post-meta { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; font-size: 12.5px; color: var(--dp-muted); margin-bottom: 14px; }
.dp-post-cat { background: var(--dp-hover); color: var(--dp-blue); font-weight: 700; padding: 4px 12px; border-radius: 999px; font-size: 11.5px; }
.dp-post-title { font-size: 26px; font-weight: 800; color: var(--dp-navy); line-height: 1.25; margin: 0 0 20px; }
.dp-post-thumb { border-radius: 16px; overflow: hidden; margin-bottom: 24px; line-height: 0; }
.dp-post-thumb img { width: 100%; height: auto; display: block; }
.dp-post-content { font-size: 15px; line-height: 1.75; color: var(--dp-text); }
.dp-post-content h2 { font-size: 20px; font-weight: 800; color: var(--dp-navy); margin: 34px 0 14px; }
.dp-post-content h3 { font-size: 17px; font-weight: 700; color: var(--dp-navy); margin: 26px 0 12px; }
.dp-post-content p { margin: 0 0 16px; }
.dp-post-content ul, .dp-post-content ol { margin: 0 0 18px; padding-left: 22px; }
.dp-post-content li { margin-bottom: 8px; }
.dp-post-content strong { color: var(--dp-navy); }
.dp-post-content a { color: var(--dp-blue); text-decoration: underline; }

.dp-post-sources { margin-top: 40px; padding: 24px; background: var(--dp-hover); border-radius: 16px; }
.dp-post-sources h2 { font-size: 16px; font-weight: 800; color: var(--dp-navy); margin: 0 0 10px; }
.dp-post-sources p { font-size: 13.5px; color: var(--dp-muted); margin: 0 0 12px; }
.dp-post-sources ul { margin: 0; padding-left: 20px; font-size: 13px; color: var(--dp-text); }
.dp-post-sources li { margin-bottom: 6px; }

.dp-post-cta {
	margin-top: 28px; padding: 32px 24px; border-radius: 18px; text-align: center; color: #fff;
	background: linear-gradient(135deg, var(--dp-teal), var(--dp-navy));
}
.dp-post-cta h2 { font-size: 19px; font-weight: 800; margin: 0 0 10px; }
.dp-post-cta p { font-size: 13.5px; opacity: .92; margin: 0 0 20px; line-height: 1.6; }
.dp-post-cta-actions { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; }
.dp-post-cta-secondary {
	display: inline-flex; align-items: center; background: rgba(255,255,255,.15); color: #fff !important;
	font-weight: 700; font-size: 13.5px; padding: 12px 22px; border-radius: 999px; border: 1px solid rgba(255,255,255,.4);
}

.dp-post-related { margin-top: 44px; }
.dp-post-related h2 { font-size: 19px; font-weight: 800; color: var(--dp-navy); margin: 0 0 18px; }
.dp-post-related-grid { display: grid; grid-template-columns: 1fr; gap: 16px; }
.dp-post-related-card {
	display: block; border: 1px solid var(--dp-line); border-radius: 14px; overflow: hidden;
	box-shadow: 0 1px 3px rgba(11,37,69,.06); transition: transform .15s ease;
}
.dp-post-related-card:hover { transform: translateY(-2px); }
.dp-post-related-card img { width: 100%; height: 140px; object-fit: cover; display: block; }
.dp-post-related-body { padding: 14px 16px; }
.dp-post-related-body h3 { font-size: 14px; font-weight: 700; color: var(--dp-navy); margin: 6px 0 0; line-height: 1.4; }

@media (min-width: 640px) {
	.dp-post-related-grid { grid-template-columns: repeat(3, 1fr); }
	.dp-post-title { font-size: 32px; }
}

.dp-page-inner { max-width: 900px; margin: 0 auto; padding: 28px 16px 60px; }
.dp-page-title { font-size: 24px; font-weight: 800; color: var(--dp-navy); margin: 0 0 20px; }
.dp-page-content { font-size: 14px; line-height: 1.7; color: var(--dp-text); }
.dp-page-content img { border-radius: 12px; }
.dp-page-content h2 { font-size: 20px; font-weight: 800; color: var(--dp-navy); margin: 30px 0 14px; }
.dp-page-content h3 { font-size: 16px; font-weight: 700; color: var(--dp-navy); margin: 24px 0 10px; }
.dp-page-content ul { margin: 0 0 16px; padding-left: 20px; }
.dp-page-content li { margin-bottom: 8px; }
.dp-city-cta { margin-top: 30px; padding: 28px 22px; border-radius: 16px; text-align: center; color: #fff; background: linear-gradient(135deg, var(--dp-teal), var(--dp-navy)); }
.dp-city-cta h2 { color: #fff; margin-top: 0; }
.dp-city-cta p { opacity: .92; margin-bottom: 18px; }
.dp-city-tags { display: flex; flex-wrap: wrap; gap: 8px; margin: 0 0 20px; padding: 0; list-style: none; }
.dp-city-tags a { display: inline-block; background: var(--dp-hover); color: var(--dp-blue) !important; font-weight: 600; font-size: 12.5px; padding: 6px 14px; border-radius: 999px; }
.dp-city-hero-actions { display: flex; gap: 10px; flex-wrap: wrap; margin: 16px 0 24px; }
.dp-city-hero-actions a { display: inline-flex; align-items: center; padding: 12px 22px; border-radius: 999px; font-weight: 700; font-size: 13.5px; }
.dp-city-hero-actions a.wa { background: linear-gradient(135deg, var(--dp-teal), var(--dp-blue)); color: #fff !important; }
.dp-city-hero-actions a.shop { background: var(--dp-hover); color: var(--dp-navy) !important; }
.dp-city-features { display: grid; grid-template-columns: 1fr; gap: 14px; margin: 20px 0; }
.dp-city-feature { padding: 16px; background: var(--dp-hover); border-radius: 12px; }
.dp-city-feature strong { display: block; color: var(--dp-navy); margin-bottom: 4px; }
@media (min-width: 640px) { .dp-city-features { grid-template-columns: repeat(3, 1fr); } }

/* ---------- Page "Qui sommes-nous" ---------- */
.dp-about-inner { max-width: 1160px; margin: 0 auto; padding: 40px 16px 60px; display: grid; grid-template-columns: 1fr; gap: 40px; }
.dp-about-text h1 { font-size: 30px; font-weight: 800; color: var(--dp-navy); line-height: 1.2; margin: 0 0 18px; }
.dp-about-text p, .dp-about-content { font-size: 14.5px; line-height: 1.75; color: var(--dp-text); }
.dp-about-content { margin-top: 14px; }
.dp-about-find h2 { font-size: 19px; font-weight: 800; color: var(--dp-navy); margin: 0 0 14px; }
.dp-about-map {
	border-radius: 14px; overflow: hidden; border: 1px solid var(--dp-line);
	box-shadow: 0 1px 3px rgba(11,37,69,.07), 0 6px 16px rgba(11,37,69,.05); margin-bottom: 16px; line-height: 0;
}
.dp-about-buttons { display: flex; gap: 12px; margin-bottom: 20px; flex-wrap: wrap; }
.dp-about-btn {
	display: inline-flex; align-items: center; gap: 8px; padding: 12px 20px; border-radius: 10px;
	color: #fff !important; font-weight: 700; font-size: 13.5px; box-shadow: 0 4px 10px rgba(11,37,69,.15);
	transition: transform .15s ease, box-shadow .15s ease;
}
.dp-about-btn:hover { transform: translateY(-2px); }
.dp-about-btn--maps { background: linear-gradient(135deg, var(--dp-teal), var(--dp-blue)); }
.dp-about-btn--waze { background: linear-gradient(135deg, #33CCFF, #1A9FE0); }
.dp-about-contact { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 12px; }
.dp-about-contact li { display: flex; align-items: flex-start; gap: 10px; font-size: 13.5px; color: var(--dp-text); }
.dp-about-contact svg { flex-shrink: 0; color: var(--dp-teal); margin-top: 1px; }
.dp-about-contact a { color: var(--dp-text); }
.dp-review-btn {
	display: inline-flex; align-items: center; gap: 8px; margin-top: 22px; padding: 12px 20px;
	border-radius: 10px; background: #FBBC05; color: #1a1a1a !important; font-weight: 700; font-size: 13.5px;
	box-shadow: 0 4px 10px rgba(251,188,5,.3); transition: transform .15s ease;
}
.dp-review-btn:hover { transform: translateY(-2px); }

@media (min-width: 900px) {
	.dp-about-inner { grid-template-columns: 1.1fr 1fr; gap: 56px; padding-top: 56px; }
	.dp-about-text h1 { font-size: 38px; }
}

/* ---------- Panier ---------- */
.woocommerce-cart-form { width: 100%; }
.woocommerce-cart-form table.shop_table,
.woocommerce-checkout-review-order-table {
	width: 100%; border-collapse: collapse; margin-bottom: 20px;
}
.woocommerce-cart-form table.shop_table th {
	text-align: left; font-size: 11px; text-transform: uppercase; letter-spacing: .04em;
	color: var(--dp-muted); padding: 10px 8px; border-bottom: 2px solid var(--dp-line);
}
.woocommerce-cart-form table.shop_table td {
	padding: 14px 8px; border-bottom: 1px solid var(--dp-line); vertical-align: middle;
}
.woocommerce-cart-form .product-thumbnail img {
	width: 64px; height: 64px; object-fit: contain; border: 1px solid var(--dp-line); border-radius: 10px; padding: 6px; background: #fff;
}
.woocommerce-cart-form .product-name a { color: var(--dp-navy); font-weight: 600; font-size: 13.5px; }
.woocommerce-cart-form .product-price, .woocommerce-cart-form .product-subtotal { font-weight: 700; color: var(--dp-navy); white-space: nowrap; }
.woocommerce-cart-form .quantity input {
	width: 56px; padding: 8px; border: 1px solid var(--dp-line); border-radius: 8px; text-align: center; font-family: inherit;
}
.woocommerce-cart-form .product-remove a {
	display: inline-flex; align-items: center; justify-content: center; width: 26px; height: 26px;
	border-radius: 50%; background: #FDECEC; color: #C4463B !important; font-size: 16px; font-weight: 700; text-decoration: none !important;
}
.woocommerce-cart-form td.actions { text-align: right; }
.woocommerce-cart-form .coupon { display: flex; gap: 8px; align-items: center; flex-wrap: wrap; }
.woocommerce-cart-form .coupon input#coupon_code {
	border: 1px solid var(--dp-line); border-radius: 8px; padding: 10px 12px; font-family: inherit; width: 160px;
}
.woocommerce-cart-form button[name="update_cart"],
.woocommerce-cart-form button[name="apply_coupon"] {
	background: #fff; border: 1px solid var(--dp-line); color: var(--dp-navy); border-radius: 8px;
	padding: 10px 16px; font-weight: 700; font-size: 12.5px; cursor: pointer;
}

.cart-collaterals { max-width: 420px; margin-left: auto; }
.cart_totals { background: #fff; border: 1px solid var(--dp-line); border-radius: 14px; padding: 20px; box-shadow: 0 1px 3px rgba(11,37,69,.06); }
.cart_totals h2 { font-size: 16px; font-weight: 800; color: var(--dp-navy); margin: 0 0 14px; }
.cart_totals table { width: 100%; border-collapse: collapse; }
.cart_totals table th, .cart_totals table td { padding: 10px 0; border-bottom: 1px solid var(--dp-line); font-size: 13px; }
.cart_totals table th { text-align: left; color: var(--dp-muted); font-weight: 600; width: 40%; }
.cart_totals .order-total th, .cart_totals .order-total td { border-bottom: none; font-weight: 800; color: var(--dp-navy); font-size: 15px; }
.wc-proceed-to-checkout { margin-top: 14px; }
.wc-proceed-to-checkout a.checkout-button {
	display: block; text-align: center; background: var(--dp-blue); color: #fff !important;
	border-radius: 10px; padding: 14px; font-weight: 700; font-size: 14px;
}
.dp-wa-order-button {
	display: flex; align-items: center; justify-content: center; gap: 8px; margin-top: 10px;
	background: #25A25A; color: #fff !important; border-radius: 10px; padding: 14px; font-weight: 700; font-size: 14px; text-align: center;
}

/* ---------- Commander (checkout) ---------- */
.woocommerce-checkout #customer_details { margin-bottom: 24px; }
.woocommerce-checkout .form-row label { display: block; font-size: 12.5px; font-weight: 600; color: var(--dp-navy); margin-bottom: 5px; }
.woocommerce-checkout .form-row input.input-text,
.woocommerce-checkout .form-row textarea,
.woocommerce-checkout .form-row select,
.woocommerce-additional-fields textarea {
	width: 100%; border: 1px solid var(--dp-line); border-radius: 8px; padding: 11px 12px; font-family: inherit; font-size: 13.5px; box-sizing: border-box;
}
#order_review { background: #fff; border: 1px solid var(--dp-line); border-radius: 14px; padding: 20px; box-shadow: 0 1px 3px rgba(11,37,69,.06); }
#order_review_heading { font-size: 16px; font-weight: 800; color: var(--dp-navy); }
.woocommerce-checkout-review-order-table th, .woocommerce-checkout-review-order-table td { padding: 10px 4px; border-bottom: 1px solid var(--dp-line); font-size: 13px; }
.woocommerce-checkout-review-order-table .order-total th, .woocommerce-checkout-review-order-table .order-total td { font-weight: 800; color: var(--dp-navy); font-size: 15px; }
#place_order {
	width: 100%; background: var(--dp-blue) !important; color: #fff !important; border: none !important;
	border-radius: 10px !important; padding: 15px !important; font-weight: 700 !important; font-size: 14.5px !important; cursor: pointer;
}
.woocommerce-checkout .payment_methods { list-style: none; padding: 0; }
.woocommerce-checkout .payment_methods li { border: 1px solid var(--dp-line); border-radius: 10px; padding: 12px; margin-bottom: 8px; }

/* ---------- Panier / Commander — blocs WooCommerce (Cart & Checkout blocks) ---------- */
.wp-block-woocommerce-cart, .wp-block-woocommerce-checkout { max-width: 1100px; margin: 0 auto; padding: 20px 16px 60px; }

.wc-block-cart-items { width: 100%; border-collapse: collapse; margin-bottom: 16px; }
.wc-block-cart-items__header th { text-align: left; font-size: 11px; text-transform: uppercase; letter-spacing: .04em; color: var(--dp-muted); padding: 8px; border-bottom: 2px solid var(--dp-line); }
.wc-block-cart-items__row td { padding: 14px 8px; border-bottom: 1px solid var(--dp-line); vertical-align: middle; }
.wc-block-cart-item__image img { width: 64px; height: 64px; object-fit: contain; border: 1px solid var(--dp-line); border-radius: 10px; padding: 6px; background: #fff; }
.wc-block-components-product-name { color: var(--dp-navy); font-weight: 700; font-size: 13.5px; }
.wc-block-cart-item__prices, .wc-block-cart-item__total { font-weight: 700; color: var(--dp-navy); }
.wc-block-components-quantity-selector {
	display: inline-flex; align-items: center; border: 1px solid var(--dp-line); border-radius: 999px; overflow: hidden; height: 36px;
}
.wc-block-components-quantity-selector__button { background: #fff; border: none; width: 32px; height: 36px; color: var(--dp-navy); font-size: 15px; cursor: pointer; }
.wc-block-components-quantity-selector__input { border: none; width: 34px; text-align: center; font-family: inherit; font-weight: 700; color: var(--dp-navy); }
.wc-block-cart-item__remove-link {
	color: #C4463B !important; font-size: 12px; font-weight: 700; margin-top: 8px; background: none; border: none; cursor: pointer;
}

.wc-block-cart__sidebar, .wc-block-checkout__sidebar { }
.wc-block-components-totals-wrapper, .wc-block-components-panel {
	background: #fff; border: 1px solid var(--dp-line); border-radius: 14px; padding: 16px 18px; box-shadow: 0 1px 3px rgba(11,37,69,.06);
}
.wc-block-cart__totals-title { font-size: 16px; font-weight: 800; color: var(--dp-navy); }
.wc-block-components-totals-item__label { color: var(--dp-muted); font-size: 13px; font-weight: 600; }
.wc-block-components-totals-item__value { font-weight: 700; color: var(--dp-navy); font-size: 13px; }
.wc-block-components-totals-footer-item .wc-block-components-totals-item__label,
.wc-block-components-totals-footer-item .wc-block-components-totals-item__value { font-size: 16px; font-weight: 800; color: var(--dp-navy); }

.wc-block-components-button, .wp-element-button {
	background: var(--dp-blue) !important; color: #fff !important; border: none !important; border-radius: 10px !important;
	padding: 13px 20px !important; font-weight: 700 !important; font-size: 14px !important;
}
.wc-block-components-button:hover, .wp-element-button:hover { background: var(--dp-navy) !important; }
.wc-block-components-checkout-return-to-cart-button, .wc-block-components-totals-coupon-link {
	background: none !important; color: var(--dp-blue) !important; padding: 0 !important;
}

.dp-wa-order-button {
	display: flex; align-items: center; justify-content: center; gap: 8px; margin-top: 10px;
	background: #25A25A; color: #fff !important; border-radius: 10px; padding: 13px 20px; font-weight: 700; font-size: 14px; text-align: center; text-decoration: none;
}

.wc-block-components-text-input input, .wc-block-components-radio-control input,
.wc-block-checkout .wc-block-components-text-input__input, select.wc-block-components-country-input {
	border: 1px solid var(--dp-line) !important; border-radius: 8px !important; font-family: inherit;
}

@media (min-width: 1024px) {
	.wp-block-woocommerce-cart .wc-block-cart, .wp-block-woocommerce-checkout form.wc-block-checkout {
		display: flex !important; gap: 40px; align-items: flex-start;
	}
	.wc-block-cart__main, .wc-block-checkout__main { flex: 1 1 60%; min-width: 0; }
	.wc-block-cart__sidebar, .wc-block-checkout__sidebar { flex: 1 1 36%; position: sticky; top: 16px; }
}

/* ---------- Mon compte ---------- */
.woocommerce-MyAccount-navigation ul { list-style: none; padding: 0; display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 24px; }
.woocommerce-MyAccount-navigation li a {
	display: block; background: #fff; border: 1px solid var(--dp-line); border-radius: 999px; padding: 8px 16px; font-size: 12.5px; font-weight: 600; color: var(--dp-navy);
}
.woocommerce-MyAccount-navigation li.is-active a { background: var(--dp-blue); color: #fff; border-color: var(--dp-blue); }
.woocommerce-Button, .button.woocommerce-Button {
	background: var(--dp-blue); color: #fff !important; border: none; border-radius: 8px; padding: 11px 18px; font-weight: 700; font-size: 13px; cursor: pointer;
}

@media (min-width: 1024px) {
	.woocommerce-cart .col2-set, .woocommerce-checkout .col2-set { display: flex; gap: 40px; align-items: flex-start; }
	.woocommerce-checkout .col-1 { flex: 1 1 55%; }
	.woocommerce-checkout .col-2 { flex: 1 1 40%; }
}
.dp-fallback-item { padding: 20px 0; border-bottom: 1px solid var(--dp-line); }
.dp-fallback-item h2 { font-size: 18px; margin-bottom: 8px; }
.dp-fallback-item h2 a { color: var(--dp-navy); }
.dp-fallback-thumb { display: block; margin-bottom: 12px; border-radius: 10px; overflow: hidden; }
.dp-fallback-excerpt { font-size: 14px; color: var(--dp-muted); line-height: 1.6; }

.dp-footer { background: var(--dp-navy); color: #fff; padding: 40px 16px 20px; margin-top: 20px; }
.dp-footer-inner { max-width: 1280px; margin: 0 auto; font-size: 12.5px; }
.dp-footer a { color: rgba(255,255,255,.82); }
.dp-footer-cols { display: grid; grid-template-columns: 1fr; gap: 28px; margin-bottom: 28px; }
.dp-footer-col { display: flex; flex-direction: column; gap: 9px; }
.dp-footer-col strong { color: #fff; font-size: 13px; margin-bottom: 4px; }
.dp-footer-col p { color: rgba(255,255,255,.7); line-height: 1.6; margin: 0; }
.dp-footer-col span { color: rgba(255,255,255,.7); }
.dp-footer-bottom { border-top: 1px solid rgba(255,255,255,.15); padding-top: 18px; color: rgba(255,255,255,.6); display: flex; flex-wrap: wrap; gap: 6px 16px; justify-content: space-between; align-items: center; }
.dp-footer-legal { display: flex; gap: 16px; }
.dp-footer-legal a { color: rgba(255,255,255,.6); text-decoration: underline; }
@media (min-width: 720px) { .dp-footer-cols { grid-template-columns: repeat(4, 1fr); } }

.dp-whatsapp {
	position: fixed; right: 16px; bottom: 16px; width: 50px; height: 50px; border-radius: 50%;
	background: #25A25A; color: #fff; display: flex; align-items: center; justify-content: center;
	box-shadow: 0 4px 10px rgba(0,0,0,.2); z-index: 50;
}
.dp-cart-float {
	position: fixed; right: 16px; bottom: 78px; width: 50px; height: 50px; border-radius: 50%;
	background: linear-gradient(135deg, var(--dp-teal), var(--dp-blue)); color: #fff; display: flex; align-items: center; justify-content: center;
	box-shadow: 0 4px 10px rgba(0,0,0,.2); z-index: 50;
}
.dp-cart-float-count {
	position: absolute; top: -4px; right: -4px; background: var(--dp-navy); color: #fff;
	font-size: 10.5px; font-weight: 700; font-style: normal; min-width: 18px; height: 18px; padding: 0 4px;
	border-radius: 999px; display: flex; align-items: center; justify-content: center; border: 2px solid #fff;
}

/* ---------- Pages boutique / catégorie / produit (WooCommerce natif restylé) ---------- */

.woocommerce-breadcrumb {
	max-width: 1280px; margin: 16px auto 0; padding: 0 16px;
	font-size: 12.5px; color: var(--dp-muted);
}
.woocommerce-breadcrumb a { color: var(--dp-muted); font-weight: 600; }
.woocommerce-breadcrumb a:first-child::before { content: "🏠 "; }
.dp-breadcrumb-sep { opacity: .5; margin: 0 2px; }

.woocommerce > h1.page-title,
.woocommerce-products-header__title {
	max-width: 1280px; margin: 10px auto 4px; padding: 0 16px;
	font-size: 24px; font-weight: 800; color: var(--dp-navy);
}
.term-description { max-width: 1280px; margin: 0 auto 10px; padding: 0 16px; color: var(--dp-muted); font-size: 13.5px; }

.woocommerce-result-count,
.woocommerce-ordering {
	max-width: 1280px; margin: 0 auto; padding: 10px 16px;
	font-size: 12.5px; color: var(--dp-muted);
}
.woocommerce-result-count { float: left; padding-right: 8px; }
.woocommerce-ordering { float: right; padding-left: 8px; }
.woocommerce-ordering select {
	border: 1px solid var(--dp-line); border-radius: 8px; padding: 7px 10px; font-family: inherit; color: var(--dp-navy);
}

ul.products {
	max-width: 1280px; margin: 0 auto !important; padding: 0 16px 40px !important;
	display: grid !important; grid-template-columns: repeat(var(--dp-cols-mobile, 2), minmax(0, 1fr)) !important; gap: 12px !important;
	list-style: none;
}
/* Le clearfix par défaut de WooCommerce (::before/::after) devient une
   case fantôme dans une grille CSS — on le neutralise. */
ul.products::before, ul.products::after { content: none !important; display: none !important; }
/* Un seul résultat : on évite la colonne vide à côté en le centrant sur une seule colonne. */
ul.products:has(li.product:only-child) {
	grid-template-columns: minmax(0, 260px) !important; justify-content: center !important;
}
ul.products li.product {
	background: #fff; border: 1px solid var(--dp-line); border-radius: 14px; overflow: hidden;
	box-shadow: 0 1px 3px rgba(11,37,69,.07), 0 6px 16px rgba(11,37,69,.05);
	padding: 0 !important; margin: 0 !important; text-align: center !important; position: relative;
	width: 100% !important; float: none !important; clear: none !important;
	transition: transform .18s ease, box-shadow .18s ease;
}
ul.products li.product:hover {
	transform: translateY(-3px);
	box-shadow: 0 4px 10px rgba(11,37,69,.09), 0 12px 24px rgba(11,37,69,.08);
}
ul.products li.product img {
	width: 100%; aspect-ratio: 1 / 1; object-fit: contain; padding: 16px; box-sizing: border-box; border-radius: 0 !important;
}
.dp-watermark, .dp-product-media, .woocommerce-product-gallery {
	position: relative; display: block; overflow: hidden;
}
.dp-watermark::after, .dp-product-media::after, .woocommerce-product-gallery::after {
	content: ""; position: absolute; inset: -25%; pointer-events: none; z-index: 1;
	background-image: url('../images/watermark-logo.png');
	background-repeat: repeat; background-size: 64px 33px;
	opacity: .08; transform: rotate(-28deg);
}
ul.products li.product .woocommerce-loop-product__title {
	padding: 0 12px; margin: 4px 0 6px; font-size: 13px; font-weight: 700; color: var(--dp-navy);
	line-height: 1.35; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; min-height: 2.6em;
	text-align: center;
}
ul.products li.product .price {
	padding: 0 12px; margin-bottom: 2px; font-size: 15px; font-weight: 800; color: var(--dp-teal); display: block;
	text-align: center;
}
ul.products li.product .price del { color: var(--dp-muted); font-weight: 500; opacity: .7; }
ul.products li.product .price ins { text-decoration: none; }
ul.products li.product .button {
	display: inline-block; margin: 12px auto 16px; background: linear-gradient(135deg, var(--dp-teal), var(--dp-blue));
	color: #fff !important; border: none; border-radius: 999px; padding: 10px 22px; font-size: 12.5px; font-weight: 700;
	text-align: center; box-shadow: 0 4px 10px rgba(14,107,118,.28); transition: transform .15s ease, box-shadow .15s ease;
}
ul.products li.product .button:hover { transform: translateY(-2px); box-shadow: 0 6px 14px rgba(14,107,118,.4); }
ul.products li.product .add_to_cart_button::before { content: "🛒 "; }
ul.products li.product .added_to_cart { display: block; margin: 0 12px 14px; font-size: 11.5px; text-align: center; }
ul.products li.product .onsale {
	position: absolute; top: 0; left: 12px; z-index: 2; background: var(--dp-blue); color: #fff;
	font-size: 10.5px; font-weight: 700; padding: 5px 9px 8px; min-height: 0; min-width: 0; line-height: 1.4;
	clip-path: polygon(0 0, 100% 0, 100% 78%, 50% 100%, 0 78%);
}
.dp-loop-cat {
	display: block; padding: 10px 12px 0; margin: 0; font-size: 9.5px; font-weight: 700; color: var(--dp-muted);
	text-transform: uppercase; letter-spacing: .06em; text-align: center;
}
ul.products li.product .star-rating { margin: 0 auto 2px; font-size: 11px; }

nav.woocommerce-pagination { max-width: 1280px; margin: 0 auto 40px; padding: 0 16px; text-align: center; }
nav.woocommerce-pagination ul { border: none !important; }
nav.woocommerce-pagination a, nav.woocommerce-pagination span {
	border: 1px solid var(--dp-line) !important; margin: 0 3px; border-radius: 8px !important; color: var(--dp-navy) !important;
}
nav.woocommerce-pagination .current { background: var(--dp-blue) !important; color: #fff !important; }

/* Fiche produit */
.woocommerce div.product {
	max-width: 1280px; margin: 10px auto 0; padding: 0 16px 40px; overflow: hidden;
}
.woocommerce div.product .woocommerce-product-gallery {
	background: #fff; border: 1px solid var(--dp-line); box-shadow: 0 1px 3px rgba(11,37,69,.07), 0 6px 16px rgba(11,37,69,.05);
	border-radius: 16px; padding: 20px;
	margin-bottom: 20px; float: none; width: auto;
}
.woocommerce div.product .summary { padding: 0; float: none; width: auto; }
.woocommerce div.product .product_title { font-size: 22px; font-weight: 800; color: var(--dp-navy); margin-bottom: 8px; }
.woocommerce div.product p.price, .woocommerce div.product span.price {
	font-size: 24px; font-weight: 800; color: var(--dp-navy);
}
.woocommerce div.product .woocommerce-product-details__short-description { color: var(--dp-muted); font-size: 14px; line-height: 1.6; margin: 14px 0; }
.woocommerce div.product form.cart { display: flex; align-items: center; gap: 12px; margin: 20px 0; }
.woocommerce div.product .quantity input {
	width: 60px; padding: 10px; border: 1px solid var(--dp-line); border-radius: 8px; font-family: inherit; text-align: center;
}
.woocommerce div.product .single_add_to_cart_button {
	background: var(--dp-blue) !important; color: #fff !important; border: none !important; border-radius: 10px !important;
	padding: 13px 26px !important; font-size: 14px !important; font-weight: 700 !important;
}
.woocommerce div.product .woocommerce-tabs { border-top: 1px solid var(--dp-line); padding-top: 20px; margin-top: 20px; }
.woocommerce div.product .woocommerce-tabs ul.tabs { border: none; padding: 0; display: flex; gap: 20px; margin-bottom: 16px; }
.woocommerce div.product .woocommerce-tabs ul.tabs li { border: none !important; background: none !important; padding: 0 !important; margin: 0 !important; }
.woocommerce div.product .woocommerce-tabs ul.tabs li a { color: var(--dp-muted); font-weight: 700; font-size: 13px; }
.woocommerce div.product .woocommerce-tabs ul.tabs li.active a { color: var(--dp-blue); }
.related.products { max-width: 1280px; margin: 0 auto; padding: 0 16px 40px; }
.related.products > h2 { font-size: 20px; font-weight: 800; color: var(--dp-navy); margin-bottom: 14px; }

/* ---------- Desktop (1024px+) ---------- */
@media (min-width: 1024px) {
	.dp-topbar { justify-content: center; font-size: 12px; padding: 8px 24px; overflow: visible; }
	.dp-topbar-track { animation: none; width: auto; }
	.dp-topbar-group[aria-hidden] { display: none; }
	.dp-topbar-group { padding: 0; }
	.dp-topbar-fill { display: block; flex-grow: 1; }
	.dp-topbar-phone { display: inline; }

	.dp-header { padding: 0 48px; height: 104px; }
	.dp-logo img { width: 64px; height: 64px; }
	.dp-logo strong { font-size: 20px; }
	.dp-menu-toggle { display: none; }
	.dp-logo { order: 0; }
	.dp-logo em { display: block; }
	.dp-search { order: 0; flex-basis: auto; flex-grow: 1; max-width: 620px; margin: 0 32px; }
	.dp-account-links { order: 0; }
	.dp-account-links a { flex-direction: column; gap: 3px; font-size: 11px; font-weight: 600; }
	.dp-account-links span { display: block; }
	.dp-lang-switch { order: 0; margin-left: 24px; }

	.dp-nav ul { display: flex; flex-direction: row; justify-content: center; gap: 48px; padding: 16px 48px; }
	.dp-nav a { padding: 0; font-size: 15px; letter-spacing: .04em; text-transform: uppercase; }

	.dp-hero-row { flex-direction: row; padding: 24px 48px 0; gap: 20px; align-items: flex-start; }
	.dp-shop-row { padding: 24px 48px 0; display: flex; gap: 24px; align-items: flex-start; }
	.dp-shop-row-sidebar { display: block; width: 236px; flex-shrink: 0; }
	.dp-shop-row-sidebar .dp-cat-sidebar { max-height: none; position: sticky; top: 16px; }
	.dp-shop-row-main { flex: 1; min-width: 0; }
	.dp-cat-sidebar a.is-active { background: var(--dp-hover); color: var(--dp-blue); }
	.dp-cat-sidebar a.is-active span:not(.dp-cat-emoji) { color: var(--dp-blue); }
	.dp-cat-sidebar {
		display: block; width: 236px; flex-shrink: 0; background: #fff;
		border: 1px solid var(--dp-line); box-shadow: 0 1px 3px rgba(11,37,69,.06);
		border-radius: 14px; padding: 10px; align-self: flex-start;
		max-height: 400px; overflow-y: auto; scrollbar-width: thin;
	}
	.dp-cat-sidebar::-webkit-scrollbar { width: 6px; }
	.dp-cat-sidebar::-webkit-scrollbar-thumb { background: var(--dp-line); border-radius: 999px; }
	.dp-cat-sidebar ul { list-style: none; margin: 0; padding: 0; }
	.dp-cat-sidebar a {
		display: flex; align-items: center; gap: 10px; padding: 10px; border-radius: 8px;
		color: var(--dp-text); font-size: 13px; font-weight: 600;
	}
	.dp-cat-sidebar a:hover { background: var(--dp-hover); }
	.dp-cat-sidebar a span:not(.dp-cat-emoji) { flex-grow: 1; }
	.dp-cat-sidebar .dp-chevron { color: #B7C4D4; }

	.dp-hero { flex-grow: 1; }
	.dp-hero img { height: 400px; }

	.dp-banner2 { margin: 0 48px 26px; }
	.dp-cat-carousel { padding: 8px 0 26px; }
	.dp-cat-carousel-item { width: 120px; }
	.dp-cat-carousel-media { width: 110px; height: 110px; }
	.dp-cat-emoji--lg { font-size: 44px; }
	.dp-cat-carousel-name { font-size: 13px; }

	.dp-brand-carousel { margin: 26px 48px; padding: 20px 40px; }
	.dp-brand-item img { height: 40px; max-width: 130px; }
	.dp-section-head { padding: 4px 48px; }
	.dp-section-head h2 { font-size: 22px; }

	.dp-product-grid { padding: 0 48px 40px; grid-template-columns: repeat(var(--dp-cols-desktop, 4), minmax(0, 1fr)); gap: 16px; }

	ul.products { grid-template-columns: repeat(var(--dp-cols-desktop, 4), minmax(0, 1fr)) !important; padding: 0 48px 40px !important; gap: 16px !important; }
	.woocommerce-breadcrumb, .woocommerce > h1.page-title, .woocommerce-products-header__title,
	.term-description, .woocommerce-result-count, .woocommerce-ordering, nav.woocommerce-pagination { padding-left: 48px; padding-right: 48px; }

	.woocommerce div.product { padding: 0 48px 60px; }
	.woocommerce div.product .woocommerce-product-gallery { float: left; width: 48%; margin-bottom: 0; }
	.woocommerce div.product .summary { float: right; width: 48%; }
	.related.products { padding: 0 48px 60px; }
}

@media (min-width: 1280px) {
	.dp-product-grid { grid-template-columns: repeat(var(--dp-cols-large, 6), minmax(0, 1fr)); }
	ul.products { grid-template-columns: repeat(var(--dp-cols-large, 6), minmax(0, 1fr)) !important; }
}

/* ---------- Page Blog (liste des articles) ---------- */
.dp-blog-inner { max-width: 1160px; margin: 0 auto; padding: 32px 16px 60px; }
.dp-blog-head { max-width: 640px; margin: 0 auto 36px; text-align: center; }
.dp-blog-head h1 { font-size: 26px; font-weight: 800; color: var(--dp-navy); margin: 10px 0 12px; }
.dp-blog-head p { font-size: 14px; color: var(--dp-muted); line-height: 1.6; }
.dp-blog-grid { display: grid; grid-template-columns: 1fr; gap: 22px; }
.dp-blog-card {
	display: block; border: 1px solid var(--dp-line); border-radius: 16px; overflow: hidden;
	box-shadow: 0 1px 3px rgba(11,37,69,.06); transition: transform .15s ease, box-shadow .15s ease;
}
.dp-blog-card:hover { transform: translateY(-3px); box-shadow: 0 8px 20px rgba(11,37,69,.1); }
.dp-blog-card img { width: 100%; height: 190px; object-fit: cover; display: block; }
.dp-blog-card-placeholder { width: 100%; height: 190px; display: flex; align-items: center; justify-content: center; font-size: 44px; background: var(--dp-hover); }
.dp-blog-card-body { padding: 18px 20px 22px; }
.dp-blog-card-meta { display: flex; align-items: center; gap: 10px; font-size: 11.5px; color: var(--dp-muted); margin-bottom: 10px; flex-wrap: wrap; }
.dp-blog-card-body h2 { font-size: 17px; font-weight: 800; color: var(--dp-navy); margin: 0 0 8px; line-height: 1.35; }
.dp-blog-card-body p { font-size: 13px; color: var(--dp-text); line-height: 1.6; margin: 0 0 14px; }
.dp-blog-card-link { font-size: 12.5px; font-weight: 700; color: var(--dp-blue); }
.dp-blog-pagination { display: flex; justify-content: center; gap: 6px; margin-top: 40px; flex-wrap: wrap; }
.dp-blog-pagination span, .dp-blog-pagination a {
	display: inline-flex; align-items: center; justify-content: center; min-width: 36px; height: 36px; padding: 0 10px;
	border: 1px solid var(--dp-line); border-radius: 8px; font-size: 13px; color: var(--dp-navy);
}
.dp-blog-pagination .current { background: var(--dp-blue); color: #fff !important; border-color: var(--dp-blue); }

@media (min-width: 640px) { .dp-blog-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 960px) { .dp-blog-grid { grid-template-columns: repeat(3, 1fr); } }

/* ---------- Grille "Équipements" ---------- */
.dp-equip-intro { max-width: 640px; margin: 0 auto 32px; text-align: center; }
.dp-equip-intro p { font-size: 14.5px; color: var(--dp-muted); line-height: 1.6; }
.dp-equip-grid { display: grid; grid-template-columns: 1fr; gap: 26px; }
.dp-equip-card {
	display: block; border: 1px solid var(--dp-line); border-radius: 18px; overflow: hidden;
	box-shadow: 0 1px 3px rgba(11,37,69,.06); transition: transform .18s ease, box-shadow .18s ease;
}
.dp-equip-card:hover { transform: translateY(-4px); box-shadow: 0 10px 24px rgba(11,37,69,.12); }
.dp-equip-card-thumb { aspect-ratio: 16/10; background: var(--dp-hover); overflow: hidden; }
.dp-equip-card-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.dp-equip-card-body { padding: 22px 24px 26px; }
.dp-equip-card-body h2 { font-size: 20px; font-weight: 800; color: var(--dp-navy); margin: 10px 0 8px; }
.dp-equip-card-body p { font-size: 13.5px; color: var(--dp-muted); line-height: 1.6; margin: 0 0 16px; }
.dp-equip-card-link { display: inline-flex; align-items: center; gap: 6px; font-size: 13px; font-weight: 700; color: var(--dp-blue); }

@media (min-width: 720px) {
	.dp-equip-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ---------- Page équipement AJ12 ---------- */
.dp-aj12 { overflow: hidden; }
.dp-aj12 h1, .dp-aj12 h2 { color: var(--dp-navy); }
.dp-aj12-hero { display: flex; flex-direction: column; padding: 32px 16px; max-width: 1280px; margin: 0 auto; gap: 24px; }
.dp-aj12-kicker { display: inline-block; font-size: 11px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--dp-teal); margin-bottom: 8px; }
.dp-aj12-hero h1 { font-size: 46px; font-weight: 800; color: var(--dp-navy); line-height: 1; margin: 0 0 6px; }
.dp-aj12-tagline { font-size: 15px; font-weight: 700; color: var(--dp-blue); margin: 0 0 14px; }
.dp-aj12-hero-text > p { font-size: 14.5px; line-height: 1.7; color: var(--dp-text); max-width: 480px; }
.dp-aj12-badges { display: flex; gap: 14px; flex-wrap: wrap; margin: 20px 0; }
.dp-aj12-badge { display: flex; flex-direction: column; }
.dp-aj12-badge strong { font-size: 19px; font-weight: 800; color: var(--dp-navy); }
.dp-aj12-badge span { font-size: 11px; color: var(--dp-muted); font-weight: 600; }
.dp-aj12-cta {
	display: inline-flex; align-items: center; gap: 8px; background: linear-gradient(135deg, var(--dp-teal), var(--dp-blue));
	color: #fff !important; font-weight: 700; font-size: 14px; padding: 13px 26px; border-radius: 999px;
	box-shadow: 0 6px 16px rgba(14,107,118,.28); transition: transform .15s ease;
}
.dp-aj12-cta:hover { transform: translateY(-2px); }
.dp-aj12-cta--white { background: #fff; color: var(--dp-navy) !important; }
.dp-aj12-hero-photo { border-radius: 20px; overflow: hidden; line-height: 0; }
.dp-aj12-hero-photo img { width: 100%; height: auto; display: block; }

.dp-aj12-services {
	display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; max-width: 1280px; margin: 0 auto;
	padding: 24px 16px; border-top: 1px solid var(--dp-line); border-bottom: 1px solid var(--dp-line);
}
.dp-aj12-service { display: flex; align-items: center; gap: 10px; }
.dp-aj12-service svg { color: var(--dp-teal); flex-shrink: 0; }
.dp-aj12-service strong { display: block; font-size: 12.5px; color: var(--dp-navy); }
.dp-aj12-service span { font-size: 11px; color: var(--dp-muted); }

.dp-aj12-split { display: flex; flex-direction: column; gap: 24px; max-width: 1280px; margin: 0 auto; padding: 48px 16px; }
.dp-aj12-split h2 { font-size: 24px; font-weight: 800; margin: 0 0 14px; }
.dp-aj12-split > div > p { font-size: 14px; line-height: 1.7; color: var(--dp-text); margin: 0 0 18px; }
.dp-aj12-check { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 12px; }
.dp-aj12-check li { position: relative; padding-left: 26px; font-size: 13.5px; color: var(--dp-text); line-height: 1.5; }
.dp-aj12-check li::before { content: "✓"; position: absolute; left: 0; top: 0; color: var(--dp-teal); font-weight: 800; }
.dp-aj12-split-photo { position: relative; border-radius: 18px; overflow: hidden; background: var(--dp-hover); }
.dp-aj12-split-photo img { width: 100%; height: auto; display: block; }
.dp-aj12-split-photo span { display: block; padding: 10px 16px; font-size: 12px; color: var(--dp-muted); text-align: center; }

.dp-aj12-dark { background: var(--dp-navy); color: #fff; display: flex; flex-direction: column; gap: 24px; padding: 48px 16px; }
.dp-aj12-dark-photo img { width: 100%; max-width: 420px; margin: 0 auto; display: block; border-radius: 16px; }
.dp-aj12-dark-text { max-width: 1280px; margin: 0 auto; text-align: center; }
.dp-aj12-dark-text h2 { color: #fff; font-size: 24px; font-weight: 800; margin: 0 0 12px; }
.dp-aj12-dark-text p { color: rgba(255,255,255,.75); font-size: 14px; margin: 0 0 24px; }
.dp-aj12-stat-row { list-style: none; margin: 0; padding: 0; display: flex; justify-content: center; gap: 32px; flex-wrap: wrap; }
.dp-aj12-stat-row strong { display: block; font-size: 20px; font-weight: 800; }
.dp-aj12-stat-row span { font-size: 11px; color: rgba(255,255,255,.65); }

.dp-aj12-grid3 { display: grid; grid-template-columns: 1fr; gap: 20px; max-width: 1280px; margin: 0 auto; padding: 48px 16px; }
.dp-aj12-grid3-item img { width: 100%; aspect-ratio: 4/3; object-fit: cover; border-radius: 14px; margin-bottom: 12px; }
.dp-aj12-grid3-item strong { display: block; font-size: 14.5px; color: var(--dp-navy); margin-bottom: 4px; }
.dp-aj12-grid3-item span { font-size: 12.5px; color: var(--dp-muted); line-height: 1.5; }

.dp-aj12-water { max-width: 1280px; margin: 0 auto; padding: 20px 16px 48px; }
.dp-aj12-water h2 { font-size: 22px; font-weight: 800; margin: 0 0 20px; text-align: center; }
.dp-aj12-water-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.dp-aj12-water-grid img { width: 100%; aspect-ratio: 4/3; object-fit: cover; border-radius: 12px; margin-bottom: 8px; background: var(--dp-hover); }
.dp-aj12-water-grid strong { display: block; font-size: 12.5px; color: var(--dp-navy); }
.dp-aj12-water-grid span { font-size: 11px; color: var(--dp-muted); }

.dp-aj12-bottom { display: flex; flex-direction: column; gap: 20px; max-width: 1280px; margin: 0 auto; padding: 20px 16px 60px; }
.dp-aj12-specs { background: var(--dp-hover); border-radius: 18px; padding: 28px 24px; }
.dp-aj12-specs h2 { font-size: 19px; font-weight: 800; margin: 0 0 16px; }
.dp-aj12-specs ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.dp-aj12-specs li { font-size: 13px; color: var(--dp-text); padding-left: 18px; position: relative; }
.dp-aj12-specs li::before { content: ""; position: absolute; left: 0; top: 7px; width: 6px; height: 6px; border-radius: 50%; background: var(--dp-teal); }
.dp-aj12-cta-box { background: linear-gradient(135deg, var(--dp-teal), var(--dp-navy)); border-radius: 18px; padding: 32px 24px; color: #fff; text-align: center; }
.dp-aj12-cta-box h2 { color: #fff; font-size: 20px; font-weight: 800; margin: 0 0 10px; }
.dp-aj12-cta-box p { font-size: 13.5px; opacity: .9; margin: 0 0 20px; line-height: 1.6; }
.dp-aj12-trust-row { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; margin-top: 18px; font-size: 11.5px; opacity: .9; }

@media (min-width: 900px) {
	.dp-aj12-hero { flex-direction: row; align-items: center; padding: 56px 48px; gap: 48px; }
	.dp-aj12-hero-text { flex: 0 0 42%; }
	.dp-aj12-hero-photo { flex: 1; }
	.dp-aj12-hero h1 { font-size: 64px; }
	.dp-aj12-services { grid-template-columns: repeat(4, 1fr); padding: 28px 48px; }
	.dp-aj12-split { flex-direction: row; align-items: center; padding: 72px 48px; gap: 64px; }
	.dp-aj12-split > div { flex: 1; }
	.dp-aj12-split--reverse { flex-direction: row-reverse; }
	.dp-aj12-dark { flex-direction: row-reverse; align-items: center; padding: 64px 48px; gap: 64px; }
	.dp-aj12-dark-photo { flex: 0 0 34%; }
	.dp-aj12-dark-text { flex: 1; text-align: left; }
	.dp-aj12-dark-text h2 { font-size: 30px; }
	.dp-aj12-stat-row { justify-content: flex-start; }
	.dp-aj12-grid3 { grid-template-columns: repeat(3, 1fr); padding: 72px 48px; }
	.dp-aj12-water { padding: 20px 48px 72px; }
	.dp-aj12-water-grid { grid-template-columns: repeat(6, 1fr); }
	.dp-aj12-bottom { flex-direction: row; padding: 20px 48px 80px; }
	.dp-aj12-specs, .dp-aj12-cta-box { flex: 1; }
	.dp-aj12-cta-box { text-align: left; }
	.dp-aj12-trust-row { justify-content: flex-start; }
}
