/*
Theme Name: Expression Digitale
Theme URI: https://expression-digitale.com/
Author: Expression Digitale
Author URI: https://expression-digitale.com/
Description: Thème parent personnalisé pour le projet ExpressionDigitale.
Version: 1.0
Text Domain: expressiondigitale
*/

/* ==========================================================
   FONTS
========================================================== */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Sorts+Mill+Goudy:ital@0;1&display=swap');

/* ==========================================================
   GLOBAL
========================================================== */

body {
  background: #1E1F21;
  color: var(--color-text);
  font-family: 'Montserrat', sans-serif;
  position: relative;
/*  min-height: 100vh;*/
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;

  background-image:
    linear-gradient(rgba(254, 158, 103, 0.4), rgba(254, 158, 103, 0.4)),
    linear-gradient(rgba(254, 158, 103, 0.4), rgba(254, 158, 103, 0.4)),
    linear-gradient(rgba(254, 158, 103, 0.4), rgba(254, 158, 103, 0.4)),
    linear-gradient(rgba(254, 158, 103, 0.4), rgba(254, 158, 103, 0.4));

  background-size: 0.7px 100%;
  background-repeat: no-repeat;
  background-position:
    20% 0,
    40% 0,
    60% 0,
    80% 0;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--color-primary);
  transition: all 0.3s ease;
}

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

p {
  line-height: 1.5;
  font-weight: 300;
}

section {
  margin: 150px 0;
}

/* ==========================================================
   TYPOGRAPHY
========================================================== */

.site-main h1,
.site-main h2,
.site-main h3 {
  font-family: "Sorts Mill Goudy", serif;
  font-weight: 100 !important;
}

.site-main h1 {
  font-size: clamp(48px, 7vw, 80px);
}

.site-main h2 {
  font-size: clamp(38px, 5.8vw, 64px);
  text-transform: uppercase;
}

.site-main h3 {
  font-size: clamp(24px, 4vw, 30px);
  font-style: italic;
}

.titrecolle h2 {
  margin: -35px 0 0;
}

/* ==========================================================
   TITRE DANS CERCLE
========================================================== */



/* TITRES COLLÉS */
.titredanscercle h2{
  margin: -28px 0 0 !important;
  padding: 0 !important;
  text-align: center;
}

.titredanscercle h3 {
    margin: 0px 0 !important;
  padding: 0 !important;
  text-align: center;
}


/* ==========================================================
   LAYOUT
========================================================== */

main {
  max-width: 1400px;
  margin: 100px auto;
}

.container,
.container-header,
.container-footer {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}

.container-header,
.container-footer {
  max-width: 90%;
}

.row {
  display: flex;
  flex-wrap: wrap;
}

.col {
  display: flex;
  flex-direction: column;
}

/* ==========================================================
   GRID WIDTHS
========================================================== */

.w-100 {
  width: calc(100% - 100px);
  margin: 0 50px;
}

.w-75 {
  width: calc(75% - 100px);
  margin: 0 50px;
}

.w-50 {
  width: calc(50% - 100px);
  margin: 0 50px;
}

.w-33 {
  width: calc(33.333% - 100px);
  margin: 0 50px;
}

.w-25 {
  width: calc(25% - 100px);
  margin: 0 50px;
}

/* ==========================================================
   HEADER
========================================================== */

body.menu-open {
  overflow: hidden;
}

body.admin-bar .site-header {
  top: 32px;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 10px 0;
  transition: all 0.3s ease;
}

.site-header.scrolled {
  background: rgba(30, 31, 33, 0.9);
  backdrop-filter: blur(10px);
  box-shadow: 0 5px 20px rgb(152 161 196 / 5%);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

/* LOGO */

.site-logo {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  margin-top: 56px;
}

.site-logo img {
  max-height: 140px;
  transition: all 0.3s ease;
}

.site-header.scrolled .site-logo {
  margin-top: 15px;
}

.site-header.scrolled .site-logo img {
  max-height: 90px;
}

/* NAVIGATION */

.main-nav {
  flex: 1;
}

.main-nav ul {
  display: flex;
  gap: 30px;
}

.main-nav li {
  list-style: none;
  position: relative;
}

.main-nav a {
  position: relative;
  display: inline-block;
  padding-left: 30px;

  text-decoration: none;
  text-transform: uppercase;
  font-size: 14px;

  color: var(--color-text);
}

.main-nav a::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;

  width: 16px;
  height: 1px;

  background: var(--color-text);
  transform: translateY(-50%);
  transition: all 0.3s ease;
}

