/*!
Theme Name: Duval Créations
Theme URI: http://underscores.me/
Author: IPSO
Author URI: https://www.studioipso.fr
Description: Thème WordPress sur-mesure pour Duval Créations
Version: 1.0
Tested up to: 7.4
Requires PHP: 7.4
*/

/* ------------------------------------------------------------------------------ */
/* ----- FONTS ----- */
/* ------------------------------------------------------------------------------ */
/* Reman */
@font-face {
	font-display: swap;
	font-family: 'Reman';
	font-style: normal;
	font-weight: 400;
	src: url('fonts/reman.woff2') format('woff2'),
		 url('fonts/reman.woff') format('woff');
}

/* Zilla Slab - 400 */
@font-face {
	font-display: swap;
	font-family: 'Zilla Slab';
	font-style: normal;
	font-weight: 400;
	src: url('fonts/zilla-slab-v11-latin-regular.woff2') format('woff2'),
		 url('fonts/zilla-slab-v11-latin-regular.woff') format('woff');
}
  
/* Zilla Slab - 600 */
@font-face {
	font-display: swap;
	font-family: 'Zilla Slab';
	font-style: normal;
	font-weight: 600;
	src: url('fonts/zilla-slab-v11-latin-600.woff2') format('woff2'),
		 url('fonts/zilla-slab-v11-latin-600.woff') format('woff');
}
  
/* Zilla Slab - 700 */
@font-face {
	font-display: swap;
	font-family: 'Zilla Slab';
	font-style: normal;
	font-weight: 700;
	src: url('fonts/zilla-slab-v11-latin-700.woff2') format('woff2'),
		 url('fonts/zilla-slab-v11-latin-700.woff') format('woff');
}
  
/* Inter - 400 */
@font-face {
	font-display: swap;
	font-family: 'Inter';
	font-style: normal;
	font-weight: 400;
	src: url('fonts/inter-v12-latin-regular.woff2') format('woff2'),
		 url('fonts/inter-v12-latin-regular.woff') format('woff');
}
  
/* Inter - 700 */
	@font-face {
	font-display: swap;
	font-family: 'Inter';
	font-style: normal;
	font-weight: 700;
	src: url('fonts/inter-v12-latin-700.woff2') format('woff2'),
		 url('fonts/inter-v12-latin-700.woff') format('woff');
}
  


/* ------------------------------------------------------------------------------ */
/* ----- GENERAL SETTINGS ----- */
/* ------------------------------------------------------------------------------ */
:root {
	--corset-large: 1170px;
	--corset-medium: 680px;
	--corset-small: 400px;

	--header-height: 165px;
 
	--padding-large: 50px;
	--padding-medium: 25px;
	--padding-small: 15px;

	--transition-standard: .3s ease;

	--color-primary: #18293b;
    --color-secondary: #cb9f81;
	--color-tertiary: #fff9f1;
	--color-grey: #444444;
}

*,
*:before,
*:after {
	box-sizing: inherit;
    font-family: 'Inter', Arial, Helvetica, sans-serif;
    font-weight: 400;
}

html {
	box-sizing: border-box;
	line-height: 1.5;
	scroll-behavior: smooth;
	overflow-x: hidden;
}

body {
	margin: 0;
	background: var(--color-tertiary);
}

@media screen and (max-width: 1170px) {
:root {
--header-height: 76px;
}
}


/* ------------------------------------------------------------------------------ */
/* ----- TITLES ----- */
/* ------------------------------------------------------------------------------ */

h1, .h1 {
	position: relative;
	margin-bottom: .7em;
	display: block;
	color: var(--color-secondary);
	font-family: 'Reman', 'Zilla Slab', Arial, sans-serif;
    font-size: 50px;
    font-weight: 400;
	text-transform: lowercase;
	/*text-align: left;*/
	line-height: 1.2;
}
h2, .h2,
h3, .h3,
h4, .h4 {
	position: relative;
	margin-bottom: .7em;
	font-family: 'Zilla Slab', Arial, Helvetica, sans-serif;
	/*text-align: left;*/
	line-height: 1.2;
}


