/* ========================================
   RESET & BASE STYLES
   ======================================== */

/* Custom reset.css from https://www.joshwcomeau.com/css/custom-css-reset/ */
*,
*::before,
*::after {
  box-sizing: border-box;
}

* {
  margin: 0;
}

@media (prefers-reduced-motion: no-preference) {
  html {
    interpolate-size: allow-keywords;
  }
}

body {
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

img,
picture,
video,
canvas,
svg {
  display: block;
}

input,
button,
textarea,
select {
  font: inherit;
}

p,
h1,
h2,
h3,
h4,
h5,
h6 {
  overflow-wrap: break-word;
}

p {
  text-wrap: pretty;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  text-wrap: balance;
}

:root {
  isolation: isolate;
}

/* ========================================
   CSS VARIABLES
   ======================================== */

:root {
  /* Font Families */
  --font-poppins: "Poppins", sans-serif;
  --font-gloock: "Gloock", serif;

  /* Color Palette */
  /* Neutral Colors */
  --color-black: #2a2a2a;
  --color-grey-darker: #201e22;
  --color-grey-dark: #2d2832;
  --color-grey-1: #7a7a7a;
  --color-grey-2: #c5c7c6;
  --color-grey-3: #e2e2e2;
  --color-grey-4: #fafafa;
  --color-white: #ffffff;

  /* Red Colors */
  --color-red-lighter: #ffdfe0;
  --color-red-light: #df4347;
  --color-red-medium: #a80004;
  --color-red-dark: #8f0104;

  /* Green Colors */
  --color-green-lighter: #f0ffed;
  --color-green-light: #e1f8da;
  --color-green-medium: #cef4c3;
  --color-green-dark: #275d15;

  /* Orange Colors */
  --color-orange-lighter: #fffaf1;
  --color-orange-light: #fff2d5;
  --color-orange-medium: #fcbc31;
  --color-orange-dark: #aa760e;
  --color-orange-logo: #ffdf98;

  /* Font Sizes */
  --font-size-h1: 88px;
  --font-size-h2: 64px;
  --font-size-h3: 32px;
  --font-size-h3-bigger: 40px;
  --font-size-h4: 24px;
  --font-size-h5: 18px;
  --font-size-h6: 16px;
  --font-size-title-small: 16px;
  --font-size-body: 16px;
  --font-size-small: 14px;
  --font-size-link-small: 14px;
  --font-size-quote: 24px;
  --font-size-md: 16px;
  --font-size-sm: 14px;
  --font-size-xs: 12px;

  /* Line Heights */
  --line-height-h1: 82px;
  --line-height-h2: 64px;
  --line-height-h3: 36px;
  --line-height-h3-bigger: 44px;
  --line-height-h4: 28px;
  --line-height-h5: 22px;
  --line-height-h6: 22px;
  --line-height-title-small: 22px;
  --line-height-body: 26px;
  --line-height-small: 22px;
  --line-height-link-small: 18px;
  --line-height-quote: 34px;

  /* Font Weights */
  --weight-regular: 400;
  --weight-medium: 500;
  --weight-semibold: 600;
  --weight-bold: 700;

  /* Layout/Screen */
  --screen-size: 1240px;
  --screen-size-header: 1376px;

  /* Media Query Breakpoints - Note: CSS variables don't work in @media queries */
  /* Use these for JavaScript, container queries, or other CSS properties */
}

body {
  font-family: var(--font-poppins);
  font-size: var(--font-size-body);
  font-weight: var(--weight-regular);
  line-height: var(--line-height-body);
  color: var(--color-grey-darker);
  background-color: white;
}

code {
  background-color: var(--color-red-lighter);
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 500;
}

u {
  text-decoration: underline;
}

/* ========================================
   LAYOUT & CONTAINERS
   ======================================== */
.container {
  max-width: calc(var(--screen-size) + 2 * 32px);
  margin: 0 auto;
  padding: 0 32px;
  width: 100%;
}

.container.container--header {
  max-width: calc(var(--screen-size-header) + 2 * 32px);
}

.container.container--swipper {
  padding: 0;
}

@media (max-width: 768px) {
  .container {
    padding: 0 16px;
  }
}

.section-header {
  margin-bottom: 60px;
}

.section-header.section-header--centered {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

/* Heading Styles */
.h1,
h1 {
  font-family: var(--font-gloock);
  font-size: var(--font-size-h1);
  font-weight: var(--weight-regular);
  line-height: var(--line-height-h1);
}

.h2,
h2 {
  font-family: var(--font-gloock);
  font-size: var(--font-size-h2);
  font-weight: var(--weight-regular);
  line-height: var(--line-height-h2);
}

.h3-bigger {
  font-family: var(--font-gloock);
  font-size: var(--font-size-h3-bigger);
  font-weight: var(--weight-regular);
  line-height: var(--line-height-h3-bigger);
}

.h3,
h3 {
  font-family: var(--font-gloock);
  font-size: var(--font-size-h3);
  font-weight: var(--weight-regular);
  line-height: var(--line-height-h3);
}

.h4,
h4 {
  font-family: var(--font-poppins);
  font-size: var(--font-size-h4);
  font-weight: var(--weight-semibold);
  line-height: var(--line-height-h4);
}

.h5,
h5 {
  font-family: var(--font-poppins);
  font-size: var(--font-size-h5);
  font-weight: var(--weight-bold);
  line-height: var(--line-height-h5);
}

.h6,
h6 {
  font-family: var(--font-gloock);
  font-size: var(--font-size-h6);
  font-weight: var(--weight-bold);
  line-height: var(--line-height-h6);
}

/* Title Small Style */
.title-small {
  font-family: var(--font-poppins);
  font-size: var(--font-size-title-small);
  font-weight: var(--weight-regular);
  line-height: var(--line-height-title-small);
  text-transform: uppercase;
  letter-spacing: 4px;
}

/* Text Styles */
.text-regular,
p {
  font-family: var(--font-poppins);
  font-size: var(--font-size-body);
  font-weight: var(--weight-regular);
  line-height: var(--line-height-body);
}

.text-bold,
strong,
b {
  font-family: var(--font-poppins);
  font-size: var(--font-size-body);
  font-weight: var(--weight-bold);
  line-height: var(--line-height-body);
}

.text-small {
  font-family: var(--font-poppins);
  font-size: var(--font-size-small);
  font-weight: var(--weight-regular);
  line-height: var(--line-height-small);
}

.text-small-bold {
  font-family: var(--font-poppins);
  font-size: var(--font-size-small);
  font-weight: var(--weight-bold);
  line-height: var(--line-height-small);
}

/* Link Styles */
.link,
a {
  color: var(--color-grey-darker);
  transition: color 0.2s ease;
  text-underline-offset: 8px;
}

a:hover {
  text-decoration: underline;
}

.link-small {
  font-family: var(--font-poppins);
  font-size: var(--font-size-link-small);
  font-weight: var(--weight-regular);
  line-height: var(--line-height-link-small);
  color: var(--color-blue);
  text-decoration: underline;
}

.link-white {
  font-weight: var(--weight-bold);
  color: var(--color-white);
  text-decoration: underline;
}

.quote,
blockquote {
  padding-left: 0;
  font-size: var(--font-size-quote);
  font-style: normal;
  font-weight: var(--weight-regular);
  line-height: var(--line-height-quote);
}

.font-gloock {
  font-family: var(--font-gloock);
}

.font-poppins {
  font-family: var(--font-poppins);
}

/* Responsive Typography */
@media (max-width: 768px) {
  :root {
    --font-size-h1: 45px;
    --font-size-h2: 32px;
    --font-size-h3: 24px;
    --font-size-h4: 20px;
    --font-size-h5: 18px;
    --font-size-h6: 16px;
    --font-size-title-small: 16px;
    --line-height-h1: 40px;
    --line-height-h2: 38px;
    --line-height-h3: 30px;
    --line-height-h4: 26px;
    --line-height-h5: 28px;
    --line-height-h6: 28px;
    --line-height-title-small: 22px;
  }

  .section-header {
    margin-bottom: 30px;
  }
}

/* ========================================
   BUTTON SYSTEM
   ======================================== */
:root {
}
/* === Base Button Styles === */
body.woocommerce .button,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-poppins);
  font-size: 14px;
  font-weight: var(--weight-medium);
  line-height: 1.2;
  padding: 12px 24px;
  border: 1px solid transparent;
  border-radius: 4px;
  background: none;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.2s ease;
  white-space: nowrap;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  box-sizing: border-box;
  text-decoration: none;
}

body.woocommerce .button:hover,
.button:hover {
  text-decoration: none;
}

body.woocommerce .button-fullwidth,
.button-fullwidth {
  width: 100%;
}

body.woocommerce .button:focus,
.button:focus {
  outline: 2px solid var(--color-orange-medium);
  outline-offset: 2px;
}

/* === Button Variants === */
body.woocommerce .button-orange,
.button-orange {
  background-color: var(--color-orange-medium);
  color: var(--color-black);
  border-color: var(--color-orange-medium);
}

body.woocommerce .button-black,
.button-black {
  background-color: var(--color-black);
  color: var(--color-white);
  border-color: var(--color-black);
}