.main-nav a:hover,
.main-nav .current-menu-item a {
  color: var(--color-secondary);
}

.main-nav a:hover::before,
.main-nav .current-menu-item a::before {
  width: 24px;
  background: var(--color-secondary);
}

/* HEADER ICONS */

.header-icons {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-left: auto;
}

.header-icons a {
  position: relative;
  font-size: 16px;
  color: var(--color-text);
}

.header-icons a:hover {
  color: var(--color-secondary);
}

.cart-count {
  position: absolute;
  top: -5px;
  right: -10px;

  background: red;
  color: #fff;

  font-size: 12px;
  padding: 2px 6px;
  border-radius: 50%;
}

/* BURGER */

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;

  background: none;
  border: none;
  cursor: pointer;
}

.burger span {
  width: 25px;
  height: 2px;
  background: #fff;
  transition: all 0.3s ease;
}

.burger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.burger.active span:nth-child(2) {
  opacity: 0;
}

.burger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ==========================================================
   BUTTONS
========================================================== */

.btn {
  display: inline-block;
  padding: 10px 20px;
  text-decoration: none;
  font-weight: bold;
}

.btn-primary,
.checkout-button {
  display: inline-flex;
  align-items: center;
  gap: 12px;

  width: fit-content;
  max-width: max-content;

  padding: 14px 22px;

  border: 1px solid rgba(255,255,255,0.6) !important;
  background: transparent !important;

  color: #fff;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.9rem;

  transition: all 0.3s ease;
}

.btn-primary::before,
.checkout-button::before {
  content: "";
  width: 40px;
  height: 1px;
  background: rgba(255,255,255,0.7);
  transition: all 0.3s ease;
}

.btn-primary:hover,
.checkout-button:hover {
  border-color: #c58b5c !important;
  color: #c58b5c !important;
}

.btn-primary:hover::before,
.checkout-button:hover::before {
  width: 60px;
  background: #c58b5c;
}

/* ==========================================================
   HERO HOME
========================================================== */

.hero-home {
  position: relative;

  width: 100vw;
  margin-left: calc(50% - 50vw);

  min-height: 100vh;

  display: flex;
  align-items: center;

  background-position: right;
  background-repeat: no-repeat;
  background-size: contain !important;
}

main > section.hero-home {
  margin-top: -128px;
}

.hero-home .container {
  margin: 0 80px !important;
}

.hero-home .container h2 {
  width: 80%;
  margin: 0;

  font-size: 150px;
  line-height: 0.8;
  text-transform: none;
}

/* SCROLL INDICATOR */

.hero-home::before {
  content: "";
  position: absolute;

  left: 50%;
  bottom: 29px;

  width: 1px;
  height: 50px;

  background: rgba(255,255,255,0.4);
  transform: translateX(-50%);
}

.hero-home::after {
  content: "";
  position: absolute;

  left: 50%;
  bottom: 30px;

  width: 12px;
  height: 12px;

  border-left: 1px solid rgba(255,255,255,0.8);
  border-bottom: 1px solid rgba(255,255,255,0.8);

  transform: translateX(-50%) rotate(-45deg);
}

/* ==========================================================
   HERO SOCIALS
========================================================== */

.home .header-social {
  position: absolute;
  top: 80vh;
  right: 40px;

  transform: translateY(-50%);
  z-index: 10;
}

.header-social .social-icons {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}

.header-social .social-icons a {
  writing-mode: vertical-rl;
  transform: rotate(180deg);

  color: #fff;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 14px;

  opacity: 0.7;
}

.header-social .social-icons a:hover {
  opacity: 1;
  color: #c58b5c;
}

.header-social .social-icons i {
  transform: rotate(90deg);
}

/* ==========================================================
   HERO CIRCLE SECTION
========================================================== */

.hero {
  position: relative;
  margin: 250px 0;
  padding: 150px 50px;
}

.hero::before {
  content: "";
  position: absolute;

  top: 50%;
  left: 50%;

  width: 600px;
  height: 600px;

  background: #815C47;
  border-radius: 50%;

  transform: translate(-50%, -50%);

  z-index: -1;
  box-shadow: 0 40px 60px #48372E;
}

.hero h2,
.hero h3 {
  margin: -12px 0 !important;
  padding: 0 !important;
}