h1:first-letter, .h1:first-letter {
	text-transform: uppercase;
}

h2, .h2 {
    color: var(--color-secondary);
    font-size: 30px;
    font-weight: 600;
}

h3, .h3 {
    color: var(--color-secondary);
    font-size: 25px;
    font-weight: 600;
}

h4, .h4 {
    color: var(--color-primary);
	font-size: 20px;
	font-weight: 500;
}

@media screen and (max-width: 767px) {
h1, .h1 {
    font-size: 35px;
}

h2, .h2 {
    font-size: 23px;
}

h3, .h3 {
    font-size: 20px;
}

h4, .h4 {
    font-size: 18px;
}
}



/* ------------------------------------------------------------------------------ */
/* ----- PARAGRAPHS ----- */
/* ------------------------------------------------------------------------------ */
p {
    color: var(--color-primary);
    font-size: 16px;
    font-weight: 400;
    text-align: left;
    line-height: 1.5;
}

dfn,
cite,
em,
i {
	font-style: italic;
}

b,
strong {
	font-weight: bolder;
}

small {
	font-size: 80%;
}

big {
	font-size: 125%;
}

sub,
sup {
	position: relative;
	vertical-align: baseline;
	font-size: 75%;
	line-height: 0;
	
}

sub {
	bottom: -.25em;
}

sup {
	top: -.5em;
}

abbr[title] {
	border-bottom: none;
	text-decoration: underline;
	text-decoration: underline dotted;
}

abbr,
acronym {
	border-bottom: 1px dotted var(--color-grey);
	cursor: help;
}

 

/* ------------------------------------------------------------------------------ */
/* ----- LISTS ----- */
/* ------------------------------------------------------------------------------ */
ul, 
ol {
	margin: 1.5em 0;
	padding-left: 1em;
	color: var(--color-primary);
	font-size: 16px;
	line-height: 1.5;
	list-style: disc;
}

ul {
	list-style: disc;
}

ol {
	list-style: decimal;
}

li > ul, 
li > ol {
	margin: 0;
}

li > ul {
	list-style: circle;
}



/* ------------------------------------------------------------------------------ */
/* ----- LINKS ----- */
/* ------------------------------------------------------------------------------ */
a {
	background-color: transparent;
	color: var(--color-primary);
	transition: .1s linear;
}

a:hover {
	color: var(--color-grey);
}

a.phone {
	position: relative;
	padding-left: 1.5rem;
}

a.phone:before {
	content: '';
	position: absolute;
	top: 50%;
	left: 0;
	transform: translate3d(0,-50%,0);
	background-image: url('img/icon-phone.svg');
	background-size: contain;
	background-repeat: no-repeat;
	height: 16px;
	width: 16px;
} 



/* ------------------------------------------------------------------------------ */
/* ----- BUTTONS ----- */
/* ------------------------------------------------------------------------------ */
.btn-primary,
.btn-secondary,
.wp-block-button__link {
	position: relative;
	display: inline-block;
	padding: 1rem 2.5rem;
    background: transparent;
	border: unset;
	border-radius: unset;
	color: var(--color-primary);
	font-family: 'Zilla Slab', Arial, Helvetica, sans-serif;
	font-size: 1.5rem;
	font-weight: 400;
	text-align: center;
	text-decoration: none;
	line-height: 1.2;
	box-shadow: unset;
	cursor: pointer;
	transition: var(--transition-standard);
}

.btn-primary:before,
.btn-secondary:before,
.wp-block-button__link:before {
	position: absolute;
	top: 50%;
	left: 0;
	transform: translate3d(0,-50%,0);
	content: '';
	height: 2px;
	width: 1.5rem;
	background: var(--color-primary);
	transition: var(--transition-standard);
}

