:root {
--pv-font: "pt-sans-pro", system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}
html {
font-family: var(--pv-font);
}
body,
button,
input,
select,
optgroup,
textarea {
font-family: var(--pv-font);
}:root {
--pv-rust: #ba4307;
--pv-rust-dark: #97350a;
--pv-ink: #474746;
--pv-sand: #e8cbb4;
--pv-muted: #aaaaaa;
--pv-line: #ececec;
--pv-bg: #ffffff;
--pv-header-h: 92px;
--pv-radius: 22px;
--pv-shadow: 0 12px 30px -8px rgba(23, 23, 23, .14), 0 4px 12px rgba(23, 23, 23, .06);
} .pv-header {
position: sticky;
top: 0;
z-index: 100;
background: var(--pv-bg);
border-bottom: 1px solid transparent;
transition: box-shadow .3s ease, border-color .3s ease;
}
.pv-header.is-stuck {
border-bottom-color: var(--pv-line);
box-shadow: 0 10px 30px -22px rgba(23, 23, 23, .35);
}
.pv-header__inner {
position: relative;
display: flex;
align-items: center;
justify-content: space-between;
gap: 24px;
max-width: 1600px;
margin: 0 auto;
padding: 0 40px;
height: var(--pv-header-h);
} .pv-logo {
position: relative;
z-index: 6;
display: inline-flex;
align-items: center;
gap: 10px;
text-decoration: none;
flex: 0 0 auto;
}
.pv-logo img { display: block; height: auto; }
.pv-logo__word {
font-weight: 700;
font-size: 30px;
letter-spacing: .5px;
line-height: 1;
font-family: var(--pv-font);
}
.pv-logo__pavi  { color: var(--pv-ink); }
.pv-logo__terra { color: var(--pv-rust); }
.pv-logo__mark {
width: 34px; height: 34px;
border-radius: 7px;
background: linear-gradient(135deg, var(--pv-sand) 0 50%, var(--pv-ink) 50% 100%);
position: relative;
display: inline-block;
}
.pv-logo__tile {
position: absolute;
left: 50%; top: 50%;
width: 9px; height: 9px;
transform: translate(-50%, -50%);
background: var(--pv-rust);
border-radius: 50%;
} .pv-nav {
position: absolute;
left: 50%;
top: 16px;
transform: translateX(-50%);
width: 620px;
max-width: calc(100vw - 90px);
background: #fff;
border-radius: 999px;
box-shadow: var(--pv-shadow);
z-index: 5;
transition: width .38s cubic-bezier(.4, 0, .2, 1),
border-radius .3s ease, box-shadow .3s ease;
}
.pv-nav.is-open {
width: min(1120px, calc(100vw - 64px));
border-radius: 26px;
box-shadow: 0 34px 70px -34px rgba(23, 23, 23, .38), 0 8px 22px rgba(23, 23, 23, .08);
}
.pv-nav__list {
display: flex;
align-items: center;
justify-content: center;
gap: 48px;
margin: 0;
padding: 16px 40px;
list-style: none;
}
.pv-nav__item { position: relative; }
.pv-nav__link {
display: inline-block;
text-decoration: none;
color: var(--pv-ink);
font-size: 14px;
font-weight: 600;
white-space: nowrap;
transition: color .2s ease;
}
.pv-nav__link:hover,
.pv-nav__link.is-active { color: var(--pv-rust); } .pv-nav__panels {
display: grid;
grid-template-rows: 0fr;
opacity: 0;
transition: grid-template-rows .42s cubic-bezier(.4, 0, .2, 1), opacity .3s ease;
}
.pv-nav.is-open .pv-nav__panels {
grid-template-rows: 1fr;
opacity: 1;
}
.pv-nav__panels > .pv-mega { min-height: 0; overflow: hidden; }
.pv-mega {
position: relative;
padding: 6px 60px 44px;
}
.pv-mega[hidden] { display: none; }
.pv-mega__surtitre {
position: absolute;
left: 20px;
top: 6px;
writing-mode: vertical-rl;
transform: rotate(180deg);
color: #d4d4d4;
font-weight: 700;
font-size: 20px;
letter-spacing: 1px;
line-height: 1.3;
white-space: normal;
max-height: 142px;
text-align: right;
}
.pv-mega__cols {
display: flex;
justify-content: center;
gap: 40px;
padding: 0 30px 0 44px;
}
.pv-mega__col { flex: 0 1 200px; min-width: 0; }
.pv-mega__titre {
display: block;
font-size: 22px;
font-weight: 800;
color: var(--pv-ink);
text-decoration: none;
margin-bottom: 18px;
}
a.pv-mega__titre:hover { color: var(--pv-rust); }
.pv-mega__links { list-style: none; margin: 0; padding: 0; }
.pv-mega__links li { margin-bottom: 12px; }
.pv-mega__links a {
text-decoration: none;
color: var(--pv-muted);
font-size: 16px;
transition: color .18s ease;
}
.pv-mega__links a:hover { color: var(--pv-rust); } .pv-mega__socials {
position: absolute;
right: 26px;
top: 10px;
display: flex;
flex-direction: column;
gap: 12px;
}
.pv-social {
display: inline-flex;
align-items: center;
justify-content: center;
width: 34px;
height: 34px;
border: 1.5px solid var(--pv-rust);
border-radius: 9px;
color: var(--pv-rust);
transition: background .18s ease, color .18s ease;
}
.pv-social .pv-icon { width: 18px; height: 18px; }
.pv-social:hover { background: var(--pv-rust); color: #fff; } .pv-actions {
position: relative;
z-index: 6;
display: flex;
align-items: center;
gap: 22px;
flex: 0 0 auto;
}
.pv-action {
display: inline-flex;
align-items: center;
justify-content: center;
background: none;
border: 0;
padding: 0;
cursor: pointer;
color: var(--pv-rust);
text-decoration: none;
transition: color .18s ease, transform .18s ease;
}
.pv-action:hover { color: var(--pv-rust-dark); transform: translateY(-1px); }
.pv-action--disabled { opacity: .45; }
.pv-action--disabled:hover { opacity: .7; color: var(--pv-rust); transform: none; } .pv-action[data-pv-tooltip] { position: relative; }
.pv-action[data-pv-tooltip]::after {
content: attr(data-pv-tooltip);
position: absolute;
top: calc(100% + 12px);
left: 50%;
transform: translateX(-50%) translateY(-4px);
white-space: nowrap;
background: #fff;
color: var(--pv-rust);
font-size: 12px;
font-weight: 700;
line-height: 1;
padding: 6px 11px;
border-radius: 8px;
box-shadow: 0 8px 20px -8px rgba(23, 23, 23, .28);
opacity: 0;
pointer-events: none;
transition: opacity .18s ease, transform .18s ease;
z-index: 50;
}
.pv-action[data-pv-tooltip]:hover::after,
.pv-action[data-pv-tooltip]:focus-visible::after {
opacity: 1;
transform: translateX(-50%) translateY(0);
} .pv-mega--search { padding-top: 26px; }
.pv-search-panel { margin: 0 auto 22px; max-width: 620px; }
.pv-search-panel__field {
display: flex;
align-items: center;
gap: 12px;
padding: 14px 22px;
border: 1.5px solid var(--pv-sand);
border-radius: 999px;
background: #fff;
transition: border-color .18s ease;
}
.pv-search-panel__field:focus-within { border-color: var(--pv-rust); }
.pv-search-panel__field .pv-icon { width: 20px; height: 20px; color: var(--pv-rust); flex: 0 0 auto; }
.pv-search-panel__input {
flex: 1 1 auto;
border: 0;
outline: none;
background: transparent;
font-family: var(--pv-font);
font-size: 15px;
color: var(--pv-ink);
}
.pv-search-panel__input::placeholder { color: #c9c4bc; }
.pv-search-panel__quick {
display: flex;
align-items: center;
justify-content: center;
flex-wrap: wrap;
gap: 12px 40px;
}
.pv-search-panel__quick a {
color: var(--pv-ink);
font-size: 14px;
text-decoration: none;
transition: color .18s ease;
}
.pv-search-panel__quick a:hover { color: var(--pv-rust); } .pv-search-panel__results {
max-width: 620px;
margin: -8px auto 22px;
max-height: 55vh;
overflow-y: auto;
background: #fff;
border: 1.5px solid var(--pv-sand);
border-radius: 20px;
padding: 10px;
}
.pv-search-results__group + .pv-search-results__group { margin-top: 6px; }
.pv-search-results__label {
margin: 10px 14px 6px;
color: var(--pv-rust);
font-size: 11px;
font-weight: 700;
text-transform: uppercase;
letter-spacing: .08em;
}
.pv-search-results__list { list-style: none; margin: 0; padding: 0; }
.pv-search-result {
display: flex;
align-items: center;
gap: 14px;
padding: 10px 14px;
border-radius: 14px;
text-decoration: none;
transition: background .16s ease;
}
.pv-search-result:hover { background: #faf5f0; }
.pv-search-result__thumb {
flex: 0 0 auto;
display: flex;
align-items: center;
justify-content: center;
width: 44px;
height: 44px;
border-radius: 10px;
background: #faf9f7;
overflow: hidden;
}
.pv-search-result__thumb img { max-width: 100%; max-height: 100%; object-fit: contain; }
.pv-search-result__body { min-width: 0; display: flex; flex-direction: column; gap: 3px; }
.pv-search-result__title {
color: var(--pv-ink);
font-weight: 700;
font-size: 14px;
line-height: 1.3;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}
.pv-search-result__code { font-size: .7em; color: #9a9a9a; margin-left: 2px; }
.pv-search-result__price { color: var(--pv-rust); font-size: 13px; font-weight: 700; }
.pv-search-result__excerpt {
color: #9a9a9a;
font-size: 13px;
line-height: 1.4;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}
.pv-search-results__loading,
.pv-search-results__empty {
margin: 0;
padding: 18px 14px;
text-align: center;
color: #9a9a9a;
font-size: 14px;
}
.pv-icon { width: 24px; height: 24px; display: block; } .pv-action--cart { position: relative; }
.pv-cart-count {
position: absolute;
top: -7px;
right: -9px;
min-width: 18px;
height: 18px;
padding: 0 5px;
border-radius: 9px;
background: var(--pv-rust);
color: #fff;
font-family: var(--pv-font);
font-size: 11px;
font-weight: 700;
line-height: 18px;
text-align: center;
}
.pv-cart-count[data-cart-count="0"] { display: none; } .pv-account { position: relative; }
.pv-account .pv-action { position: relative; }
.pv-account .pv-action::before {
content: "";
position: absolute;
inset: -10px;
border-radius: 50%;
background: #fff;
box-shadow: 0 10px 26px -10px rgba(23, 23, 23, .32);
opacity: 0;
z-index: -1;
transition: opacity .2s ease;
}
.pv-account:hover .pv-action::before,
.pv-account:focus-within .pv-action::before { opacity: 1; }
.pv-account-menu {
position: absolute;
top: calc(100% + 16px);
right: -12px;
transform: translateY(8px);
z-index: 120;
width: 264px;
padding: 26px 26px 24px;
background: #fff;
border-radius: 22px;
box-shadow: 0 34px 66px -30px rgba(23, 23, 23, .38), 0 6px 16px rgba(23, 23, 23, .06);
display: flex;
flex-direction: column;
gap: 14px;
opacity: 0;
visibility: hidden;
pointer-events: none;
transition: opacity .25s ease, transform .25s ease, visibility .25s;
}
.pv-account-menu::before { content: "";
position: absolute;
left: 0;
right: 0;
top: -16px;
height: 16px;
}
.pv-account:hover .pv-account-menu,
.pv-account:focus-within .pv-account-menu {
opacity: 1;
visibility: visible;
pointer-events: auto;
transform: translateY(0);
}
.pv-account-menu__email {
color: var(--pv-ink);
font-weight: 800;
font-size: 15px;
margin-bottom: 4px;
word-break: break-all;
}
.pv-account-menu__item {
color: var(--pv-ink);
font-size: 15px;
line-height: 1.1;
text-decoration: none;
transition: color .18s ease, transform .18s ease;
}
a.pv-account-menu__item:hover { color: var(--pv-rust); transform: translateX(3px); }
.pv-account-menu__item.is-disabled { display: none; }
.pv-account-menu__sep { height: 12px; }
.pv-burger { display: none; } .pv-mobile {
position: fixed;
inset: 0;
z-index: 200;
background: var(--pv-bg);
display: flex;
flex-direction: column;
padding: 22px 24px max(28px, env(safe-area-inset-bottom));
opacity: 0;
transform: translateY(-8px);
transition: opacity .3s ease, transform .3s ease;
overflow-y: auto;
overflow-x: hidden;
}
.pv-mobile.is-open { opacity: 1; transform: none; }
.pv-mobile[hidden] { display: none; } .pv-mobile::before,
.pv-mobile::after {
content: "";
position: fixed;
width: 340px;
height: 340px;
border-radius: 50%;
filter: blur(70px);
pointer-events: none;
z-index: -1;
}
.pv-mobile::before { top: -100px; right: -120px; background: rgba(186, 67, 7, .10); }
.pv-mobile::after { bottom: -80px; left: -120px; background: rgba(232, 203, 180, .6); }
.pv-mobile__top {
display: flex;
align-items: center;
justify-content: space-between;
flex: 0 0 auto;
margin-bottom: 28px;
}
.pv-mobile__top .pv-action { color: var(--pv-ink); }
.pv-mobile__top .pv-action:hover { color: var(--pv-rust); }
.pv-logo--mobile img { display: block; } .pv-mobile__nav { flex: 1 1 auto; }
.pv-mobile__list { list-style: none; margin: 0; padding: 0; }
.pv-mobile__item { border-bottom: 1px solid var(--pv-line, #ececec); }
.pv-mobile__item:first-child { border-top: 1px solid var(--pv-line, #ececec); }
a.pv-mobile__link,
button.pv-mobile__link {
display: flex;
align-items: center;
justify-content: space-between;
gap: 12px;
width: 100%;
background: none;
border: 0;
padding: 18px 2px;
font-family: var(--pv-font);
font-size: 21px;
font-weight: 700;
color: var(--pv-ink);
text-decoration: none;
text-align: left;
cursor: pointer;
transition: color .18s ease;
}
button.pv-mobile__link:active,
a.pv-mobile__link:active { color: var(--pv-rust); }
.pv-mobile__chevron {
flex: 0 0 auto;
display: inline-flex;
color: var(--pv-muted);
transition: transform .3s cubic-bezier(.4, 0, .2, 1), color .18s ease;
}
.pv-mobile__chevron .pv-icon { width: 18px; height: 18px; }
button.pv-mobile__link[aria-expanded="true"] { color: var(--pv-rust); }
button.pv-mobile__link[aria-expanded="true"] .pv-mobile__chevron { color: var(--pv-rust); transform: rotate(90deg); } .pv-mobile__panel {
display: grid;
grid-template-rows: 0fr;
transition: grid-template-rows .38s cubic-bezier(.4, 0, .2, 1);
}
.pv-mobile__item:has(button.pv-mobile__link[aria-expanded="true"]) .pv-mobile__panel {
grid-template-rows: 1fr;
}
.pv-mobile__panel-inner { overflow: hidden; }
.pv-mobile__group {
display: block;
font-weight: 700;
color: var(--pv-rust);
text-decoration: none;
margin: 16px 0 6px;
font-size: 13px;
text-transform: uppercase;
letter-spacing: .06em;
}
.pv-mobile__sub { list-style: none; margin: 0 0 4px; padding: 0; }
.pv-mobile__sub a {
display: block;
color: var(--pv-ink);
text-decoration: none;
font-size: 16px;
padding: 9px 2px;
}
.pv-mobile__sub a:active { color: var(--pv-rust); } .pv-mobile__cta { flex: 0 0 auto; padding-top: 24px; }
.pv-mobile__cta .pv-btn {
width: 100%;
max-width: none;
margin: 0;
padding: 17px 24px;
}
.pv-mobile__socials {
flex: 0 0 auto;
display: flex;
justify-content: center;
gap: 22px;
padding-top: 26px;
margin-top: 26px;
border-top: 1px solid var(--pv-line, #ececec);
}
.pv-mobile__socials a {
color: var(--pv-muted);
font-family: var(--pv-font);
font-size: 13px;
font-weight: 600;
text-transform: uppercase;
letter-spacing: .04em;
text-decoration: none;
}
.pv-mobile__socials a:active { color: var(--pv-rust); } @media (max-width: 1100px) {
.pv-nav { display: none; }
.pv-burger { display: inline-flex; }
.pv-header__inner { padding: 0 16px; gap: 8px; }
:root { --pv-header-h: 68px; }
.pv-logo__word { font-size: 20px; } .pv-logo img { height: 18px !important; width: auto !important; }
.pv-actions { gap: 16px; } .pv-actions .pv-action:not([data-pv-search]):not([data-pv-burger]):not([data-pv-cart]) { display: none; }
.pv-account { display: none; } .pv-nav.is-open {
display: block;
position: fixed;
inset: 0;
left: 0;
top: 0;
transform: none;
z-index: 250;
width: 100%;
max-width: none;
border-radius: 0;
box-shadow: none;
overflow-y: auto;
}
.pv-nav.is-open .pv-nav__list { display: none; }
.pv-nav.is-open .pv-nav__panels { grid-template-rows: 1fr; opacity: 1; }
.pv-nav.is-open .pv-mega:not(.pv-mega--search) { display: none; }
.pv-mega--search { position: relative; padding: 90px 24px 40px; }
.pv-search-panel__close {
position: absolute;
top: 22px;
right: 22px;
color: var(--pv-ink);
}
}
@media (min-width: 1101px) {
.pv-search-panel__close { display: none; }
}
@media (prefers-reduced-motion: reduce) {
.pv-header, .pv-mega, .pv-action, .pv-mobile { transition: none; }
}.pv-footer {
background: #fff;
color: var(--pv-ink);
font-size: 16px;
}
.pv-footer__inner {
max-width: 1840px; margin: 0 auto;
padding: 0 40px;
} .pv-footer__top {
display: grid;
grid-template-columns: 1fr 1.25fr 0.95fr;
gap: 40px;
border-top: 1.5px solid var(--pv-rust);
padding: 52px 0 44px;
}
.pv-footer__title {
color: var(--pv-rust);
font-size: 32px;
font-weight: 800;
margin: 0 0 26px;
} .pv-footer__address {
font-style: normal;
line-height: 1.75;
color: var(--pv-ink);
margin: 0 0 22px;
}
.pv-footer__coord {
line-height: 1.9;
margin: 0;
color: var(--pv-ink);
}
.pv-footer__coord a {
color: var(--pv-rust);
font-weight: 700;
font-size: 16px;
text-decoration: none;
}
.pv-footer__coord a:hover { text-decoration: underline; } .pv-footer__services { text-align: center; }
.pv-footer__services-cols {
display: inline-grid;
grid-template-columns: auto auto;
gap: 18px 64px;
text-align: left;
} .pv-footer__services-cols .pv-footer__links:last-child { text-align: right; }
.pv-footer__links {
list-style: none;
margin: 0;
padding: 0;
}
.pv-footer__links li { margin: 0 0 18px; }
.pv-footer__links li:last-child { margin-bottom: 0; }
.pv-footer__links a {
color: var(--pv-ink);
text-decoration: none;
transition: color .18s ease;
}
.pv-footer__links a:hover { color: var(--pv-rust); }
.pv-footer__dl {
display: inline-flex;
align-items: center;
gap: 7px;
}
.pv-footer__dl .pv-icon {
width: 16px;
height: 16px;
color: var(--pv-rust);
} .pv-footer__social { text-align: right; }
.pv-footer__baseline {
color: var(--pv-ink);
line-height: 1.6;
margin: 0 0 24px auto;
max-width: 240px;
}
.pv-footer__socials {
display: flex;
justify-content: flex-end;
gap: 14px;
}
.pv-foot-social {
display: inline-flex;
align-items: center;
justify-content: center;
width: 44px;
height: 44px;
border: 1.5px solid var(--pv-rust);
border-radius: 11px;
background: var(--pv-sand);
color: var(--pv-rust);
transition: background .18s ease, color .18s ease;
}
.pv-foot-social .pv-icon { width: 20px; height: 20px; }
.pv-foot-social:hover { background: var(--pv-rust); color: #fff; } .pv-footer__bottom {
display: flex;
align-items: center;
justify-content: space-between;
gap: 24px;
border-top: 1.5px solid var(--pv-rust);
padding: 22px 0 28px;
}
.pv-footer__legal {
display: flex;
gap: 44px;
}
.pv-footer__legal a {
color: var(--pv-ink);
font-size: 14px;
text-decoration: none;
transition: color .18s ease;
}
.pv-footer__legal a:hover { color: var(--pv-rust); }
.pv-footer__credits {
margin: 0;
color: var(--pv-ink);
font-size: 10px;
}
.pv-footer__credits sup { font-size: .7em; } .pv-calc-fab {
position: fixed;
right: 0;
bottom: 10%;
z-index: 90;
display: flex;
align-items: center;
padding: 14px;
background: var(--pv-rust);
color: #fff;
text-decoration: none;
border-radius: 22px 0 0 22px;
box-shadow: -8px 10px 28px -12px rgba(23, 23, 23, .45);
transition: padding .35s ease, background .3s ease;
}
.pv-calc-fab__icon {
flex: 0 0 auto;
display: inline-flex;
}
.pv-calc-fab__icon .pv-icon { width: 24px; height: 24px; display: block; } .pv-calc-fab__label {
max-width: 0;
margin-left: 0;
overflow: hidden;
white-space: nowrap;
opacity: 0;
font-weight: 700;
font-size: 15px;
transition: max-width .4s cubic-bezier(.4, 0, .2, 1), margin-left .4s ease, opacity .28s ease;
}
.pv-calc-fab:hover,
.pv-calc-fab:focus-visible { background: var(--pv-sand); }
.pv-calc-fab:hover .pv-calc-fab__label,
.pv-calc-fab:focus-visible .pv-calc-fab__label {
max-width: 160px;
margin-left: 12px;
opacity: 1;
}
.pv-calc-fab:hover .pv-calc-fab__label,
.pv-calc-fab:focus-visible .pv-calc-fab__label { opacity: 1; } @media (max-width: 900px) {
.pv-footer__inner { padding: 0 24px; }
.pv-footer__top {
grid-template-columns: 1fr 1fr;
gap: 36px 28px;
padding: 40px 0 36px;
} .pv-footer__contact { grid-column: 1 / -1; }
.pv-footer__title { font-size: 20px; margin-bottom: 20px; } .pv-footer__services { text-align: left; }
.pv-footer__services-cols { display: grid; grid-template-columns: 1fr; gap: 14px; }
.pv-footer__services-cols .pv-footer__links:last-child { text-align: left; }
.pv-footer__social { text-align: left; }
.pv-footer__socials { justify-content: flex-start; }
.pv-footer__baseline { margin: 0 0 22px; }
.pv-footer__bottom {
flex-direction: column;
align-items: flex-start;
gap: 14px;
padding: 20px 0 24px;
}
.pv-footer__legal { flex-wrap: wrap; gap: 14px 24px; }
}
@media (max-width: 560px) {
.pv-footer__top { grid-template-columns: 1fr; gap: 32px; }
.pv-footer__services { grid-column: 1 / -1; }
.pv-footer__social { grid-column: 1 / -1; }
.pv-calc-fab { bottom: 8%; padding: 12px; }
.pv-calc-fab__icon .pv-icon { width: 22px; height: 22px; }
}
@media (prefers-reduced-motion: reduce) {
.pv-calc-fab, .pv-foot-social { transition: none; }
}.pv-toast {
position: fixed;
left: 50%;
bottom: 32px;
transform: translate(-50%, 20px);
z-index: 300;
padding: 15px 26px;
border-radius: 999px;
background: var(--pv-rust);
color: #fff;
font-family: var(--pv-font);
font-size: 15px;
font-weight: 600;
box-shadow: 0 18px 40px -18px rgba(0, 0, 0, .45);
opacity: 0;
pointer-events: none;
transition: opacity .35s ease, transform .35s cubic-bezier(.34, 1.3, .5, 1);
}
.pv-toast.is-in { opacity: 1; transform: translate(-50%, 0); }
.pv-toast--error { background: #b3261e; }
.pv-list { background: #fff; }
.pv-list__inner {
max-width: 1840px;
margin: 0 auto;
padding: 50px 40px 90px;
} .pv-list__header { text-align: center; margin-bottom: 30px; }
.pv-list__title {
margin: 0;
color: var(--pv-sand);
font-family: var(--pv-font);
font-weight: 800;
font-size: clamp(32px, 5vw, 60px);
line-height: 1;
} .pv-list__filters {
display: flex;
flex-wrap: wrap;
justify-content: center;
gap: 16px;
margin: 0 0 44px;
}
@media (max-width: 900px) {
.pv-list__filters-wrap {
position: relative;
margin: 0 0 34px;
}
.pv-list__filters {
flex-wrap: nowrap;
justify-content: flex-start;
overflow-x: auto;
overflow-y: hidden;
-webkit-overflow-scrolling: touch;
scrollbar-width: none;
padding: 0 4px 6px;
margin: 0 -4px;
}
.pv-list__filters::-webkit-scrollbar { display: none; }
.pv-filter { flex: 0 0 auto; white-space: nowrap; }
.pv-list__filters-wrap::after {
content: "";
position: absolute;
top: 0;
right: 0;
bottom: 6px;
width: 44px;
background: linear-gradient(to right, rgba(255, 255, 255, 0), #fff);
pointer-events: none;
}
.pv-list__filters-wrap.is-at-end::after { opacity: 0; }
}
.pv-filter {
display: inline-flex;
align-items: center;
gap: 12px;
padding: 12px 26px;
border: 1.5px solid #e6ded4;
border-radius: 999px;
background: #fff;
color: var(--pv-ink);
font-family: var(--pv-font);
font-size: 15px;
font-weight: 500;
cursor: pointer;
outline: none;
transition: border-color .2s ease, color .2s ease, box-shadow .2s ease;
}
.pv-filter:focus-visible { box-shadow: 0 0 0 3px rgba(186, 67, 7, .25); }
.pv-filter__box {
width: 18px;
height: 18px;
flex: 0 0 auto;
border: 1.5px solid #d7cdbf;
border-radius: 5px;
position: relative;
transition: border-color .2s ease, background .2s ease;
}
.pv-filter.is-active { border-color: var(--pv-rust); color: var(--pv-rust); }
.pv-filter.is-active .pv-filter__box { background: #fff; border-color: var(--pv-rust); }
.pv-filter.is-active .pv-filter__box::after {
content: "";
position: absolute;
inset: 4px;
border-radius: 2px;
background: var(--pv-rust);
} .pv-list__grid {
display: grid;
grid-template-columns: repeat(5, 1fr);
gap: 24px;
} .pv-prod {
display: flex;
flex-direction: column;
padding: 30px 28px 26px;
border-radius: 22px;
background: #fff;
border: 1px solid #efece7;
box-shadow: 0 20px 50px -38px rgba(23, 23, 23, .3);
}
.pv-prod[hidden] { display: none; }
.pv-prod__head { min-height: 74px; }
.pv-prod__name {
margin: 0;
color: var(--pv-ink);
font-family: var(--pv-font);
font-weight: 800;
font-size: 26px;
line-height: 1.1;
}
.pv-prod__code {
font-size: .42em;
font-weight: 700;
vertical-align: super;
color: var(--pv-ink);
margin-left: 2px;
}
.pv-prod__dim { margin: 6px 0 0; color: #9a9a9a; font-size: 16px; }
.pv-prod__media {
position: relative;
display: flex;
align-items: center;
justify-content: center;
height: 240px;
margin: 14px 0 20px;
}
.pv-prod__media img { max-width: 100%; max-height: 100%; width: auto; height: auto; object-fit: contain; } .pv-prod__media.has-hover .pv-prod__media-img {
position: absolute;
inset: 0;
margin: auto;
transition: opacity .45s ease;
}
.pv-prod__media.has-hover .pv-prod__media-img--main { opacity: 1; }
.pv-prod__media.has-hover .pv-prod__media-img--hover { opacity: 0; }
.pv-prod__media.has-hover:hover .pv-prod__media-img--main { opacity: 0; }
.pv-prod__media.has-hover:hover .pv-prod__media-img--hover { opacity: 1; }
@media (prefers-reduced-motion: reduce) {
.pv-prod__media .pv-prod__media-img { transition: none; }
} .pv-prod__buy { margin-top: auto; }
.pv-prod__cartons {
display: flex;
align-items: stretch;
border: 1.5px solid var(--pv-line, #ececec);
border-radius: 999px;
overflow: hidden;
margin-bottom: 16px;
}
.pv-select { position: relative; flex: 1 1 0; min-width: 0; }
.pv-prod__qty {
appearance: none;
-webkit-appearance: none;
-moz-appearance: none;
box-sizing: border-box;
display: block;
width: 100%;
height: 100%;
padding: 10px 32px 10px 16px;
border: 0;
background: transparent;
color: var(--pv-rust);
font-family: var(--pv-font);
font-size: 14px;
font-weight: 600;
text-align: center;
text-align-last: center;
cursor: pointer;
outline: none;
}
.pv-prod__qty:focus {
background: #fdf5ee;
border-radius: 999px 0 0 999px;
box-shadow: inset 0 0 0 2px var(--pv-rust);
}
.pv-select::after {
content: "";
position: absolute;
right: 16px;
top: 50%;
width: 8px; height: 8px;
border-right: 2px solid var(--pv-rust);
border-bottom: 2px solid var(--pv-rust);
transform: translateY(-70%) rotate(45deg);
pointer-events: none;
}
.pv-prod__units {
flex: 1 1 0;
min-width: 0;
box-sizing: border-box;
display: flex;
align-items: center;
justify-content: center;
gap: 4px;
text-align: center;
padding: 10px 12px;
border: 0;
border-left: 1.5px solid var(--pv-line, #ececec);
color: #b7b7b7;
font-size: 14px;
}
.pv-prod__price {
margin: 0 0 16px;
color: var(--pv-ink);
font-weight: 800;
font-size: 26px;
}
.pv-prod__price sup { font-size: .5em; font-weight: 700; color: #9a9a9a; }
.pv-prod__actions { display: flex; gap: 10px; }
.pv-prod__actions .pv-btn { flex: 1 1 0; } .pv-prod__buy--guest { margin-top: auto; display: flex; justify-content: center; }
.pv-prod__buy--guest .pv-btn { padding: 13px 34px; }
.pv-prod__more {
display: block;
margin-top: 16px;
text-align: center;
color: var(--pv-ink);
font-size: 14px;
text-decoration: none;
}
.pv-prod__more:hover { color: var(--pv-rust); } .pv-btn {
display: inline-flex;
align-items: center;
justify-content: center;
padding: 13px 22px;
border-radius: 999px;
border: 1.5px solid transparent;
font-family: var(--pv-font);
font-size: 11px;
font-weight: 700;
letter-spacing: .08em;
text-transform: uppercase;
text-decoration: none;
cursor: pointer;
transition: background .2s ease, color .2s ease, border-color .2s ease;
}
.pv-btn--outline { background: #fff; color: var(--pv-ink); border-color: #d9d5ce; }
.pv-btn--outline:hover { border-color: var(--pv-rust); color: var(--pv-rust); }
.pv-btn--sand { background: var(--pv-sand); color: var(--pv-ink); }
.pv-btn--sand:hover { background: var(--pv-rust); color: #fff; }
.pv-btn--devis { border-color: var(--pv-sand); }
.pv-btn--devis:hover { border-color: var(--pv-rust); }
.pv-btn__plus { font-size: 1.2em; line-height: 1; margin-right: 2px; } .pv-prod { transition: transform .35s cubic-bezier(.4, 0, .2, 1); }
.pv-prod:hover { transform: scale(1.04); }
@media (prefers-reduced-motion: reduce) {
.pv-prod { transition: none; }
} .pv-prod--link {
position: relative;
overflow: hidden;
isolation: isolate;
text-decoration: none;
min-height: 340px;
}
.pv-prod__linkimg {
height: 200px;
margin: 14px 0 4px;
border-radius: 14px;
background-color: transparent;
background-size: cover;
background-position: center;
}
.pv-prod--link .pv-linkblock__title {
color: var(--pv-lb-color, #b7370e);
} .pv-linkblock__row {
position: relative;
z-index: 1;
display: flex;
align-items: center;
gap: 10px;
margin-top: auto;
padding-top: 12px;
}
.pv-linkblock__icon {
flex: 0 0 auto;
width: 22px;
height: 22px;
background-color: var(--pv-lb-color, #fff);
mask-size: contain;
mask-repeat: no-repeat;
mask-position: center;
-webkit-mask-size: contain;
-webkit-mask-repeat: no-repeat;
-webkit-mask-position: center;
}
.pv-linkblock__subtitle {
color: var(--pv-ink);
padding: 2px 8px 2px 0;
font-size: 13px;
font-weight: 400;
} .pv-linkblock__text {
position: relative;
z-index: 1;
margin-top: 10px;
color: var(--pv-ink);
text-decoration: none;
font-weight: 800;
font-size: 15px;
line-height: 1.4;
}
.pv-linkblock__text p { margin: 0; }
.pv-linkblock__text strong { color: var(--pv-lb-color, #fff); } .pv-linkblock__glow {
position: absolute;
left: 50%;
bottom: -40px;
width: 160px;
height: 160px;
border-radius: 50%;
background: radial-gradient(circle, color-mix(in srgb, var(--pv-lb-color, #ba4307) 55%, transparent) 0%, transparent 68%);
filter: blur(26px);
opacity: .6;
transform: translateX(-50%) scale(1);
z-index: 0;
pointer-events: none;
transition: transform .55s cubic-bezier(.4, 0, .2, 1), opacity .55s ease;
}
.pv-prod--link:hover .pv-linkblock__glow { transform: translateX(-50%) scale(1.5); opacity: 1; }
@media (prefers-reduced-motion: reduce) {
.pv-linkblock__glow { transition: none; }
} .pv-single { background: #fff; position: relative; overflow: clip; } .pv-single::before,
.pv-single::after {
content: "";
position: absolute;
width: 640px;
height: 640px;
border-radius: 50%;
filter: blur(90px);
pointer-events: none;
z-index: 0;
}
.pv-single::before { top: -220px; right: -160px; background: rgba(186, 67, 7, .06); }
.pv-single::after { bottom: 10%; left: -220px; background: rgba(232, 203, 180, .5); }
.pv-single__inner {
position: relative;
z-index: 1;
max-width: 1400px;
margin: 0 auto;
padding: 40px 40px 90px;
}
.pv-single__breadcrumb {
margin-bottom: 28px;
color: #9a9a9a;
font-size: 14px;
}
.pv-single__breadcrumb a { color: #9a9a9a; text-decoration: none; }
.pv-single__breadcrumb a:hover { color: var(--pv-rust); }
.pv-single__breadcrumb span[aria-hidden] { margin: 0 8px; color: #d9d5ce; }
.pv-single__breadcrumb .is-current { color: var(--pv-ink); font-weight: 600; }
.pv-single__grid {
display: grid;
grid-template-columns: 1fr 380px;
gap: 60px;
align-items: start;
}
.pv-single__main { min-width: 0; display: flex; flex-direction: column; gap: 46px; }
.pv-single__sidebar { align-self: start; position: sticky; top: calc(var(--pv-header-h, 92px) + 24px); }
.pv-single__sidebar-inner {
background: #fff;
border: 1px solid #efece7;
border-radius: 24px;
padding: 30px;
box-shadow: 0 20px 50px -38px rgba(23, 23, 23, .3);
}
.pv-single__facts {
list-style: none;
margin: 18px 0 26px;
padding: 18px 0;
border-top: 1px solid var(--pv-line, #ececec);
border-bottom: 1px solid var(--pv-line, #ececec);
display: flex;
flex-direction: column;
gap: 12px;
}
.pv-single__facts li { display: flex; align-items: center; gap: 10px; color: var(--pv-ink); font-size: 15px; }
.pv-single__facts .pv-icon { width: 18px; height: 18px; color: var(--pv-rust); flex: 0 0 auto; }
.pv-single__facts a { color: var(--pv-ink); text-decoration: none; }
.pv-single__facts a:hover { color: var(--pv-rust); }
.pv-single__media {
position: relative;
background: #faf9f7;
border: 1px solid #efece7;
border-radius: 24px;
overflow: hidden;
min-height: 480px;
}
.pv-single__track {
display: flex;
height: 100%;
transition: transform .45s cubic-bezier(.4, 0, .2, 1);
}
.pv-single__slide {
flex: 0 0 100%;
display: flex;
align-items: center;
justify-content: center;
padding: 40px;
min-height: 480px;
max-height: 700px;
box-sizing: border-box;
}
.pv-single__media-img { max-width: 100%; max-height: 100%; height: auto; object-fit: contain; }
.pv-single__nav {
position: absolute;
top: 50%;
transform: translateY(-50%);
width: 44px;
height: 44px;
border: 0;
border-radius: 50%;
background: #fff;
color: var(--pv-rust);
font-size: 22px;
line-height: 1;
box-shadow: 0 10px 26px -10px rgba(23, 23, 23, .32);
cursor: pointer;
z-index: 2;
}
.pv-single__nav:hover { background: var(--pv-rust); color: #fff; }
.pv-single__nav--prev { left: 18px; }
.pv-single__nav--next { right: 18px; }
.pv-single__dots {
position: absolute;
bottom: 18px;
left: 50%;
transform: translateX(-50%);
display: flex;
gap: 8px;
z-index: 2;
}
.pv-single__dot {
width: 8px;
height: 8px;
padding: 0;
border: 0;
border-radius: 50%;
background: #d9d5ce;
cursor: pointer;
}
.pv-single__dot.is-active { background: var(--pv-rust); width: 22px; border-radius: 4px; transition: width .25s ease; }
@media (prefers-reduced-motion: reduce) {
.pv-single__track { transition: none; }
} .pv-single__blocs {
max-width: 900px;
display: flex;
flex-direction: column;
gap: 34px;
}
.pv-single__bloc-titre {
font-family: var(--pv-font);
font-weight: 800;
color: var(--pv-ink);
font-size: 22px;
margin: 0 0 12px;
}
.pv-single__bloc-texte { color: var(--pv-ink); font-size: 16px; line-height: 1.7; }
.pv-single__bloc-texte p { margin: 0 0 10px; }
.pv-single__viewer { max-width: 900px; }
.pv-3d {
position: relative;
width: 100%;
max-width: 900px;
height: 480px;
background: #f4f0eb;
border: 1px solid #efece7;
border-radius: 24px;
overflow: hidden;
}
.pv-3d__canvas { display: block; width: 100%; height: 100%; cursor: grab; }
.pv-3d__title {
position: absolute;
top: 16px;
left: 18px;
margin: 0;
color: var(--pv-ink);
font-family: var(--pv-font);
font-weight: 800;
font-size: 18px;
pointer-events: none;
z-index: 1;
}
.pv-3d__title sup { color: var(--pv-rust); font-size: .6em; margin-left: 2px; }
.pv-3d__canvas:active { cursor: grabbing; }
.pv-3d__loading {
position: absolute;
inset: 0;
display: flex;
align-items: center;
justify-content: center;
color: #9a9a9a;
font-family: var(--pv-font);
font-size: 14px;
background: #f4f0eb;
pointer-events: none;
transition: opacity .3s ease;
}
.pv-3d.is-ready .pv-3d__loading { opacity: 0; }
.pv-3d__controls {
position: absolute;
top: 14px;
right: 14px;
display: flex;
flex-direction: column;
gap: 8px;
}
.pv-3d__btn {
width: 40px;
height: 40px;
border: 0;
border-radius: 10px;
background: #fff;
color: var(--pv-ink);
font-size: 18px;
font-weight: 700;
line-height: 1;
cursor: pointer;
box-shadow: 0 10px 26px -10px rgba(23, 23, 23, .32);
}
.pv-3d__btn:hover { color: var(--pv-rust); }
.pv-3d__hint {
position: absolute;
left: 14px;
bottom: 12px;
margin: 0;
color: #9a9a9a;
font-size: 12px;
font-family: var(--pv-font);
pointer-events: none;
}
.pv-3d:fullscreen { max-width: none; height: 100vh; border-radius: 0; }
.pv-3d:fullscreen .pv-3d__canvas { height: 100vh; }
.pv-single__name {
margin: 0;
color: var(--pv-ink);
font-family: var(--pv-font);
font-weight: 800;
font-size: clamp(34px, 4vw, 54px);
line-height: 1.05;
}
.pv-single__dim { margin: 10px 0 0; color: #9a9a9a; font-size: 20px; }
.pv-single__buy { margin: 34px 0 0; max-width: 420px; }
.pv-single__buy .pv-prod__price { font-size: 34px; }
.pv-single__gate {
margin: 30px 0 0;
max-width: 460px;
padding: 26px 28px;
background: #f6f5f3;
border-radius: 18px;
color: var(--pv-ink);
}
.pv-single__gate p { margin: 0 0 16px; line-height: 1.6; }
.pv-single__gate .pv-btn { margin: 0; }
.pv-single__desc {
max-width: 900px;
color: var(--pv-ink);
font-size: 16px;
line-height: 1.7;
} .pv-single__related { margin: 70px 0 0; }
.pv-single__related-grid { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 900px) {
.pv-single__inner { padding: 28px 22px 64px; }
.pv-single__grid { grid-template-columns: 1fr; gap: 30px; }
.pv-single__sidebar { position: static; }
.pv-single__media, .pv-single__slide { min-height: 320px; }
.pv-single__slide { padding: 28px; }
.pv-single__related-grid { grid-template-columns: repeat(2, 1fr); }
} @media (max-width: 1560px) { .pv-list__grid { grid-template-columns: repeat(4, 1fr); } }
@media (max-width: 1200px) { .pv-list__grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 900px) {
.pv-list__inner { padding: 36px 22px 64px; }
.pv-list__grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
.pv-list__filters { gap: 10px; }
.pv-filter { padding: 10px 18px; font-size: 14px; }
}
@media (max-width: 560px) { .pv-list__grid { grid-template-columns: 1fr; } }