/* ==========================================================
   BLOCKQUOTE SECTION
========================================================== */

.blockquote {
  position: relative;

  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-top: -150px;

  background: #B06A42;
}

.blockquote::before {
  content: "";
  position: absolute;

  top: 80%;
  left: 50%;

  width: 1000px;
  height: 1000px;

  background: #815C47;
  border-radius: 50%;

  transform: translate(-50%, -50%);

  z-index: -1;
  box-shadow: 0 40px 60px #48372E;
}

/* ==========================================================
   PROSE QUOTE
========================================================== */

.prose {
  position: relative;

  width: 100vw;
  margin-left: calc(50% - 50vw);

  padding: 100px 0;
  text-align: center;

  background-image:
    linear-gradient(rgba(0,0,0,0.45), rgba(0,0,0,0.45));

  background-size: 100% 1px;
  background-repeat: no-repeat;
  background-position: top 40px left 0;
}

.bg-text-quote {
  position: absolute;
  top: 40px;
  left: 50%;

  transform: translateX(-50%);

  font-family: "Sorts Mill Goudy", serif;
  font-size: clamp(5rem, 12vw, 10rem);
  font-weight: 100 !important;
  text-transform: uppercase;
  letter-spacing: 4px;

  color: rgba(255, 180, 120, 0.12);

  white-space: nowrap;
  pointer-events: none;
  user-select: none;
}

.prose p {
  position: relative;
  z-index: 2;

  max-width: 1100px;
  margin: 0 auto;

  font-family: "Sorts Mill Goudy", serif;
  font-size: 30px;
  line-height: 2;
  font-weight: 100 !important;

  color: #fff;
}

.prose::before,
.prose::after {
  content: "";
  position: absolute;
  bottom: 40px;

  width: 40%;
  height: 1px;

  background: rgba(0,0,0,0.45);
}

.prose::before {
  left: 0;
}

.prose::after {
  right: 0;
}

.prose p::after {
  content: "O";

  position: absolute;
  left: 50%;
  bottom: -195px;

  transform: translateX(-50%);

  font-family: "Sorts Mill Goudy", serif;
  font-size: 180px;
  line-height: 1;

  color: #ffa164;
}

/* ==========================================================
   PRODUCTS GRID
========================================================== */

.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.product-item {
  display: flex;
  flex-direction: column;
  transition: transform 0.4s ease;
}

.product-item a {
  display: inline-block;
  line-height: 0;
  overflow: hidden;
}

.product-item img {
  width: 100%;
  transition: transform 0.7s ease;
}

.product-item:hover {
  transform: translateY(-6px);
}

.product-item:hover img {
  transform: scale(1.04);
}

.product-item:hover h4 {
  color: #c58b5c;
}

.product-info {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
  margin-top: 15px;
}

.product-item h4 {
  flex: 1;
  max-width: 70%;

  margin: 0;

  font-weight: 100;
  line-height: 1.4;
  text-transform: uppercase;
}

.product-price {
  white-space: nowrap;
  text-align: right;
  font-weight: 100;
}

/* ==========================================================
   SINGLE PRODUCT
========================================================== */

.woocommerce img, .woocommerce-page img {
  width:100%;
}

.product-breadcrumb {
  margin-bottom:40px !important;
}
.product-category {
  font-family: "Sorts Mill Goudy", serif;
  font-style: italic;
  font-weight: 100 !important;
  font-size: 25px;
}

.single-product .product-price {
  font-size:20px;
  font-weight: 500;
}

.product-short-description span {
  text-transform: uppercase;
  margin: 30px 0;
  display: block;
}

.woocommerce .quantity .qty {
      width: 3.631em;
    text-align: center;
    padding: 15px;
    border-radius: 0 !important;
    border: none;
}
.woocommerce-cart .cart-collaterals .cart_totals table,
.woocommerce table.shop_table {
  padding:20px;
}

.woocommerce table.shop_table {
  background: #fff;
  border-radius: 0 !important;

}

.woocommerce table.shop_table td {
  border-top:1px solid rgba(0,0,0,0.4);
}