.btn-primary:after,
.btn-secondary:after,
.wp-block-button__link:after {
	position: absolute;
	top: 50%;
	right: 0;
	transform: translate3d(0,-50%,0);
	content: '';
	height: 2px;
	width: 1.5rem;
	background: var(--color-primary);
	transition: var(--transition-standard);
}

.btn-primary:hover:before,
.btn-secondary:hover:before,
.wp-block-button__link:hover:before,
.btn-primary:hover:after,
.btn-secondary:hover:after,
.wp-block-button__link:hover:after {
	width: 2rem;
}



/* ------------------------------------------------------------------------------ */
/* ----- FIGURE ----- */
/* ------------------------------------------------------------------------------ */
figure {
	margin: 1.5em 0;
}

figcaption {
	font-size: 14px;
	text-align: center;
}

img {
	display: block;
}



/* ------------------------------------------------------------------------------ */
/* ----- CODE ----- */
/* ------------------------------------------------------------------------------ */
pre,
code,
kbd,
samp,
tt,
var {
	font-family: monaco, consolas, "Andale Mono", "DejaVu Sans Mono", monospace;
	font-size: 16px;
}

pre {
	margin: 1.5em 0;
	padding: 1.5em;
	max-width: 100%;
	background: #eee;
	color: var(--color-grey);
	font-family: "Courier 10 Pitch", courier, monospace;
	font-size: 16px;
	line-height: 1.5;
	white-space: pre-wrap;
	overflow: auto;
} 

@media screen and (max-width: 767px) {
pre,
code,
kbd,
samp,
tt,
var {
	font-size: 14px;
}
}



/* ------------------------------------------------------------------------------ */
/* ----- BLOCKQUOTE ----- */
/* ------------------------------------------------------------------------------ */
blockquote {
	margin: 1.5em 0;
	padding: 1em 1em 1em 2em;
	border-left: 2px solid var(--color-primary);
	background: transparent;
	color: var(--color-grey);
}

blockquote * {
	color: var(--color-primary);
	font-family: 'Zilla Slab', Arial, Helvetica, sans-serif;
	font-size: 18px;
	font-weight: 300;
}

blockquote *:first-child {
	margin-top: 0;
}

blockquote *:last-child {
	margin-bottom: 0;
}

blockquote cite {
	font-size: 16px;
}

@media screen and (max-width: 767px) {
blockquote {
	padding-left: 1em;
}

blockquote * {
	font-size: 18px;
}

blockquote cite {
	font-size: 14px;
}
}



/* ------------------------------------------------------------------------------ */
/* ----- TABLE ----- */
/* ------------------------------------------------------------------------------ */
table {
	margin: 1em 0;
	font-size: 16px;
}

table td,
.wp-block-table td,
table th,
.wp-block-table th {
	padding: .5em 1em;
	border: 2px solid var(--color-primary);
	color: var(--color-grey);
}

@media screen and (max-width: 767px) {
table {
	font-size: 14px;
}
}



/* ------------------------------------------------------------------------------ */
/* ----- FORM ----- */
/* ------------------------------------------------------------------------------ */
label {
	margin-bottom: .5em;
	font-size: 16px;
	font-weight: 400;
}

input {
	padding: .8em;
	border: 2px solid var(--color-primary);
	border-radius: unset;
	background: #fff;
	font-size: 16px;
}

input:focus {
	outline: none;
}

input[type='submit'] {
	border: unset;
	background: transparent;
	color: #fff;
	text-align: center;
	cursor: pointer;
	transition: var(--transition-standard);
}

input[type='submit']:hover {
	color: #fff;
	opacity: .85;
}

button[type='submit'] {
	position: relative;
	padding: 1rem 2.5rem;
	border: unset;
	border-radius: unset;
	background: transparent;
	color: var(--color-primary);
	font-family: 'Zilla Slab', Arial, Helvetica, sans-serif;
	font-size: 1.5rem;
	font-weight: 400;
    text-decoration: none;
	text-align: center;
	line-height: 1.2;
	box-shadow: unset;
	cursor: pointer;
	transition: var(--transition-standard);
}