body.woocommerce .button-black:hover,
.button-black:hover {
  background-color: var(--color-grey-1);
  border-color: var(--color-grey-1);
  color: var(--color-white);
}

body.woocommerce .button-black:active,
body.woocommerce .button-black.pressed,
.button-black:active,
.button-black.pressed {
  background-color: var(--color-grey-2);
  border-color: var(--color-grey-2);
  color: var(--color-white);
}

body.woocommerce .button-black:disabled,
body.woocommerce .button-black.disabled,
.button-black:disabled,
.button-black.disabled {
  background-color: var(--color-grey-3);
  border-color: var(--color-grey-3);
  color: var(--color-white);
  cursor: not-allowed;
}

body.woocommerce .button-orange:hover,
.button-orange:hover {
  background-color: var(--color-orange-dark);
  border-color: var(--color-orange-dark);
  color: var(--color-white);
}

body.woocommerce .button-orange:active,
body.woocommerce .button-orange.pressed,
.button-orange:active,
.button-orange.pressed {
  background-color: var(--color-orange-light);
  border-color: var(--color-orange-light);
  color: var(--color-black);
}

body.woocommerce .button-orange:disabled,
body.woocommerce .button-orange.disabled,
.button-orange:disabled,
.button-orange.disabled {
  background-color: var(--color-grey-3);
  border-color: var(--color-grey-3);
  color: var(--color-white);
  cursor: not-allowed;
}

body.woocommerce .button-white,
.button-white {
  background-color: var(--color-grey-4);
  border-color: var(--color-grey-4);
  color: var(--color-black);
}

body.woocommerce .button-white:hover,
.button-white:hover {
  background-color: var(--color-grey-3);
  border-color: var(--color-grey-3);
  color: var(--color-black);
}

body.woocommerce .button-white:active,
body.woocommerce .button-white.pressed,
.button-white:active,
.button-white.pressed {
  background-color: var(--color-grey-3);
  border-color: var(--color-grey-3);
  color: var(--color-black);
}

body.woocommerce .button-white:disabled,
body.woocommerce .button-white.disabled,
.button-white:disabled,
.button-white.disabled {
  background-color: var(--color-grey-3);
  border-color: var(--color-grey-3);
  color: var(--color-white);
  cursor: not-allowed;
}

body.woocommerce .button-black-outlined,
.button-black-outlined {
  background-color: transparent;
  color: var(--color-black);
  border-color: var(--color-black);
}

body.woocommerce .button-black-outlined:hover,
.button-black-outlined:hover {
  background-color: var(--color-grey-4);
  color: var(--color-black);
  border-color: var(--color-black);
}

body.woocommerce .button-black-outlined:active,
body.woocommerce .button-black-outlined.pressed,
.button-black-outlined:active,
.button-black-outlined.pressed {
  background-color: var(--color-grey-3);
  color: var(--color-black);
  border-color: var(--color-black);
}

body.woocommerce .button-black-outlined:disabled,
body.woocommerce .button-black-outlined.disabled,
.button-black-outlined:disabled,
.button-black-outlined.disabled {
  background-color: transparent;
  color: var(--color-grey-3);
  border-color: var(--color-grey-3);
  cursor: not-allowed;
}

body.woocommerce .button-white-outlined,
.button-white-outlined {
  background-color: transparent;
  color: var(--color-white);
  border-color: var(--color-white);
}

body.woocommerce .button-white-outlined:hover,
.button-white-outlined:hover {
  background-color: rgba(255, 255, 255, 0.1);
  color: var(--color-white);
  border-color: var(--color-white);
}

body.woocommerce .button-white-outlined:active,
body.woocommerce .button-white-outlined.pressed,
.button-white-outlined:active,
.button-white-outlined.pressed {
  background-color: rgba(255, 255, 255, 0.2);
  color: var(--color-white);
  border-color: var(--color-white);
}

body.woocommerce .button-white-outlined:disabled,
body.woocommerce .button-white-outlined.disabled,
.button-white-outlined:disabled,
.button-white-outlined.disabled {
  background-color: transparent;
  color: var(--color-grey-3);
  border-color: var(--color-grey-3);
  cursor: not-allowed;
}

body.woocommerce .button-orange-outlined,
.button-orange-outlined {
  background-color: transparent;
  color: var(--color-orange-medium);
  border-color: var(--color-orange);
}

body.woocommerce .button-orange-outlined:hover,
.button-orange-outlined:hover {
  background-color: var(--color-orange-medium);
  color: var(--color-black);
  border-color: var(--color-orange-medium);
}

body.woocommerce .button-orange-outlined:active,
body.woocommerce .button-orange-outlined.pressed,
.button-orange-outlined:active,
.button-orange-outlined.pressed {
  background-color: var(--color-orange-dark);
  color: var(--color-black);
  border-color: var(--color-orange-dark);
}

body.woocommerce .button-orange-outlined:disabled,
body.woocommerce .button-orange-outlined.disabled,
.button-orange-outlined:disabled,
.button-orange-outlined.disabled {
  background-color: transparent;
  color: var(--color-grey-3);
  border-color: var(--color-grey-3);
  cursor: not-allowed;
}

body.woocommerce .button-icon,
.button-icon {
  padding: 12px;
  min-width: 44px;
  min-height: 44px;
}

body.woocommerce .button-icon-left::before,
.button-icon-left::before {
  content: "+";
  font-size: 14px;
  font-weight: normal;
}

body.woocommerce .button-icon-right::after,
.button-icon-right::after {
  content: ">";
  font-size: 14px;
  font-weight: normal;
}

body.woocommerce .button-icon-plus::before,
.button-icon-plus::before {
  content: "+";
  font-size: 14px;
  font-weight: normal;
}

body.woocommerce .button-icon-arrow::after,
.button-icon-arrow::after {
  content: ">";
  font-size: 14px;
  font-weight: normal;
}

@media (max-width: 768px) {
  body.woocommerce .button,
  .button {
    font-size: 13px;
    padding: 10px 20px;
  }
}

/* ========================================
   SECTION CURVES
   ======================================== */
.section-curve {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10;
  display: grid;
  color: var(--curve-color, var(--color-black));
  height: auto;
  transform: translateY(-95%);
}

.section-with-curve {
  position: relative;
}

.section-with-curve::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  aspect-ratio: 1440 / 25;
  background-color: var(--curve-color, var(--color-black));
  -webkit-mask: url("data:image/svg+xml,%3Csvg width='1440' height='25' viewBox='0 0 1440 25' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 24.5C0 24.5 408.13 0 721.5 0C1034.87 0 1440 24.5 1440 24.5H0Z' fill='black'/%3E%3C/svg%3E")
    no-repeat center top;
  mask: url("data:image/svg+xml,%3Csvg width='1440' height='25' viewBox='0 0 1440 25' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 24.5C0 24.5 408.13 0 721.5 0C1034.87 0 1440 24.5 1440 24.5H0Z' fill='black'/%3E%3C/svg%3E")
    no-repeat center top;
  mask-size: cover;
  -webkit-mask: url("data:image/svg+xml,%3Csvg width='1440' height='25' viewBox='0 0 1440 25' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 24.5C0 24.5 408.13 0 721.5 0C1034.87 0 1440 24.5 1440 24.5H0Z' fill='black'/%3E%3C/svg%3E")
    no-repeat center top;
  -webkit-mask-size: cover;
  transform: translateY(-96%);
  z-index: 10;
}

.curve-grey-darker::before {
  --curve-color: var(--color-grey-darker);
}

.curve-white::before {
  --curve-color: var(--color-white);
}

.curve-black::before {
  --curve-color: var(--color-black);
}

.curve-orange-dark::before {
  --curve-color: var(--color-orange-dark);
}

.curve-orange-light::before {
  --curve-color: var(--color-orange-light);
}

.curve-orange-lighter::before {
  --curve-color: var(--color-orange-lighter);
}

.section-with-curve-subtracted {
  position: relative;
}

.section-with-curve-subtracted::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  aspect-ratio: 1439 / 46;
  background-color: var(--curve-color, var(--color-black));
  -webkit-mask: url("data:image/svg+xml,%3Csvg width='1439' height='46' viewBox='0 0 1439 46' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 0C1 0 405.848 37.8897 719.001 37.8896C1023.15 37.8896 1416.61 2.14715 1439 0.0908203V46H-1V0H1Z' fill='%23D9D9D9'/%3E%3C/svg%3E")
    no-repeat center top;
  mask: url("data:image/svg+xml,%3Csvg width='1439' height='46' viewBox='0 0 1439 46' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 0C1 0 405.848 37.8897 719.001 37.8896C1023.15 37.8896 1416.61 2.14715 1439 0.0908203V46H-1V0H1Z' fill='%23D9D9D9'/%3E%3C/svg%3E")
    no-repeat center top;
  mask-size: cover;
  -webkit-mask: url("data:image/svg+xml,%3Csvg width='1439' height='46' viewBox='0 0 1439 46' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 0C1 0 405.848 37.8897 719.001 37.8896C1023.15 37.8896 1416.61 2.14715 1439 0.0908203V46H-1V0H1Z' fill='%23D9D9D9'/%3E%3C/svg%3E")
    no-repeat center top;
  -webkit-mask-size: cover;
  transform: translateY(-96%);
  z-index: 10;
}