.woocommerce table.shop_table th,
.woocommerce table.shop_table span,
.woocommerce-shipping-totals label,
p.woocommerce-shipping-destination,
.cart_item td{
  color: #000 !important;
}

 .wc-block-cart__main .wc-block-cart-items,
 .wc-block-cart .wc-block-components-sidebar {
    border-spacing: 0;
    background: #fff !important;
    color: #000 !important;
    padding: 20px !important;
  }

  .wc-block-cart .wc-block-cart__submit-container,
  .woocommerce_checkout_place_order{
    border: 2px solid #b06a42;
    background: none !important;
   
  }
    .wc-block-cart .wc-block-cart__submit-container a { 
     text-decoration: none !important; }

   .wc-block-cart .wc-block-cart__submit-container:hover a {
    color:#fff !important;
    background: #b06a42;
   }

  .wc-block-cart .wc-block-cart__submit-container:hover,
  .woocommerce_checkout_place_order:hover{
    border: 2px solid #b06a42;
    background: #b06a42;
    
  }
  .wc-block-cart .wp-block-woocommerce-cart-order-summary-block,
  .editor-styles-wrapper table.wc-block-cart-items .wc-block-cart-items__row .wc-block-cart-item__total, 
  table.wc-block-cart-items .wc-block-cart-items__row .wc-block-cart-item__total,
  .wc-block-components-product-metadata .wc-block-components-product-metadata__description>p, 
  .wc-block-components-product-metadata .wc-block-components-product-metadata__variation-data,
  .editor-styles-wrapper table.wc-block-cart-items .wc-block-cart-items__row .wc-block-cart-item__prices, table.wc-block-cart-items .wc-block-cart-items__row .wc-block-cart-item__prices,.editor-styles-wrapper table.wc-block-cart-items .wc-block-cart-items__row .wc-block-components-product-name, table.wc-block-cart-items .wc-block-cart-items__row .wc-block-components-product-name{
    font-size:16px;
  }

  .woocommerce form .form-row .input-text, .woocommerce form .form-row select  {
    border-radius: 0 !important;
  }

  .woocommerce table.shop_table tbody th, .woocommerce table.shop_table tfoot td, .woocommerce table.shop_table tfoot th {
    border-top:1px solid rgba(0,0,0,0.4) !important;
  }

   :where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce button.button.alt {
    background-color: transparent !important ;
    border: 2px solid #b06a42 !important;
    color: #b06a42 !important;
    border-radius: 0 !important;
    padding:20px 50px;
   }


    :where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce button.button.alt:hover {
    border: 2px solid #b06a42 !important;
    background: #b06a42 !important;
    color:#fff !important;
    
  }

  .woocommerce .woocommerce-customer-details address {
    font-style: normal;
    margin-bottom: 0;
    border: 1px solid rgba(0, 0, 0, .1);
    border-bottom-width: 2px;
    border-right-width: 2px;
    text-align: left;
    width: 100%;
    border-radius: 0 !important;
    padding: 20px !important;
    box-sizing: border-box;
    background: #fff !important;
    color: #000 !important;
}

.woocommerce ul.order_details {
    margin: 0 0 3em;
    list-style: none;
    background: #fff;
    color: #000;
    padding: 20px;
}

/*.woocommerce-account .woocommerce-MyAccount-navigation {
    background:#fff;
   
  }*/

  .woocommerce-account .woocommerce-MyAccount-navigation ul {
     padding:0 !important;
   }
  .woocommerce-account .woocommerce-MyAccount-navigation li {
  
    border-bottom:1px solid rgba(255,255,255,0.4);
    list-style: none !important;
  }

   .woocommerce-account .woocommerce-MyAccount-navigation li:last-child {
    border-bottom:none;
   }
  .woocommerce-account .woocommerce-MyAccount-navigation  li a {
    
    text-decoration: none !important;
    padding:20px 20px;
    display: block;
  }

  .woocommerce-account h2 {
    font-size:30px;
  }

tfoot {
  color:#000;
}

.woocommerce-account .woocommerce-MyAccount-navigation li.is-active a,
.woocommerce-account .woocommerce-MyAccount-navigation li:hover a {
  background: #fd9d67 ;
  color:#fff;
}

/* ==========================================================
   CUSTOM FILTERS
========================================================== */

.custom-filters {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 20px;

  margin-bottom: 60px;
}

/* BOUTONS FILTRES */

.custom-filters button,
.custom-filters a {
  position: relative;

  padding: 0 0 8px;

  background: transparent;
  border: none;

  color: rgba(255,255,255,0.6);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 14px;

  cursor: pointer;

  transition: all 0.3s ease;
}