button[type='submit']:before {
	position: absolute;
	top: 50%;
	left: 0;
	transform: translate3d(0,-50%,0);
	content: '';
	height: 2px;
	width: 1.5rem;
	background: var(--color-primary);
	transition: var(--transition-standard);
}

button[type='submit']:after {
	position: absolute;
	top: 50%;
	right: 0;
	transform: translate3d(0,-50%,0);
	content: '';
	height: 2px;
	width: 1.5rem;
	background: var(--color-primary);
	transition: var(--transition-standard);
}

button[type='submit']:hover:before,
button[type='submit']:hover:after {
	width: 2rem;
}

textarea {
	display: block;
	padding: .8em;
	width: 100%;
	min-width: 100%;
	max-width: 100%;
	min-height: 150px;
	border: 2px solid var(--color-primary);
	border-radius: unset;
	outline: none;
	background: #fff;
	font-size: 16px;
	line-height: 1.5;
}

select {
	padding: .8em;
	border: 2px solid var(--color-primary);
	border-radius: unset;
	background: #fff;
	background: url('img/icon-chevron-bottom.svg') no-repeat right;
	background-origin: content-box;
	background-size: 15px 15px;
	font-size: 16px;
	-moz-appearance: none;
	-webkit-appearance: none;
	appearance: none;
	
}



/* ------------------------------------------------------------------------------ */
/* ----- SECTION ----- */
/* ------------------------------------------------------------------------------ */
section {
	padding: 100px 0;
	overflow-x: hidden;
}
 
@media screen and (max-width: 900px) {
section {
	padding: 50px 0;
}

.entry-content > section {
	padding-top: var(--padding-large);
}
}



/* ------------------------------------------------------------------------------ */
/* ----- CORSET ----- */
/* ------------------------------------------------------------------------------ */
.corset-large {
	margin: 0 auto;
	max-width: var(--corset-large);
}

.corset-medium {
	margin: 0 auto;
	max-width: var(--corset-medium);
}

.corset-small {
	margin: 0 auto;
	max-width: var(--corset-small);
}

@media screen and (max-width: 1170px) {
.corset-large,
.corset-medium,
.corset-small {
	padding-left: var(--padding-small);
	padding-right: var(--padding-small);
}
}



/* ------------------------------------------------------------------------------ */
/* ----- SITE-MAIN ----- */
/* ------------------------------------------------------------------------------ */
.site-main {
	padding-top: calc(var(--header-height));
}



/* ------------------------------------------------------------------------------ */
/* ----- HEADER ----- */
/* ------------------------------------------------------------------------------ */
.site-header {
	display: block;
	position: fixed;
	top: 0;
	width: 100%;
	background: var(--color-primary);
	z-index: 50;
}

.header-wrapper {
	display: flex;
	flex-direction: column;
}

/* Header Top */
.header-top {
	display: flex;
	flex-direction: column;
	align-items: center;
	padding: var(--padding-small);
	text-align: center;
}

.site-branding {
	display: flex;
	flex-direction: row;
	align-items: center;
	gap: var(--padding-medium);
}

.site-header .custom-logo-link {
	display: inline-block;
}

.site-header .custom-logo {
	display: block;
	height: 80px;
	width: auto;
	object-fit: contain;
	transition: var(--transition-standard);
}

.custom-logo-title {
	display: block;
	width: auto;
	max-height: 40px;
	object-fit: contain;
}

/* Navigation */
.main-navigation {
	transform: translate3d(0,calc(100% - (var(--padding-small) / 2)),0);
	background: #fff;
	box-shadow: 0 0 5px rgba(0,0,0,.1);
}