.section-description {
  margin: 0;
  margin-top: 16px;
}

@media (max-width: 768px) {
  .section-with-curve::before {
    transform: translateY(-88%);
  }
}

/* ========================================
   COLOR UTILITY CLASSES
   ======================================== */
.text-black {
  color: var(--color-black) !important;
}

.text-grey-1 {
  color: var(--color-grey-1) !important;
}

.text-grey-2 {
  color: var(--color-grey-2) !important;
}

.text-grey-3 {
  color: var(--color-grey-3) !important;
}

.text-grey-4 {
  color: var(--color-grey-4) !important;
}

.text-white {
  color: var(--color-white) !important;
}

.text-red-lighter {
  color: var(--color-red-lighter) !important;
}

.text-red-light {
  color: var(--color-red-light) !important;
}

.text-red-medium {
  color: var(--color-red-medium) !important;
}

.text-red-dark {
  color: var(--color-red-dark) !important;
}

.text-green-lighter {
  color: var(--color-green-lighter) !important;
}

.text-green-light {
  color: var(--color-green-light) !important;
}

.text-green-medium {
  color: var(--color-green-medium) !important;
}

.text-green-dark {
  color: var(--color-green-dark) !important;
}

.text-orange-lighter {
  color: var(--color-orange-lighter) !important;
}

.text-orange-light {
  color: var(--color-orange-light) !important;
}

.text-orange-medium {
  color: var(--color-orange-medium) !important;
}

.text-orange-dark {
  color: var(--color-orange-dark) !important;
}

.text-orange-logo {
  color: var(--color-orange-logo) !important;
}

.bg-black {
  background-color: var(--color-black) !important;
}

.bg-grey-darker {
  background-color: var(--color-grey-darker) !important;
}

.bg-grey-dark {
  background-color: var(--color-grey-dark) !important;
}

.bg-grey-0 {
  background-color: var(--color-grey-0) !important;
}

.bg-grey-1 {
  background-color: var(--color-grey-1) !important;
}

.bg-grey-2 {
  background-color: var(--color-grey-2) !important;
}

.bg-grey-3 {
  background-color: var(--color-grey-3) !important;
}

.bg-grey-4 {
  background-color: var(--color-grey-4) !important;
}

.bg-white {
  background-color: var(--color-white) !important;
}

.bg-red-lighter {
  background-color: var(--color-red-lighter) !important;
}

.bg-red-light {
  background-color: var(--color-red-light) !important;
}

.bg-red-medium {
  background-color: var(--color-red-medium) !important;
}

.bg-red-dark {
  background-color: var(--color-red-dark) !important;
}

.bg-green-lighter {
  background-color: var(--color-green-lighter) !important;
}

.bg-green-light {
  background-color: var(--color-green-light) !important;
}

.bg-green-medium {
  background-color: var(--color-green-medium) !important;
}

.bg-green-dark {
  background-color: var(--color-green-dark) !important;
}

.bg-orange-lighter {
  background-color: var(--color-orange-lighter) !important;
}

.bg-orange-light {
  background-color: var(--color-orange-light) !important;
}

.bg-orange-medium {
  background-color: var(--color-orange-medium) !important;
}

.bg-orange-dark {
  background-color: var(--color-orange-dark) !important;
}

/* ========================================
   TITLE / TEXT UTILITY CLASSES
   ======================================== */

.title-hero-main {
  margin: 0 0 24px 0;
  color: var(--color-white);
}

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

@media (max-width: 768px) {
  .title-hero-main {
    margin: 0 0 20px 0;
    max-width: 100%;
  }
}

/* ========================================
   HEADER COMPONENT
   ======================================== */
.header {
  width: 100%;
  position: relative;
  z-index: 100;
}

.header__top {
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.header__top-content {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 24px;
}

.header__action {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--color-white);
  cursor: pointer;
  transition: color 0.2s ease;
}

.header__action .icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.header__action-link {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease;
  display: flex;
  align-items: center;
  gap: 8px;
}

.header__action-link:hover {
  color: var(--color-orange-medium);
}

.header__action-link .icon {
  transition: filter 0.2s ease;
}

.header__action-link:hover .icon {
  fill: currentColor;
}

.header__divider {
  width: 1px;
  height: 16px;
  background-color: rgba(255, 255, 255, 1);
  flex-shrink: 0;
}

.header__nav {
  display: flex;
  align-items: center;
  gap: 24px;
  flex: 1;
  justify-content: center;
}

.header__main {
  padding: 10px 0;
  width: 100%;
  box-sizing: border-box;
  position: relative;
  z-index: 101;
}

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

.header__logo {
  margin-right: 24px;
  flex-shrink: 0;
  cursor: pointer;
  transition: opacity 0.2s ease;
}

.header__logo:hover {
  opacity: 0.8;
}

.header__logo svg {
  height: 50px;
  width: 232px;
}
/*
.header__nav {
    display: flex;
    align-items: center;
    gap: 24px;
    flex: 1;
    justify-content: center;
}

.header__nav-link {
    color: var(--color-white);
    text-decoration: none;
    padding: 10px 0;
    transition: color 0.2s ease;
    white-space: nowrap;
} */

.header__buttons {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}

.header__buttons .icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

/* Mobile menu toggle button - hidden on desktop */
.header__mobile-toggle {
  display: none;
  position: relative;
  width: 24px;
  height: 24px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 102;
}

/* Mobile menu wrapper - always visible but styled differently on mobile */
.header__menu-mobile {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 24px;
  flex-grow: 1;
}

/* Mobile-specific top section - hidden on desktop */
.header__mobile-top {
  display: none;
}

.header__mobile-hamburger-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 1;
  transition: opacity 0.3s ease;
  width: 24px;
  height: 24px;
}

.header__mobile-close-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity 0.3s ease;
  width: 24px;
  height: 24px;
}

.header__mobile-toggle.active .header__mobile-hamburger-icon {
  opacity: 0;
}

.header__mobile-toggle.active .header__mobile-close-icon {
  opacity: 1;
}

.header__dropdown {
  display: inline-block;
}

.header__dropdown-toggle {
  position: relative;
}

.header__dropdown-toggle {
  position: relative;
}

body.mobile-menu-produits-open .header__dropdown-toggle::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 16px;
  transform: translateY(16px);
}

@media (max-width: 1160px) {
  body.woocommerce .header__buttons-contact,
  .header__buttons-contact {
    display: none;
  }
}