/* LIGNE */
.custom-filters button::after,
.custom-filters a::after {
  content: "";

  position: absolute;
  left: 0;
  bottom: 0;

  width: 0;
  height: 1px;

  background: #c58b5c;

  transition: width 0.3s ease;
}

/* HOVER + ACTIVE */

.custom-filters button:hover,
.custom-filters a:hover,
.custom-filters .active {
  color: #fff;
}

.custom-filters button:hover::after,
.custom-filters a:hover::after,
.custom-filters .active::after {
  width: 100%;
}

/* ==========================================================
   CUSTOM FILTERS
========================================================== */

.custom-filters {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
}

/* BUTTONS */

.custom-filters button {
  position: relative;

  display: flex;
  align-items: center;
  gap: 12px;

  padding: 12px 28px;

  background: transparent;
  border: 1px solid rgba(255,255,255,0.3);

  color: #fff;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 14px;

  cursor: pointer;

  transition: all 0.3s ease;
}

/* LIGNE */

.custom-filters button span {
  display: block;

  width: 30px;
  height: 1px;

  background: rgba(255,255,255,0.6);

  transition: all 0.3s ease;
}

/* HOVER */

.custom-filters button:hover {
  border-color: #fff;
}

/* ACTIVE */

.custom-filters button.active {
  border-color: #fff;
}

.custom-filters button.active span {
  background: #fff;
}

/* ==========================================================
   PAGINATION
========================================================== */

.pagination {
  width: 100%;
  flex: 0 0 100%;

  margin-top: 40px;

  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
}

/* LINKS */

.pagination a,
.pagination span {
  padding: 8px 12px;

  border: 1px solid rgba(255,255,255,0.2);

  color: #fff;
  text-decoration: none;

  transition: all 0.3s ease;
}

/* HOVER */

.pagination a:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
}

/* CURRENT */

.pagination .current {
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: #fff;
}

/* ==========================================================
   FOOTER
========================================================== */

#site-footer {
  padding: 60px 20px 30px;
  text-align: center;
}

.footer-top {
  margin-bottom: 40px;
}

.footer-top img {
  width: 259px !important;
  height: 144px !important;
  margin: 0 auto;
}

.footer-columns {
  display: flex;
  justify-content: space-around;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-columns .col {
  max-width: 250px;
}

.footer-columns h4 {
  margin-bottom: 15px;
  font-size: 14px;
  text-transform: uppercase;
}

.footer-columns p {
  line-height: 1.6;
  font-weight: 300;
}

.footer-bottom {
  margin-top: 150px;
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 40px;
}

.footer-container {
  margin-top: 30px;
  font-size: 13px;
}

.footer-container a {
  color:#fff;
  text-decoration: none;
}

.footer-container a:hover {
  color:var(--color-primary);
  text-decoration: none;
}

/* ==========================================================
   HELPERS
========================================================== */

.text-center {
  text-align: center;
}

.text-left {
  text-align: left;
}

.text-right {
  text-align: right;
}

.d-flex {
  display: flex;
}

.flex-column {
  flex-direction: column;
}

.flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
}

.justify-between {
  justify-content: space-between;
}

.align-center {
  align-items: center;
}

.w-full {
  width: 100%;
}

.h-full {
  height: 100%;
}

.relative {
  position: relative;
}

.absolute {
  position: absolute;
}

.overflow-hidden {
  overflow: hidden;
}

.uppercase {
  text-transform: uppercase;
}

.no-margin {
  margin: 0 !important;
}