.main-navigation .menu-principal {
	display: flex;
	flex-direction: row;
	margin: 0;
	padding: 0;
	list-style: none;
}

.main-navigation .menu-principal > .menu-item > a {
	display: block;
	padding: .8rem 1rem;
	background: transparent;
	font-family: 'Zilla Slab', Arial, Helvetica, sans-serif;
	font-size: 1.1rem;
	font-weight: 400;
	text-decoration: none;
	transition: var(--transition-standard);
}

.main-navigation .menu-principal > .menu-item > a:hover,
.main-navigation .menu-principal > .menu-item.current-menu-item > a,
.main-navigation .menu-principal > .menu-item.expand > a {
	background: var(--color-secondary);
	color: #fff;
}

.main-navigation .menu-principal .sub-menu {
	display: none;
	position: absolute;
	left: 0;
	margin: 0;
	padding: 0;
	width: 100%;
	background: var(--color-secondary);
	list-style: none;
}

.main-navigation .menu-principal > .menu-item:hover > .sub-menu {
	display: block;
	border-top: 2px solid var(--color-secondary);
}

.main-navigation .menu-principal .sub-menu .menu-item:not(:last-child) {
	border-bottom: 1px solid rgba(255,255,255,0.2);
}

.main-navigation .menu-principal .sub-menu .menu-item > a {
	display: block;
	padding: .8rem 1rem;
	background: transparent;
	color: #fff;
	font-family: 'Zilla Slab', Arial, Helvetica, sans-serif;
	font-size: 1rem;
	font-weight: 400;
	text-decoration: none;
	transition: var(--transition-standard);
}

.main-navigation .menu-principal .sub-menu .menu-item > a:hover, 
.main-navigation .menu-principal .sub-menu .menu-item.current-menu-item > a {
	color: var(--color-primary);
}

/* French flag */
.french-flag {
	display: flex;
	flex-direction: row;
	height: 3px;
	width: 100%;
}

.french-flag > span {
	display: block;
	height: 100%;
	width: 100%;
}

.flag-blue {
	flex-basis: 25%;
	background: #101e87;
}

.flag-white {
	flex-basis: 50%;
	background: #fff;
}

.flag-red {
	flex-basis: 25%;
	background: #cf0821;
}

/* Mobile Menu */
#menu-button {
	position: relative;
	display: none;
	cursor: pointer;
}

#menu-button img {
	display: block;
	height: 40px;
	width: auto;
}

.main-navigation-mobile {
	display: none;
	position: absolute;
	box-sizing: border-box;
	top: var(--header-height);
	left: 0;
	transform: unset; 
	padding: 0;
	width: 100vw;
	height: calc(100vh - var(--header-height));
	height: calc((var(--vh, 1vh) * 100) - var(--header-height));
	text-align: left;
	background: #fff;
	overflow-y: scroll;
	-webkit-overflow-scrolling: touch;
	z-index: 100;
}

.main-navigation-mobile.open {
	display: block;
}

.menu-mobile {
	display: flex;
	flex-flow: column;
	justify-content: flex-start;
	margin: 0;
	padding: 0;
	height: 100%;
	list-style: none;
}

.main-navigation-mobile .menu-mobile > li:not(:last-child) {
	border-bottom: 1px solid rgba(202, 158, 128, .2);
}

.main-navigation-mobile .menu-mobile > li > a {
	padding: 1rem;
	color: var(--color-primary);
	font-family: 'Zilla Slab', Arial, Helvetica, sans-serif;
	font-size: 1.1rem;
	font-weight: 400;
	text-align: center;
}

.main-navigation-mobile .menu-mobile li a {
	display: block;
	text-decoration: none;
}

.main-navigation-mobile .menu-mobile li a:hover,
.main-navigation-mobile .menu-mobile li.sub-menu-expand > a,
.main-navigation-mobile .menu-mobile li.current-menu-item > a,
.main-navigation-mobile .menu-mobile .sub-menu li.current-menu-item a {
	font-weight: 700;
}