@media (max-width: 950px) {
  .header__main {
    padding: 14px 0;
  }

  body.woocommerce .header__buttons-contact,
  .header__buttons-contact {
    display: flex;
  }

  .header__logo-image {
    width: 160px;
  }

  .header__top {
    display: none;
  }

  .header__top-content {
    gap: 16px;
    flex-wrap: wrap;
    padding: 0 16px;
  }

  .header__main-content {
    padding: 0 16px;
    position: relative;
  }

  /* Show mobile toggle button */
  .header__mobile-toggle {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
  }

  /* Show mobile menu wrapper */
  .header__menu-mobile {
    position: fixed;
    top: 62px;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--color-grey-darker);
    z-index: 101;
    padding: 24px 16px;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    /* overflow-x: hidden;
        overflow-y: auto; */
    /* overflow: auto; */
    overflow-x: visible;
    display: block;
  }

  .mobile-menu-open .header__menu-mobile {
    overflow: hidden;
    /* overflow-x: visible; */
    overflow-y: auto;
  }

  .mobile-menu-open.mobile-menu-produits-open .header__menu-mobile {
    /* overflow: hidden; */
    overflow-x: visible;
    overflow-y: visible;
  }

  .header__menu-mobile.active {
    transform: translateX(0);
  }

  .header__mobile-top {
    display: block;
    width: 100%;
    background-color: var(--color-grey-dark);
    border-radius: 4px;
    padding: 8px;
    margin-bottom: 12px;
  }

  .header__mobile-actions {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  .header__mobile-action {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    color: var(--color-white);
    text-decoration: none;
    font-size: 16px;
    padding: 8px 0;
  }

  .header__mobile-action .icon {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
  }

  .header__mobile-language {
    display: flex;
    gap: 0px;
    align-items: center;
    margin-top: 0px;
    justify-content: center;
  }

  .header__mobile-lang-link {
    color: var(--color-white);
    text-decoration: none;
    font-size: 16px;
    padding: 4px 8px;
  }

  .header__mobile-lang-link--active {
    font-weight: var(--weight-bold);
  }

  /* Mobile menu buttons */
  .header__menu-mobile .header__buttons {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
  }

  .header__dropdown {
    width: 100%;
  }

  .header__menu-mobile .header__buttons .button {
    width: 100%;
    height: 50px;
    font-size: 16px;
    justify-content: center;
  }

  .header__menu-mobile .header__buttons .button-orange {
    /* background-color: var(--color-orange-medium);
    color: var(--color-white);
    border: none; */
  }

  .header__menu-mobile .header__buttons .button-white-outlined {
    /* background-color: transparent;
    color: var(--color-white);
    border: 1px solid var(--color-white); */
  }

  /* Hide desktop navigation and buttons on mobile */
  .header__main-content > .header__nav,
  .header__main-content > .header__buttons {
    display: none;
  }

  .header__logo svg {
    height: 40px;
  }

  .header__action {
    font-size: 14px;
  }

  .header__action span {
    display: none;
  }

  .header__divider {
    display: none;
  }

  /* Prevent body scroll when dropdown or mobile menu is open */
  body.mobile-menu-produits-open,
  body.mobile-menu-open {
    overflow: hidden !important;
    /* position: fixed !important; */
    /* width: 100% !important; */
  }

  .header__dropdown-menu {
    position: fixed;
    top: -62px;
    left: 0;
    right: 0;
    transform: translateX(100%);
    background: var(--color-white);
    border: none;
    border-radius: 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    opacity: 1;
    visibility: visible;
    transition: all 0.3s ease;
    z-index: 1000;
    width: 100%;
    margin-top: 0;
    bottom: 0;
  }

  .header__dropdown-menu.active {
    /* opacity: 1;
    visibility: visible; */
    transform: translateX(0);
    /* top: 0; */
  }

  /* Mobile dropdown header */
  .header__dropdown-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 34px 14px 12px;
    background-color: var(--color-grey-darker);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    /* position: sticky; */
    top: 0;
    z-index: 103;
  }

  .header__dropdown-back,
  .header__dropdown-close {
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .header__dropdown-back svg,
  .header__dropdown-close svg {
    width: 24px;
    height: 24px;
  }

  .header__dropdown-title-main {
    color: var(--color-white);
    margin: 0;
    text-align: center;
    flex: 1;
  }

  .header__dropdown-content {
    display: flex;
    flex-direction: column;
    gap: 0;
    padding: 20px 20px 80px;
    margin: 0;
    height: 100%;
    overflow: auto;
  }

  .header__dropdown-section {
    padding: 0;
    margin-bottom: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    border-right: none;
  }

  .header__dropdown-section:last-child {
    border-bottom: none;
  }

  .header__dropdown-title {
    padding: 20px 0;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
  }

  .header__dropdown-title::after {
    content: "";
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 6px solid currentColor;
    transition: transform 0.3s ease;
  }

  .header__dropdown-section.active .header__dropdown-title::after {
    transform: rotate(180deg);
  }

  .header__dropdown-links {
    display: none;
    flex-direction: column;
    gap: 0;
    padding: 0 0 20px;
  }

  .header__dropdown-section.active .header__dropdown-links {
    display: flex;
  }

  .header__dropdown-link {
    padding: 12px 0;
    border-bottom: none;
  }

  .header__dropdown-link:hover {
    color: var(--color-orange-medium);
  }
}

/* ========================================
   TESTIMONIAL HORIZONTAL COMPONENT
   ======================================== */

.testimonial-horizontal {
  padding: 80px 0;
  background-color: var(--color-white);
}

.testimonial-horizontal__content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  /* align-items: center; */
  margin-bottom: 40px;
}

.testimonial-horizontal__image {
  position: relative;
}

.testimonial-horizontal__photo {
  width: 100%;
  height: 500px;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 4px;
}

.testimonial-horizontal__icon {
  position: absolute;
  top: -20px;
  left: -20px;
  width: 120px;
  height: 100px;
  z-index: 2;
}

.testimonial-horizontal__icon--second {
  display: none;
}

.testimonial-horizontal__icon .icon {
  width: 100%;
  height: 100%;
}

.testimonial-horizontal__text-content {
  background-color: var(--color-white);
  border-radius: 8px;
  padding: 40px;
  transform: translate(-80px, 30px);
  width: calc(100% + 80px);
  height: fit-content;
}

.testimonial-horizontal__text-content .title-section-small {
  margin-bottom: 20px;
}

.testimonial-horizontal__divider {
  margin: 20px 0 30px 0;
  width: 100%;
  height: 1px;
  background-color: var(--color-grey-dark);
}

.testimonial-horizontal__text {
  margin-bottom: 30px;
}

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

@media (max-width: 768px) {
  .testimonial-horizontal {
    padding: 40px 0;
  }

  .testimonial-horizontal__content {
    grid-template-columns: 1fr;
    gap: 0;
    margin-bottom: 30px;
  }

  .testimonial-horizontal__image {
    position: relative;
    margin-bottom: -20px;
  }

  .testimonial-horizontal__photo {
    height: 280px;
  }

  .testimonial-horizontal__icon {
    width: 70px;
    height: 50px;
  }

  .testimonial-horizontal__text-content {
    /* border-radius: 0 0 12px 12px; */
    padding: 30px 20px;
    margin-top: 0;
    transform: none;
    width: calc(100% - 20px);
    margin: -30px 10px 0;
    z-index: 3;
  }

  .testimonial-horizontal__text-content .title-section-small {
    font-size: 18px;
    margin-bottom: 15px;
    text-align: left;
  }

  .testimonial-horizontal__divider {
    margin: 15px 0 20px 0;
    background-color: var(--color-grey-2);
  }

  .testimonial-horizontal__text {
    margin-bottom: 25px;
    font-size: 14px;
    line-height: 1.6;
  }

  .testimonial-horizontal__cta {
    margin-top: 20px;
  }

  .testimonial-horizontal__cta .button {
    width: 100%;
    max-width: 300px;
  }
}

/* ========================================
   TESTIMONIAL VERTICAL COMPONENT
   ======================================== */
.testimonial-vertical {
  padding: 80px 0;
  background-color: var(--color-grey-4);
}

.testimonial-vertical__content {
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: center;
  border-radius: 4px;
  position: relative;
}

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

.testimonial-vertical__text {
  margin: 0;
  font-style: normal;
  max-width: 600px;
}

@media (max-width: 768px) {
  .testimonial-vertical {
    padding: 32px 0;
  }

  .testimonial-vertical__content {
    gap: 24px;
  }
}

/* ========================================
   KEYPOINTS COMPONENT
   ======================================== */

.keypoints {
  padding: 80px 0;
  background-color: var(--color-black);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  overflow: hidden;
}

.keypoints__background {
  position: relative;
  z-index: 2;
}

.keypoints__content {
  max-width: 660px;
  margin: 0 auto;
  padding: 30px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 40px;
  border-radius: 4px;
  position: relative;
  z-index: 3;
}

.keypoints__list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 1000px;
  margin: 0 auto;
  justify-content: center;
}

.keypoints__item {
  background-color: white;
  border-radius: 100px;
  padding: 8px 16px;
  display: flex;
  align-items: center;
  gap: 3px;
  display: inline-flex;
}

.keypoints__text {
  flex: 1;
  text-align: left;
}

@media (max-width: 768px) {
  .keypoints {
    padding: 30px 0;
  }

  .keypoints__content {
    padding: 24px 16px;
  }
}

/* ========================================
   PRODUCTS SLIDER COMPONENT (Swiper)
   ======================================== */

.products-slider.swiper {
  position: relative;
  margin-bottom: 48px;
}
.container.container--swipper .products-slider.swiper {
  padding: 0 32px;
}
@media (max-width: 768px) {
  .container.container--swipper .products-slider.swiper {
    padding: 0 16px;
  }
}

.products-slider .swiper-wrapper {
  margin-bottom: 0;
}

.products-slider .swiper-slide {
  height: auto;
}

/* Custom navigation arrows styling - Hidden */
.products-slider__nav-arrow {
  display: none !important;
}

.products-slider__nav-arrow--prev.swiper-button-prev,
.products-slider__nav-arrow--next.swiper-button-next {
  display: none !important;
}

/* ========================================
   PAGE-SPECIFIC STYLES
   ======================================== */

/* ========================================
   PAGE: ABOUT
   ======================================== */

.page-about__story-section {
  padding: 80px 0;
  background-color: var(--color-white);
}