.no-padding {
  padding: 0 !important;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.opacity-80 {
  opacity: 0.8;
}

.opacity-60 {
  opacity: 0.6;
}

.transition {
  transition: all 0.3s ease;
}

/* ==========================================================
   SPACING
========================================================== */

.mt-0 { margin-top: 0; }
.mt-20 { margin-top: 20px; }
.mt-40 { margin-top: 40px; }
.mt-50 { margin-top: 50px; }
.mt-60 { margin-top: 60px; }
.mt-100 { margin-top: 100px; }
.mt-250 { margin-top: 250px; }
.mt-300 { margin-top: 300px; }

.mb-0 { margin-bottom: 0; }
.mb-20 { margin-bottom: 20px; }
.mb-40 { margin-bottom: 40px; }
.mb-60 { margin-bottom: 60px; }
.mb-100 { margin-bottom: 100px; }

.m-auto { margin: 0 auto; }
.pt-0 { padding-top: 0; }
.pt-20 { padding-top: 20px; }
.pt-40 { padding-top: 40px; }
.pt-60 { padding-top: 60px; }

.pb-0 { padding-bottom: 0; }
.pb-20 { padding-bottom: 20px; }
.pb-40 { padding-bottom: 40px; }
.pb-60 { padding-bottom: 60px; }

/* ==========================================================
   RESPONSIVE HELPERS
========================================================== */

.hide-mobile {
  display: block;
}

.show-mobile {
  display: none;
}

@media (max-width: 768px) {

  .hide-mobile {
    display: none !important;
  }

  .show-mobile {
    display: block !important;
  }

}

/* ==========================================================
   RESPONSIVE
========================================================== */

@media (max-width: 1200px) {

  .hero-home .container h2 {
    font-size: 110px;
    width: 90%;
  }

  .hero::before {
    width: 500px;
    height: 500px;
  }

  .prose p {
    font-size: 26px;
    padding: 0 40px;
  }

  .titredanscercle::before {
    width: 500px;
    height: 500px;
  }

}

@media (max-width: 992px) {

  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .burger {
    display: flex;
  }

  .main-nav {
    position: fixed;
    inset: 0;

    width: 100%;
    height: 100vh;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #1E1F21;

    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);

    transition: all 0.4s ease;
  }

  .main-nav.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .main-nav ul {
    flex-direction: column;
    align-items: center;
  }

  .main-nav a {
    font-size: 24px;
  }

  .site-logo {
    position: static;
    transform: none;
    margin: 0 auto;
  }

  .hero-home .container h2 {
    font-size: 80px;
    width: 100%;
  }

  .hero {
    padding: 100px 30px;
  }

  .hero::before {
    width: 420px;
    height: 420px;
  }

  .blockquote::before {
    width: 700px;
    height: 700px;
  }
  .titredanscercle::before {
    width: 420px;
    height: 420px;
  }

}

@media (max-width: 768px) {

  section {
    margin: 100px 0;
  }

  .w-100,
  .w-75,
  .w-50,
  .w-33,
  .w-25 {
    width: 100%;
    margin: 0;
  }

  .products-grid {
    grid-template-columns: 1fr;
  }

  .header-social {
    display: none;
  }

  .hero-home {
    min-height: 100vh;
    background-size: cover !important;
    background-position: 65% center;
  }

  .hero-home .container {
    margin: 0 25px !important;
  }

  .hero-home .container h2 {
    font-size: 58px;
    line-height: 0.95;
  }

  .hero {
    margin: 100px 0;
    padding: 80px 20px;
  }

  .hero::before {
    width: 300px;
    height: 300px;
  }

  .blockquote::before {
    width: 500px;
    height: 500px;
  }

  .prose {
    padding: 70px 20px 110px;
  }

  .bg-text-quote {
    font-size: 60px;
  }

  .prose p {
    font-size: 20px;
    line-height: 1.6;
  }

  .prose::before,
  .prose::after {
    width: 28%;
  }

  .prose p::after {
    font-size: 90px;
    bottom: -105px;
  }

  .footer-columns {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .titredanscercle {
    padding: 80px 20px;
  }

  .titredanscercle::before {
    width: 300px;
    height: 300px;

    box-shadow: 0 20px 40px #48372E;
  }

  .titredanscercle h2,
  .titredanscercle h3 {
    text-align: center;
    margin: 0 !important;
  }

 .custom-filters {
    gap: 15px;
  }

  .custom-filters button {
    padding: 10px 18px;
    font-size: 12px;
  }

  .custom-filters button span {
    width: 20px;
  }

  .pagination {
    margin-top: 30px;
    gap: 6px;
  }

  .pagination a,
  .pagination span {
    padding: 6px 10px;
    font-size: 13px;
  }
}

@media (max-width: 480px) {

  .hero-home .container h2 {
    font-size: 46px;
  }

  .site-main h1 {
    font-size: 42px;
  }

  .site-main h2 {
    font-size: 34px;
  }

  .site-main h3 {
    font-size: 22px;
  }

  .btn-primary,
  .checkout-button {
    padding: 12px 18px;
    font-size: 12px;
  }

  .prose p {
    font-size: 17px;
  }

  .bg-text-quote {
    font-size: 42px;
  }
  .titredanscercle::before {
    width: 240px;
    height: 240px;
  }

 .custom-filters {
    flex-direction: column;
    align-items: center;
  }

  .custom-filters button {
    width: 100%;
    justify-content: center;
  }

}