@media screen and (max-width: 1170px) {
.header-top {
	flex-direction: row;
	justify-content: space-between;
}

.site-branding {
	flex-direction: row;
}

.site-header .custom-logo {
	height: 40px;
}

.custom-logo-title {
	max-height: 25px;
}

.main-navigation {
	display: none;
}

#menu-button {
	display: block;
}
}



/* ------------------------------------------------------------------------------ */
/* ----- FOOTER ----- */
/* ------------------------------------------------------------------------------ */
.site-footer {
	background: var(--color-primary);
}

.site-footer * {
	color: var(--color-tertiary);
}

.site-footer a {
	text-decoration: none;
}

.site-footer a:hover {
	color: #fff;
}

.footer-wrapper {
	padding-top: var(--padding-large);
	padding-bottom: var(--padding-large);
}

.footer-top {
	display: flex;
	flex-direction: row;
	justify-content: flex-start;
	gap: 150px;
}

.site-footer .menu {
	display: flex;
	flex-direction: column;
	gap: .5rem;
	margin: 0;
	padding: 0;
	list-style: none;
}

.footer-logo {
	max-width: 180px;
	filter: brightness(0) invert(1);
}

.footer-top-item p:first-child {
	margin-top: 0;
}

.footer-top-item p:last-child {
	margin-bottom: 0;
}

.copyright > a {
	font-size: .8rem;
	opacity: .5;
}

.footer-social {
	display: flex;
	flex-direction: row;
	gap: 1rem;
	margin: 2rem 0 0 0;
	padding: 0;
	list-style: none;
}

.footer-social a {
	display: block;
}

.footer-social a > img {
	height: 20px;
	width: 20px;
	object-fit: contain;
}

.footer-partenaires {
	display: grid;
	flex-direction: column;
	gap: var(--padding-small);
	margin: 0;
	padding: 0;
	list-style: none;
}

.footer-partenaires-logo {
	height: auto;
	width: 70px;
	object-fit: contain;
}

@media screen and (max-width: 1170px) {
.footer-top {
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: var(--padding-large);
}

.footer-top-item * {
	text-align: center;
}

.footer-social {
	justify-content: center;
}
}



/* ------------------------------------------------------------------------------ */
/* ----- PAGE-HEADER ----- */
/* ------------------------------------------------------------------------------ */
.page-header {
	position: relative;
	display: flex;
	align-items: center;
	padding: var(--padding-large) 0;
	background: url('img/pattern-croquis.png');
	background-size: 75px 75px;
	background-repeat: repeat;
	background-position: center;
	overflow: hidden;
}

.page-header-wrapper {
	position: relative;
	z-index: 5;
}

.page-header .entry-title {
	text-align: center;
}

.page-header .entry-title h1,
.page-header .entry-title .h1 {
	display: inline-block;
	margin: 0;
	text-align: center;
}

@media screen and (max-width: 900px) {
.page-header {
	padding: var(--padding-medium) 0;
}
}


/* ------------------------------------------------------------------------------ */
/* ----- BLOCK : SECTION PERSONNALISE ----- */
/* ------------------------------------------------------------------------------ */
.section-personnalise {
	position: relative;
}

.section-personnalise-wrapper {
	display: flex;
	flex-direction: column;
}

.section-personnalise-content {
	position: absolute;
	display: block;
	left: 50%;
	transform: translate3D(-50%,0,0);
	padding: 4rem;
	background: var(--color-tertiary);
	z-index: 15;
}

.align-top .section-personnalise-content {
	top: 0;
}

.align-bottom .section-personnalise-content {
	bottom: 0;
}

.section-personnalise-content,
.section-personnalise-title,
.section-personnalise-extract * {
	text-align: center;
}

.section-personnalise-title {
	margin-top: 0;
}