.page-about__story-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.page-about__story-text {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.page-about__story-description {
  font-family: var(--font-poppins);
  font-size: 16px;
  font-weight: var(--weight-regular);
  line-height: 28px;
  margin: 0;
}

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

.page-about__story-img {
  width: 100%;
  height: auto;
  border-radius: 4px;
  -o-object-fit: cover;
  object-fit: cover;
}

.page-about__workshop-section {
  padding: 80px 0;
}

.page-about__workshop-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.page-about__workshop-text {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.page-about__workshop-description {
  color: var(--color-black);
  margin: 0;
}

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

.page-about__workshop-img {
  width: 100%;
  height: auto;
  border-radius: 4px;
  -o-object-fit: cover;
  object-fit: cover;
}

.page-about__instagram-section {
  padding: 80px 0;
}

.page-about__instagram-content {
  display: flex;
  justify-content: center;
  width: 100%;
  overflow-x: auto;
}

.page-about__instagram-photos {
  display: grid;
  grid-template-columns: repeat(4, minmax(200px, 296px));
  gap: 24px;
  align-items: center;
  width: 100%;
  justify-content: center;
}

.page-about__instagram-photo {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 4px;
  overflow: hidden;
  /* min-width: 200px; */
}

.page-about__instagram-photo .page-about__instagram-img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.page-about__instagram-cta {
  width: 100%;
  aspect-ratio: 1;
  border: 1px solid white;
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  text-align: center;
}

.page-about__instagram-title {
  font-family: var(--font-gloock);
  font-size: 24px;
  font-weight: var(--weight-regular);
  line-height: 32px;
  color: var(--color-white);
  margin: 0;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.page-about__instagram-title-line1,
.page-about__instagram-title-line2 {
  display: block;
}

.page-about__instagram-handle {
  font-family: var(--font-poppins);
  font-size: 16px;
  font-weight: var(--weight-medium);
  line-height: 24px;
  color: var(--color-white);
  margin: 0;
}

.page-about__instagram-icon {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 8px;
}

.page-about__instagram-icon .icon {
  width: 48px;
  height: 48px;
  filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(0%)
    hue-rotate(0deg) brightness(100%) contrast(100%);
}

.page-about__location-section {
  padding: 80px 0;
  background-color: var(--color-grey-4);
}

.page-about__location-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  align-items: center;
}

.page-about__location-text {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.page-about__location-description {
  margin: 0;
}

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

.page-about__location-img {
  width: 100%;
  height: auto;
  border-radius: 4px;
  -o-object-fit: cover;
  object-fit: cover;
}

/* Tablet breakpoint for Instagram section */
@media (max-width: 1024px) {
  .page-about__instagram-photos {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .page-about__story-content,
  .page-about__workshop-content,
  .page-about__location-content {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-about__story-section {
    padding: 32px 0 0 0;
  }

  .page-about__workshop-section {
    padding: 32px 0;
  }

  .page-about__location-section {
    padding: 32px 0;
  }

  .page-about__instagram-section {
    padding: 32px 16px;
  }

  .page-about__instagram-photos {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .page-about__instagram-photo,
  .page-about__instagram-cta {
    width: 100%;
    /* height: 200px; */
  }

  .page-about__instagram-cta {
    padding: 20px;
  }

  .page-about__instagram-title {
    font-size: 20px;
    line-height: 28px;
  }

  .page-about__instagram-handle {
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .page-about__instagram-photos {
    grid-template-columns: 1fr;
  }

  .page-about__instagram-photo {
    display: none;
  }
}

/* ========================================
   PAGE: LOCATION
   ======================================== */
.page-location__process-section {
  padding: 80px 0;
  background-color: var(--color-orange-lighter);
  position: relative;
}

.page-location__process-section-header {
  text-align: center;
  margin-bottom: 60px;
}

.page-location__process-section-description {
  margin-top: 16px;
}

.page-location__process-section-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  grid-template-rows: repeat(2, auto);
  gap: 32px 24px;
  margin: 0 auto;
  position: relative;
  align-items: center;
}

.page-location__process-section-step {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: left;
  justify-content: flex-start;
  padding: 0;
  background-color: transparent;
  border-radius: 0;
  box-shadow: none;
  min-height: 200px;
  text-align: center;
  gap: 12px;
  height: 100%;
}

.page-location__process-section-step-number {
  position: relative;
}

.page-location__process-section-step-number span {
  color: var(--color-white);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-location__process-section-step-title {
  margin-bottom: 12px;
}

.page-location__process-section-step-description {
  margin-bottom: 16px;
}

.page-location__process-section-step-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-location__process-section-step-arrow svg {
  width: 100%;
  height: 100%;
}

.page-location__process-section-step-content {
  text-align: center;
  gap: 12px;
  height: 100%;
}

.page-location__process-section-documents-box {
  text-align: left;
  background-color: var(--color-white);
  border: 1px solid var(--color-black);
  border-radius: 4px;
  padding: 20px;
  margin-top: 12px;
}

.page-location__process-section-documents-intro {
  margin-bottom: 12px;
}

.page-location__process-section-documents-list {
  padding: 0;
  margin: 0;
}

.page-location__process-section-documents-list li {
  margin-bottom: 8px;
  margin-left: 40px;
}

.page-location__process-section-documents-list li:last-child {
  margin-bottom: 0;
}

.page-location__pricing-section {
  padding: 80px 0;
  background-color: var(--color-black);
}

.page-location__pricing-section-header {
  text-align: left;
  margin-bottom: 48px;
}

.page-location__pricing-section-header p {
  margin: 0;
}

.page-location__pricing-section-content {
  display: flex;
  gap: 48px;
  margin: 0 auto;
  align-items: stretch;
  min-height: 400px;
  /* Ensure minimum height for proper centering */
}

.page-location__pricing-section-table {
  width: 50%;
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid #444444;
  display: flex;
  flex-direction: column;
}

.page-location__pricing-section-row {
  display: flex;
  border-bottom: 1px solid #444444;
}

.page-location__pricing-section-row:last-child {
  border-bottom: none;
}

.page-location__pricing-section-row:nth-child(even) {
  background-color: var(--color-grey-dark);
}

.page-location__pricing-section-row:nth-child(odd) {
  background-color: var(--color-grey-darker);
}

.page-location__pricing-section-cell {
  flex: 1;
  padding: 15px 20px;
  text-align: left;
  color: var(--color-white);
}

.page-location__pricing-section-cell:first-child {
  border-right: 1px solid #444444;
}

.page-location__pricing-section-cell h4 {
  margin: 0 0 4px 0;
  color: var(--color-white);
}

.page-location__pricing-section-cell p {
  margin: 0;
}

.page-location__pricing-section-info-card {
  width: 50%;
  background-color: var(--color-orange-lighter);
  border-radius: 4px;
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: center;
  text-align: center;
  justify-content: center;
  min-height: 100%;
}

.page-location__pricing-section-info-card h3 {
  margin: 0;
}

.page-location__pricing-section-info-card ul {
  list-style: none;
  margin: 0;
  padding: 0;
  text-align: center;
}

.page-location__pricing-section-info-card li {
  line-height: 22px;
  margin-bottom: 2px;
  position: relative;
  padding-left: 16px;
  display: inline-block;
}

.page-location__pricing-section-info-card li:before {
  content: "•";

  font-weight: bold;
  position: absolute;
  left: 0;
}

.page-location__pricing-section-info-card li:last-child {
  margin-bottom: 0;
}

.page-location__pricing-section-info-card .button {
  width: 100%;
  margin-top: 8px;
}

@media (max-width: 1220px) {
  .page-location__process-section-grid {
    gap: 32px 4px;
  }

  .page-location__process-section-step-arrow {
    width: 60px;
    /* padding-top: 16px; */
  }

  .page-location__process-section-step-arrow img {
    width: 100%;
    /* padding-top: 16px; */
  }
}

@media (max-width: 900px) {
  .page-location__process-section-grid {
    gap: 32px 4px;
    align-items: flex-start;
  }

  .page-location__process-section-step-arrow {
    /* width: 74px; */
    padding-top: 16px;
  }
}

@media (max-width: 768px) {
  .page-location__process-section {
    padding: 32px 0;
  }

  .page-location__process-section-header {
    text-align: left;
  }

  .page-location__process-section-grid {
    flex-direction: column;
    gap: 24px;
  }

  .page-location__process-section-grid {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(6, auto);
    gap: 24px;
  }

  .page-location__process-section-step {
    min-height: auto;
  }

  .page-location__process-section-step-arrow {
    display: none;
  }

  .page-location__process-section-step-number {
    width: 60px;
    height: 60px;
  }

  .page-location__process-section-step-number img {
    width: 100%;
  }

  .page-location__process-section-step-title {
  }

  .page-location__process-section-step-description {
    margin: 0;
  }

  .page-location__process-section-step-button {
    margin-top: 12px;
  }

  .page-location__pricing-section {
    padding: 32px 0px;
  }

  .page-location__pricing-section-header {
    margin-bottom: 24px;
  }

  .page-location__pricing-section-content {
    flex-direction: column;
    gap: 32px;
    padding: 0;
  }

  .page-location__pricing-section-table {
    order: 1;
    width: 100%;
  }

  .page-location__pricing-section-info-card {
    order: 2;
    width: 100%;
    padding: 32px 24px;
  }

  .page-location__pricing-section-info-card li {
    line-height: 20px;
  }
}

/* ========================================
   PAGE: REPARATION
   ======================================== */

.page-reparation__services-section {
  padding: 80px 0;
}

.page-reparation__services-title {
  margin-bottom: 24px;
}

.page-reparation__services-block {
  margin: 0 auto;
  padding: 60px 40px;
  border: 1px solid var(--color-white);
  border-radius: 4px;
}

.page-reparation__services-content {
  display: flex;
  gap: 80px;
  align-items: center;
}

.page-reparation__services-text {
  flex: 1;
  text-align: center;
}

.page-reparation__services-description {
  max-width: 450px;
  margin: 0 auto;
}

.page-reparation__services-list {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.page-reparation__service-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.page-reparation__service-item-container {
  display: flex;
  align-items: center;
  gap: 12px;
  background-color: var(--color-white);
  border-radius: 100px;
  padding: 12px 20px;
}

.page-reparation__forfaits-section {
  padding: 0 0 80px;
}

.page-reparation__forfaits-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin: 0 auto;
}

.page-reparation__forfait-card {
  background-color: var(--color-white);
  border-radius: 4px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  position: relative;
  min-height: 600px;
}

.page-reparation__forfait-card .button {
  margin-top: auto;
  width: 100%;
  justify-self: flex-end;
}

.page-reparation__forfait-image {
  width: 100%;
  height: 186px;
  border-radius: 4px;
  overflow: hidden;
}

.page-reparation__forfait-img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.page-reparation__forfait-list {
  list-style: disc;
  margin: 0;
  padding-left: 24px;
}

.page-reparation__forfait-list li {
  margin-bottom: 8px;
}

.page-reparation__forfait-list li:last-child {
  margin-bottom: 0;
}

.page-reparation__expertise-section {
  padding: 80px 0;
  background-color: var(--color-white);
}

.page-reparation__expertise-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, auto);
  gap: 32px;
  margin: 0 auto;
  position: relative;
}

.page-reparation__expertise-item {
  text-align: left;
  padding: 0;
  background-color: transparent;
  border-radius: 0;
  border: none;
  position: relative;
}

.page-reparation__expertise-item h3 {
  margin-bottom: 16px;
}

.page-reparation__expertise-item p {
  margin: 0;
}

.page-reparation__expertise-cta {
  grid-column: 3;
  grid-row: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-right: none;
  border-bottom: none;
  border-top: none;
  gap: 0;
  padding: 0;
}

.page-reparation__expertise-cta .button {
  width: 100%;
}

.page-reparation__expertise-item:nth-child(1)::after,
.page-reparation__expertise-item:nth-child(2)::after,
.page-reparation__expertise-item:nth-child(4)::after,
.page-reparation__expertise-item:nth-child(5)::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -16px;
  width: 1px;
  height: 50%;
  transform: translateY(-50%);
  background-color: #e5e5e5;
}

.page-reparation__team-section {
  padding: 80px 0;
}

.page-reparation__team-section .section-header {
  max-width: 800px;
}

.page-reparation__team-image {
  margin: 0 auto;
  text-align: center;
}

.page-reparation__team-photo {
  width: 100%;
  height: auto;
  border-radius: 4px;
}

.page-reparation__team-cta {
  text-align: center;
  margin-top: 40px;
}

@media (max-width: 768px) {
  .page-reparation__expertise-section {
    padding: 32px 0;
  }

  .page-reparation__team-section {
    padding: 32px 0;
  }

  .page-reparation__services-section {
    padding: 32px 0;
  }

  .page-reparation__services-title {
    margin-bottom: 16px;
  }

  .page-reparation__services-description {
    margin-bottom: 32px;
  }

  .page-reparation__services-block {
    padding: 24px 8px;
  }

  .page-reparation__services-content {
    flex-direction: column;
    gap: 0px;
  }

  .page-reparation__forfaits-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .page-reparation__forfaits-section {
    padding: 0 0 32px 0;
  }

  .page-reparation__expertise-grid {
    display: flex;
    flex-direction: column;
    gap: 24px;
  }

  .page-reparation__expertise-item::after {
    display: none;
  }

  .page-reparation__expertise-item {
    border-top: 1px solid #dedce0;
    padding-top: 24px;
  }

  .page-reparation__expertise-item:first-child {
    border-top: none;
    padding-top: 0;
  }

  .page-reparation__expertise-cta {
    border-top: none;
    padding-top: 0px;
  }

  .page-reparation__services-list {
    align-items: center;
  }
}

/* ========================================
   TESTIMONIALS ROW COMPONENT
   ======================================== */

.testimonials-row {
  padding: 80px 0;
  background-color: var(--color-white);
  background-image: url("../img/logo-as-a-background.svg");
  background-position: center;
  background-repeat: no-repeat;
}

.testimonials-container {
  max-width: var(--screen-size);
  margin: 0 auto;
  padding: 0 32px;
}

.testimonials-row__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 20px;
}

.testimonials-row__card {
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 4px;
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 280px;
  transition: transform 0.2s ease;
  gap: 10px;
}

.testimonials-row__content {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.testimonials-row__star {
  font-size: 20px;
  color: var(--color-grey-3);
}

.testimonials-row__star--filled {
  color: var(--color-orange-dark);
}

.testimonials-row__quote {
  margin: 0;
  text-align: left;
  margin-bottom: 10px;
}

.testimonials-row__rating {
  display: flex;
  gap: 4px;
}

.testimonials-row__header {
  margin-bottom: 60px;
}

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

@media (max-width: 768px) {
  .testimonials-row {
    padding: 32px 0;
  }

  .testimonials-row__grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .testimonials-row__card {
    padding: 24px;
  }

  .testimonials-row__header {
    margin-bottom: 24px;
  }

  .testimonials-row__buttons {
    margin-top: 24px;
  }
}

/* ========================================
   PRODUCT CARD COMPONENT
   ======================================== */
.product-card {
  background: white;
  border: 1px solid var(--color-grey-3);
  border-radius: 7px;
  overflow: hidden;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  /* min-height: 400px; */
  text-decoration: none;
  height: 100%;
}

.product-card:hover {
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  transform: translateY(-3px);
  border-color: var(--color-grey-3);
  text-decoration: none;
}

.product-card__image {
  /* aspect-ratio: 1; */
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
}

.product-card__image img {
  width: 100%;
  /* height: 100%; */
  transition: transform 0.3s ease;
}

.product-card__info {
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 7px;
  background: white;
  text-align: center;
}

.product-card__title {
  min-height: 50px;
}

.product-card__button {
  width: 100%;
}

/* ========================================
   PRODUCTS MAIN CATEGORIES COMPONENT
   ======================================== */
.products-main-categories {
  padding: 80px 0 0;
  background-color: var(--color-white);
  position: relative;
  margin-bottom: -70px;
}

.products-main-categories__spacer {
  padding: 70px 0;
}

.products-main-categories--dark {
  padding: 80px 0;
  background-color: var(--color-grey-dark);
  position: relative;
  color: var(--color-grey-3);
  margin-bottom: 0px;
}

.products-main-categories--dark .products-main-categories__title {
  color: var(--color-grey-3);
}

.products-main-categories--dark .products-main-categories__arrow-button {
  background-color: var(--color-grey-dark);
  color: var(--color-grey-3);
}

.products-main-categories--dark
  .products-main-categories__card:hover
  .products-main-categories__arrow-button {
  transform: translateX(4px);
}

.products-main-categories__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  position: relative;
  z-index: 1;
}

.products-main-categories.products-main-categories--dark
  .products-main-categories__grid {
  margin-bottom: -145px;
}

.products-main-categories__card {
  background-color: var(--color-white);
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 4px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
  text-decoration: none;
}

.products-main-categories__card:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.products-main-categories__image-container {
  display: flex;
  align-items: center;
  justify-content: center;
}

.products-main-categories__content {
  padding: 16px;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.products-main-categories__title-section {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}

.products-main-categories__card-title {
  margin: 0;
}

.products-main-categories__arrow-button {
  background-color: var(--color-black);
  border: none;
  border-radius: 4px;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.3s ease;
  flex-shrink: 0;
}

.products-main-categories__arrow-button svg {
  width: 18px;
  height: 18px;
  transition: transform 0.3s ease;
}

.products-main-categories__card:hover .products-main-categories__arrow-button {
  transform: translateX(4px);
}

.products-main-categories__title {
  font-family: var(--font-gloock);
  font-size: var(--font-size-h2);
  line-height: var(--line-height-h2);
  font-weight: var(--weight-regular);
  color: var(--color-black);
  margin: 0 0 16px 0;
}

.products-main-categories__seo-title {
  /* margin: 0; */
}

@media (max-width: 1150px) {
  .products-main-categories__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}

@media (max-width: 768px) {
  .products-main-categories__title-section {
    display: block;
  }

  .products-main-categories,
  .products-main-categories--white,
  .products-main-categories--dark {
    padding: 60px 0;
  }

  .products-main-categories__grid {
    /* grid-template-columns: 1fr; */
    gap: 20px;
  }

  .products-main-categories__card-title {
    /* font-size: 28px;
    line-height: 32px; */
    margin-bottom: 10px;
  }

  .products-main-categories__arrow-button {
    width: 44px;
    height: 44px;
  }

  .products-main-categories__arrow-button svg {
    width: 16px;
    height: 16px;
  }

  .products-main-categories__image {
    width: 100%;
  }

  .products-main-categories__title {
    /* font-size: var(--font-size-h3);
    line-height: var(--line-height-h3); */
  }
}

@media (max-width: 480px) {
  .products-main-categories,
  .products-main-categories--white,
  .products-main-categories--dark {
    padding: 40px 0;
  }

  .products-main-categories__grid {
    gap: 16px;
  }

  .products-main-categories__content {
    padding: 12px;
  }
}

/* ========================================
   BREADCRUMB COMPONENT
   ======================================== */
.breadcrumb-container {
  background: white;
  padding: 10px 0;
}

.breadcrumb {
  margin: 0px 0 20px;
  text-align: left;
}

.breadcrumb__link {
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumb__link:hover {
  color: var(--color-orange-dark);
}

.breadcrumb__current {
  font-weight: bold;
}

.breadcrumb__separator {
  margin: 0 5px;
  color: var(--color-black);
}

.breadcrumb--white {
  color: var(--color-white);
}

.breadcrumb--white .breadcrumb__link {
  color: var(--color-white);
}

.breadcrumb--white .breadcrumb__current {
  color: var(--color-white);
}

.breadcrumb--white .breadcrumb__separator {
  color: var(--color-white);
}

.breadcrumb--black {
  color: var(--color-black);
}

.breadcrumb--black .breadcrumb__link {
  color: var(--color-black);
}

.breadcrumb--black .breadcrumb__current {
  color: var(--color-black);
}

.breadcrumb--black .breadcrumb__separator {
  color: var(--color-black);
}

.breadcrumb--hero {
  align-self: flex-start;
  margin-bottom: 16px;
  width: 100%;
}

@media (max-width: 768px) {
  .breadcrumb--hero {
    align-self: center;
    margin-bottom: 12px;
    text-align: center;
  }
}

/* ========================================
   KPIS BLOCK COMPONENT
   ======================================== */
.kpis-block {
  padding: 40px 0;
}

.kpis-block__container {
  margin: 0 auto;
  padding: 0 32px;
}

.kpis-block__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 48px;
}

.kpis-block__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  text-align: center;
  justify-content: center;
}

.kpis-block__icon {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: transparent;
  border-radius: 50%;
  flex-shrink: 0;
}

.kpis-block__icon img {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: transparent;
  border-radius: 50%;
  flex-shrink: 0;
}

.kpis-block__content {
  display: flex;
  flex-direction: column;
  text-align: center;
}

@media (max-width: 768px) {
  .kpis-block__container {
    padding: 0 16px;
  }

  .kpis-block__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }

  .kpis-block__item {
    flex-direction: column;
    text-align: center;
    gap: 16px;
    justify-content: center;
  }

  .kpis-block__icon {
    width: 56px;
    height: 56px;
  }

  .kpis-block__icon img {
    /* width: 28px;
    height: 28px; */
  }

  .kpis-block__number {
    font-size: 16px;
    line-height: 22px;
  }

  .kpis-block__label {
    font-size: 13px;
    line-height: 18px;
  }
}

/* ========================================
   FOOTER COMPONENT
   ======================================== */
.footer {
  background-color: var(--color-black);
  color: var(--color-white);
}

.footer__container {
  margin: 0 auto;
}

.footer__content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: 60px;
  padding: 80px 0 60px 0;
}

.footer__brand {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.footer__logo img {
  height: 80px;
  max-width: 100%;
}

.footer__social {
  display: flex;
  gap: 16px;
  justify-content: space-between;
  align-items: center;
}

.footer__social-label {
  font-family: var(--font-poppins);
  font-size: 16px;
  font-weight: var(--weight-semibold);
  line-height: 24px;
  color: var(--color-white);
  position: relative;
}

.footer__social-icons {
  display: flex;
  gap: 16px;
  align-items: center;
}

.footer__social-link {
  width: 32px;
  height: 32px;
  color: var(--color-orange-logo);
  fill: currentColor;
  text-decoration: none;
  transition: all 0.2s ease;
}

.footer__social-link:hover {
  /* background-color: var(--color-orange-light); */
  fill: var(--color-white);
  transform: translateY(-2px);
}

.footer__col {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer__col-title {
  font-family: var(--font-poppins);
  font-size: 18px;
  font-weight: var(--weight-semibold);
  line-height: 26px;
  color: var(--color-white);
  margin: 0 0 8px 0;
}

.footer__links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer__links a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-family: var(--font-poppins);
  font-size: 15px;
  font-weight: var(--weight-regular);
  line-height: 24px;
  transition: color 0.2s ease;
}

.footer__links .current_page_item a,
.footer__links a:hover {
  color: var(--color-orange-medium);
  text-decoration: underline;
}

.footer__col--contact {
  position: relative;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 4px;
  padding: 24px;
  margin-top: -8px;
  height: -moz-fit-content;
  height: fit-content;
}

.footer__contact-info {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer__contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer__contact-icon {
  width: 20px;
  height: 20px;
  color: var(--color-orange-medium);
  flex-shrink: 0;
  margin-top: 2px;
}

.footer__contact-details {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.footer__contact-label {
  color: var(--color-white);
}

.footer__contact-value {
  color: var(--color-white);
  text-decoration: none;
}

.footer__bottom {
  border-top: 1px solid white;
  padding: 16px 0 48px;
  margin-top: 20px;
}

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

.footer__legal {
  display: flex;
  gap: 32px;
}

.footer__copyright span {
  font-size: 12px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

@media (max-width: 1300px) {
  .footer__content {
    gap: 30px;
  }
}

@media (max-width: 1100px) {
  .footer__content {
    gap: 60px;
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .footer__container {
  }

  .footer__col {
    gap: 5px;
  }

  .footer__content {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 32px 0;
  }

  .footer__brand {
    gap: 20px;
  }

  .footer__description {
    max-width: none;
  }

  .footer-whatsapp-icon {
    width: 28px;
    height: 28px;
  }

  .footer__bottom-content {
    flex-direction: column;
    gap: 16px;
    align-items: start;
  }

  .footer__nav {
    width: 100%;
  }

  .footer__legal {
    gap: 16px;
    flex-wrap: wrap;
    justify-content: flex-start;
    border-bottom: 1px solid white;
    padding-bottom: 15px;
    width: 100%;
  }

  .footer__col--contact {
    padding: 20px;
    margin-top: 0;
  }

  .footer__bottom {
    border-top: none;
    padding: 16px 0 32px;
    margin: 0px;
  }
}

/* ========================================
   HERO SECTION COMPONENT
   ======================================== */

.hero-section {
  background-size: cover;
  background-position: center;
}

.hero-section__content {
  padding: 48px 0 160px 0;
  display: flex;
  justify-content: center;
  min-height: 530px;
}

.hero-section__breadcrumb {
  align-self: flex-start;
  margin-bottom: 16px;
  width: 100%;
  text-align: left;
}

.hero-section__seo-title {
  color: white;
  margin-bottom: 12px;
  margin-top: 40px;
}

.hero-section__cta-buttons {
  display: flex;
  gap: 16px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 30px;
}

.hero-section__info-banner {
  color: var(--color-white);
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--color-grey-dark);
  border-radius: 4px;
  padding: 20px;
  margin: 24px auto 0;
  border: 1px solid var(--color-white);
}

.hero-section__info-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.hero-section__info-text {
  color: var(--color-white);
  font-family: var(--font-poppins);
  font-size: 16px;
  line-height: 24px;
  flex: 1;
}

.hero-section__info-text strong {
  font-weight: 700;
}

.hero-section__background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}

.hero-section__bg-vector {
  width: 134.3%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  position: absolute;
  left: -17.15%;
  top: 0;
}

.hero-section__saxophones {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  display: flex;
  gap: -50px;
  height: 80vh;
  max-height: 600px;
}

.hero-section__text {
  display: flex;
  flex-direction: column;
  gap: 32px;
  max-width: 900px;
}

.hero-section__titles {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.hero-section__main-title {
  font-family: var(--font-gloock);
  font-size: 88px;
  font-weight: var(--weight-regular);
  line-height: 82px;
  margin: 0;
}

.hero-section__main-title p {
  margin: 0;
}

.hero-section__description {
  font-family: var(--font-poppins);
  font-size: 16px;
  font-weight: var(--weight-regular);
  line-height: 28px;
  color: var(--color-white);
  margin: 0;
}

.hero-section__delivery-info {
  display: flex;
  align-items: center;
  gap: 16px;
}

.hero-section__delivery-icon {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
}

.hero-section__delivery-info span {
  font-family: var(--font-poppins);
  font-size: 16px;
  font-weight: var(--weight-bold);
  line-height: 28px;
  color: var(--color-orange-light);
}

.hero-section__buttons {
  display: flex;
  gap: 16px;
  align-items: center;
}

@media (max-width: 768px) {
  .hero-section__content {
    padding: 38px 0 48px;
  }

  .hero-section__breadcrumb {
    align-self: center;
    margin-bottom: 12px;
    text-align: center;
  }

  .hero-section__text {
    gap: 24px;
  }

  .hero-section__titles {
    gap: 16px;
  }

  .hero-section__main-title {
    font-size: 48px;
    line-height: 44px;
  }

  .hero-section__description {
    font-size: 14px;
    line-height: 24px;
  }

  .hero-section__delivery-info {
    gap: 12px;
  }

  .hero-section__delivery-icon {
    width: 24px;
    height: 24px;
  }

  .hero-section__delivery-info span {
    font-size: 14px;
    line-height: 24px;
  }

  .hero-section__cta-buttons {
    flex-direction: column;
    gap: 12px;
    width: 100%;
    align-items: normal;
  }
}

/* ========================================
   PAGE: HOME
   ======================================== */

.page-home__hero {
  position: relative;
  min-height: 740px;
  background-color: var(--color-grey-dark);
  display: flex;
  align-items: center;
  overflow: hidden;
}

.page-home__hero__background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}

.page-home__hero__bg-vector {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.page-home__hero__saxophones {
  position: absolute;
  right: 0;
  top: 0;
  z-index: 1;
  height: 100%;
  width: 50%;
  text-align: right;
}

.page-home__hero__saxophone-img {
  height: 100%;
  width: auto;
  filter: drop-shadow(20px 11px 35.2px rgba(0, 0, 0, 0.25));
}

.page-home__hero__content {
  position: relative;
  z-index: 2;
  width: 100%;
  margin: 0;
  /* margin: 0 auto; */
  padding: 140px 0px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.page-home__hero__text {
  max-width: 750px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.page-home__hero__titles {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.page-home__hero__delivery-info {
  display: flex;
  align-items: center;
  gap: 16px;
}

.page-home__hero__delivery-icon {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
}

.page-home__hero__buttons {
  display: flex;
  gap: 16px;
  align-items: center;
}

.page-home__hero__seo-title {
  position: relative;
}

.page-home__hero__main-title {
  /* font-size: 64px;
  line-height: 68px;
  font-weight: var(--weight-bold); */
}

.page-home__hero__description {
  /* font-size: 16px;
  line-height: 28px;
  font-weight: var(--weight-regular); */
}

.page-home__services {
  position: relative;
  padding: 190px 0 0;
  overflow: hidden;
}

.page-home__services__content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: flex-end;
  padding: 0 0 80px;
}

.page-home__services__text-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.page-home__services .section-header {
  margin-bottom: 0;
}

.page-home__services__features {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.page-home__services__feature {
  display: flex;
  align-items: center;
  gap: 16px;
}

.page-home__services__feature svg {
  width: 32px;
  height: 32px;
  flex: 0 0 32px;
}

.page-home__services__icons-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 48px 64px;
  margin-top: 0;
}

.page-home__services__icon-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 14px;
}

.page-home__services__icon-container {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-home__services__icon-svg {
  width: 80px;
  height: 80px;
}

.page-home__services__cta {
  position: relative;
  padding: 120px 0;
  background-color: var(--color-black);
  overflow: hidden;
  margin-top: 0;
}

.services-curved-divider {
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 300%;
  height: 200px;
  background: var(--color-white);
  border-radius: 50%;
  z-index: 1;
}

.page-home__services__cta-buttons {
  position: relative;
  z-index: 2;
  display: flex;
  gap: 24px;
  justify-content: center;
}

.page-home__services__description {
  font-size: 16px;
  line-height: 28px;
  font-weight: var(--weight-regular);
}

.page-home__services__background-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.page-home__services__background-images {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.page-home__services__bg-img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.page-home__services__mask {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 2;
}

.page-home__arrivals {
  padding: 80px 0;
  position: relative;
}

.page-home__rental-cta {
  padding: 80px 0;
  background-color: var(--color-black);
  color: var(--color-white);
}

.page-home__rental-cta__content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}

.page-home__rental-cta__text {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.page-home__rental-cta__header {
  flex-direction: column;
  gap: 16px;
}

.page-home__rental-cta__location-info {
  display: flex;
  align-items: center;
  gap: 16px;
}

.page-home__rental-cta__location-icon {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
}

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

.page-home__rental-cta__photo {
  border-radius: 4px;
  max-width: 100%;
}

.page-home__rental-cta__main-title {
  color: var(--color-white);
  letter-spacing: -0.1px;
}

.page-home__rental-cta__description {
  color: var(--color-white);
}

.page-home__rental-cta__button {
  margin-top: 16px;
}

.page-home__about-family {
  position: relative;
  padding: 0;
}

.page-home__about-family__content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
  /* min-height: 100vh; */
  padding: 80px 0;
}

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

.page-home__about-family__photo {
  width: 100%;
  height: auto;
  border-radius: 4px;
}

.page-home__about-family__text {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.page-home__about-family__description {
  font-family: var(--font-poppins);
  font-size: 16px;
  font-weight: var(--weight-regular);
  line-height: 28px;
  color: var(--color-white);
  margin: 0;
}

.page-home__about-family__buttons {
  display: flex;
  gap: 16px;
  align-items: center;
}

.page-home__faq {
  padding: 80px 0;
}

.page-home__faq__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.page-home__faq__item {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.page-home__faq__question {
  margin: 0;
}

.page-home__faq__answer {
  margin: 0;
}

@media (max-width: 1460px) {
  .page-home__hero__saxophones {
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .page-home__hero__saxophone-img {
    transform: translate(0px, -20px);
  }
}

@media (max-width: 1200px) {
  .page-home__hero__content {
    width: 620px;
  }
}

@media (max-width: 1120px) {
  .page-home__hero__content {
    width: 100%;
    padding: 70px 0 0;
  }

  .page-home__hero__saxophones {
    width: 100%;
    position: relative;
    top: auto;
    transform: none;
    margin-top: 20px;
    justify-content: flex-start;
  }

  .page-home__hero__saxophone-img {
    width: 60%;
    height: auto;
    position: relative;
  }
}

@media (max-width: 768px) {
  .page-home__hero__content {
    padding: 32px 0 0 0;
    gap: 24px;
  }

  .page-home__hero__text {
    max-width: 100%;
    gap: 24px;
  }

  .page-home__hero__titles {
    gap: 16px;
  }

  .page-home__hero__seo-title {
    font-size: 14px;
    line-height: 20px;
  }

  .page-home__hero__seo-title::before {
    left: -30px;
    width: 20px;
  }

  .page-home__hero__saxophone-img {
    width: 100%;
  }

  .page-home__hero__delivery-info {
    gap: 12px;
  }

  .page-home__hero__delivery-icon {
    width: 24px;
    height: 24px;
  }

  .page-home__hero__delivery-info span {
    font-size: 14px;
    line-height: 20px;
  }

  .page-home__hero__buttons {
    gap: 12px;
    flex-direction: column;
    align-items: stretch;
  }

  .page-home__services {
    padding: 100px 0 0;
  }

  .page-home__services__content {
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 0;
    padding: 0 0 32px;
  }

  .page-home__services__icons-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px 4px;
  }

  .page-home__services__icon-container {
    width: 80px;
    height: 80px;
  }

  .page-home__services__icon-item h4 {
    font-size: 16px;
    line-height: 20px;
  }

  .page-home__services__cta {
    padding: 50px 0;
  }

  .page-home__services__cta-buttons {
    flex-direction: column;
    align-items: center;
    gap: 24px;
  }

  .page-home__services__cta-buttons .button {
    width: 100%;
    max-width: 300px;
  }

  .page-home__arrivals {
    padding: 20px 0;
  }

  .page-home__rental-cta {
    padding: 32px 0;
  }

  .page-home__rental-cta__text {
    gap: 18px;
  }

  .page-home__rental-cta__content {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .page-home__rental-cta__main-title {
    font-size: 32px;
    line-height: 36px;
    letter-spacing: 0px;
  }

  .page-home__rental-cta__button .button {
    width: 100%;
  }

  .page-home__about-family__content {
    grid-template-columns: 1fr;
    gap: 20px;
    min-height: auto;
    padding: 32px 0;
  }

  .page-home__about-family__photo {
    max-width: 400px;
  }

  .page-home__about-family__buttons {
    flex-direction: column;
    gap: 12px;
    width: 100%;
  }

  .page-home__about-family__buttons .button {
    width: 100%;
  }

  .page-home__faq {
    padding: 32px 0;
  }

  .page-home__faq__grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

/* ========================================
   PAGE: 404
   ======================================== */

.page-404__header {
  padding: 48px 0;
}

.page-404__error-section {
  text-align: center;
  padding: 0 20px 100px;
}

.page-404__error-title {
  font-size: 64px;
  margin-bottom: 20px;
}

.page-404__error-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}

.page-404__error-message {
  margin-bottom: 20px;
}

.page-404__error-description {
  margin-bottom: 40px;
}

.page-404__error-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
}

/* ========================================
   PAGE: TEMOIGNAGES
   ======================================== */

.page-temoignages__header {
  padding: 48px 0;
  text-align: center;
  background: white;
}

.page-temoignages__header-content {
  text-align: center;
}

.page-temoignages__testimonials-row {
  padding: 30px 0;
}

/* ========================================
   AUTHOR AVATAR COMPONENT
   ======================================== */
.author-avatar {
  display: flex;
  align-items: center;
  gap: 16px;
}

.author-avatar__image {
  flex-shrink: 0;
}

.author-avatar__photo {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  -o-object-fit: cover;
  object-fit: cover;
}

.author-avatar__info {
  display: flex;
  flex-direction: column;
  gap: 4px;
  text-align: left;
}

.author-avatar__name {
  margin: 0;
  font-size: var(--font-size-md);
  font-weight: var(--weight-bold);
  line-height: 1.2;
}

.author-avatar__title {
  margin: 0;
  font-size: var(--font-size-sm);
  line-height: 1.2;
}

.author-avatar__link {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease;
}

@media (max-width: 768px) {
  .author-avatar {
    gap: 12px;
  }

  .author-avatar__photo {
    /* width: 50px;
    height: 50px; */
  }

  .author-avatar__name {
    font-size: var(--font-size-sm);
  }

  .author-avatar__title {
    font-size: var(--font-size-xs);
  }
}