.section-personnalise-content .btn-primary {
	margin-top: 1rem;
	padding-top: 0;
	padding-bottom: 0;
}

.section-personnalise-background {
	height: 100%;
	width: 100%;
	max-height: 600px;
	object-fit: cover;
	object-position: center;
}

@media screen and (max-width: 1170px) {
.section-personnalise-content {
	padding: 2rem;
}
}

@media screen and (max-width: 900px) {
.section-personnalise-wrapper.align-top {
	flex-direction: column-reverse;
}

.section-personnalise-content {
	position: relative;
	top: unset;
	bottom: unset;
	left: unset;
	transform: unset;
	margin-top: var(--padding-large);
	margin-bottom: var(--padding-large);
	padding: 0 var(--padding-small);
}

.section-personnalise-background {
	max-height: 250px;
}
}



/* ------------------------------------------------------------------------------ */
/* ----- BLOCK : SLIDER-COLLECTIONS ----- */
/* ------------------------------------------------------------------------------ */
.slider-collections {
	position: relative;
}

.slider-collections:before {
	content: '';
	position: absolute;
	left: 0;
	bottom: 50%;
	transform: translate3d(0,-50%,0);
	height: 2px;
	width: 100%;
	background: var(--color-primary);
}

.item-slider-collections {
	text-align: center;
	display: block;
}

.item-slider-collections:hover .item-slider-collections-image {
	transform: scale(.95);
}

.item-slider-collections-image {
	margin: 0 auto;
	width: 100%;
	height: 280px;
	max-height: 450px;
	object-fit: cover;
	object-position: center;
	box-shadow: 0 0 5px rgba(0,0,0,.1);
	transition: var(--transition-standard);
}



/* ------------------------------------------------------------------------------ */
/* ----- BLOCK : PATCHWORK ----- */
/* ------------------------------------------------------------------------------ */
.patchwork-grid {
	display: grid;
	width: 100%;
	grid-template-rows: 1fr 1fr;
	grid-template-columns: 1fr 1fr 1fr;
	grid-template-areas:
	"a a d" 
	"b c d";
	gap: 50px;
}

.patchwork-grid-item {
	overflow: hidden;
}

.patchwork-grid-item-image {
	transition: 1s linear;
}

.patchwork-grid-item:hover > .patchwork-grid-item-image {
	transform: scale(1.1);
}

.patchwork-grid-item-01 {
	grid-area: a;
}

.patchwork-grid-item-02 {
	grid-area: b;
}

.patchwork-grid-item-03 {
	grid-area: c;
}

.patchwork-grid-item-04 {
	grid-area: d;
	height: calc(2 * 225px + 50px);
}

.patchwork-grid-item-01,
.patchwork-grid-item-02,
.patchwork-grid-item-03 {
	height: 225px;
}


.patchwork-grid-item-image {
	display: block;
	height: 100%;
	width: 100%;
	object-fit: cover;
	object-position: center;
}

@media screen and (max-width: 1170px) {
.patchwork-grid {
	gap: 25px;
}

.patchwork-grid-item-04 {
	height: calc(2 * 225px + 25px);
}
}

@media screen and (max-width: 767px) {
.patchwork-grid {
	grid-template-rows: 1fr 1fr 1fr;
	grid-template-columns: 1fr 1fr;
	grid-template-areas:
	"a a" 
	"b d"
	"c d";
}

.patchwork-grid-item-01,
.patchwork-grid-item-02,
.patchwork-grid-item-03 {
	height: 125px;
}

.patchwork-grid-item-04 {
	height: calc(2 * 125px + 25px);
}
}



/* ------------------------------------------------------------------------------ */
/* ----- BLOCK : PRODUCT-COLLECTION ----- */
/* ------------------------------------------------------------------------------ */

.product-collection-block {
	overflow-x: visible;
}

.product-collection-block-wrapper {
	display: flex;
	flex-direction: row;
	gap: 100px;
}

.product-collection-content {
	flex-basis: 100%;
	overflow: hidden;
}

.product-collection-gallery {
	display: flex;
	flex-direction: column;
	gap: 1em;
}

.product-collection-gallery img {
	display: block;
	height: auto;
	width: 100%;
	object-fit: contain;
}

.product-collection-description {
	margin-top: 2em;
}

.product-collection-description ul {
	margin-top: .7em;
}

.product-collection-sticky {
	flex-basis: 500px;
}

.product-collection-sticky-wrapper {
	position: sticky;
	top: calc(var(--header-height) + var(--padding-large));
	padding: 2rem;
	background: #fff;
}

.product-collection-title {
	margin-top: 0;
}

.product-collection-price {
	margin-top: 1.5em;
}

.product-collection-price p {
	margin: 0;
	font-size: 80%;
}

.product-collection-price .product-collection-price-amount {
	font-size: 16px;
	font-weight: 700;
}

@media screen and (max-width: 1170px) {
.product-collection-block-wrapper {
	flex-direction: column-reverse;
	gap: 50px;
}

.product-collection-sticky {
	flex-basis: 100%;
}

.product-collection-sticky-wrapper {
	position: relative;
	top: unset;
}
}


/* ------------------------------------------------------------------------------ */
/* ----- LISTING-COLLECTIONS ----- */
/* ------------------------------------------------------------------------------ */
.listing-collections {
	position: relative;
}

.listing-collections-wrapper {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap : var(--padding-large);
}

.item-listing-collections {
	text-align: center;
}

.item-listing-collections:hover .item-listing-collections-image {
	transform: scale(.95);
}

.item-listing-collections-image {
	margin: 0 auto;
	width: 100%;
	height: 250px;
	max-height: 450px;
	object-fit: cover;
	object-position: center;
	box-shadow: 0 0 5px rgba(0,0,0,.1);
	transition: var(--transition-standard);
}

@media screen and (max-width: 900px) {
.listing-collections-wrapper {
	grid-template-columns: repeat(2, 1fr);
}
}

@media screen and (max-width: 767px) {
.listing-collections-wrapper {
	grid-template-columns: repeat(1, 1fr);
	gap: var(--padding-small);
}
}



/* ------------------------------------------------------------------------------ */
/* ----- PAGE 404 ----- */
/* ------------------------------------------------------------------------------ */
.error404 .entry-content {
	padding-bottom: var(--padding-large);
}



/* ------------------------------------------------------------------------------ */
/* ----- WPFORMS ----- */
/* ------------------------------------------------------------------------------ */
.wpforms-container .wpforms-required-label {
	color: var(--color-primary);
}

.wpforms-container .wpforms-field-label {
	color: var(--color-grey);
	font-size: 16px;
	font-weight: 400;
}

.wpforms-container .wpforms-field input.wpforms-error,
.wpforms-container .wpforms-field input.user-invalid,
.wpforms-container .wpforms-field textarea.wpforms-error,
.wpforms-container .wpforms-field textarea.user-invalid,
.wpforms-container .wpforms-field select.wpforms-error,
.wpforms-container .wpforms-field select.user-invalid,
.wpforms-container .wpforms-field.wpforms-has-error .choices__inner {
	border: 2px solid #990000; 
}

.wpforms-field-gdpr-checkbox ul {
	padding-left: 0;
}



/* ------------------------------------------------------------------------------ */
/* ----- ADMIN FRONT ----- */
/* ------------------------------------------------------------------------------ */
#wpadminbar .ab-icon:before,
#wpadminbar .ab-icon:after {
	font-family: 'dashicons';
}



/* ------------------------------------------------------------------------------ */
/* ----- ATELIER-BOUTIQUE ----- */
/* ------------------------------------------------------------------------------ */
.atelier-boutique {
	padding: 100px 0;
}

@media screen and (max-width: 900px) {
.atelier-boutique {
	padding: 50px 0;
}
}
