.plfv__modal-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background: rgba(44, 35, 43, 0.8);
        /* варіація --plfv__main_dark */
        backdrop-filter: blur(6px);
        display: none;
        justify-content: center;
        align-items: center;
        z-index: 9999;
    }

    .plfv__loader-wrapper {
        background: var(--plfv__main_white);
        padding: 30px 40px;
        border-radius: 14px;
        border: 1px solid var(--plfv__main_border_color);
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 18px;
        max-width: 340px;
        width: 100%;
        font-family: var(--plfv__font_family), sans-serif;
        color: var(--plfv__pastel_dark);
        animation: modalFadeIn 0.3s ease-out;
        text-align: center;
    }

    @keyframes modalFadeIn {
        from {
            transform: scale(0.95);
            opacity: 0;
        }

        to {
            transform: scale(1);
            opacity: 1;
        }
    }

    .plfv__spinner {
        width: 36px;
        height: 36px;
        border: 4px solid var(--plfv__pastel_white);
        border-top: 4px solid var(--plfv__main_color);
        border-radius: 50%;
        animation: spin 1s linear infinite;
    }

    ._lang__modal_message_loading {
        font-size: 16px;
        font-weight: 500;
        color: var(--plfv__dark_accent);
        margin: 0;
    }

    ._lang__modal_message_success {
        font-size: 18px;
        font-weight: bold;
        color: var(--plfv__info);
        margin: 0;
    }

    .plfv__spinner-dots {
        display: flex;
        gap: 8px;
        align-items: flex-end;
        height: 24px;
    }

    .plfv__spinner-dots span {
        width: 8px;
        height: 8px;
        background-color: var(--plfv__main_color);
        border-radius: 50%;
        display: inline-block;
        animation: bounce 1s infinite ease-in-out;
    }

    .plfv__spinner-dots span:nth-child(2) {
        animation-delay: 0.2s;
    }

    .plfv__spinner-dots span:nth-child(3) {
        animation-delay: 0.4s;
    }

    @keyframes bounce {

        0%,
        80%,
        100% {
            transform: translateY(0);
        }

        40% {
            transform: translateY(-10px);
        }
    }








#contacts {
  font-family: var(--plfv__font_family);
  color: var(--plfv__dark_color);
  background-color: var(--plfv__main_white);
  padding: clamp(2rem, 5vw, 4rem) 1rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

#contacts .container {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

#contacts .row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 2rem;
}

#contacts .col-lg-7,
#contacts .col-lg-5 {
  flex: 1 1 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

#contacts .col-lg-7 {
  padding: 2rem;
}

#contacts .col-lg-5 {
  padding: 1.5rem;
}

#contacts h3 {
  font-weight: 700;
  font-size: clamp(1.5rem, 3vw, 2rem);
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: var(--plfv__dark_color);
  border-left: 4px solid var(--plfv__light_accent);
  padding-left: 0.75rem;
  transition: color 0.3s, border-color 0.3s;
}

#contacts h3:hover {
  color: var(--plfv__light_accent);
  border-left-color: var(--plfv__dark_accent);
}

#contacts h2 {
  font-weight: 400;
  font-size: clamp(1rem, 2.2vw, 1.25rem);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  color: var(--plfv__grey);
  letter-spacing: 0.5px;
  max-width: 100%;
}

#contacts h2::first-letter {
  font-weight: 700;
  color: var(--plfv__light_accent);
}

#contacts #section_image {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 50px / 20px;
  box-shadow: 0 4px 12px rgba(44, 35, 43, 0.1);
  transition: transform 0.3s, box-shadow 0.3s;
}

#contacts #section_image:hover {
  transform: scale(1.02);
  box-shadow: 0 8px 20px rgba(44, 35, 43, 0.2);
}

@media (max-width: 768px) {
  #contacts .row {
    flex-direction: column;
    align-items: center;
  }
  #contacts .col-lg-7,
  #contacts .col-lg-5 {
    padding: 1rem;
  }
  #contacts h3 {
    font-size: clamp(1.25rem, 4vw, 1.75rem);
  }
  #contacts h2 {
    font-size: clamp(0.9rem, 2.5vw, 1.2rem);
  }
  #contacts #section_image {
    aspect-ratio: auto;
    height: auto;
  }
}
#hero {
    font-family: var(--plfv__font_family);
    color: var(--plfv__main_white);
    background-color: #f0e6f7; /* soft pastel purple for support tone */
    padding: clamp(2rem, 5vw, 4rem) 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
  }

  #hero .container {
    width: 100%;
    max-width: 1200px;
  }

  #hero .row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 2rem;
  }

  #hero .col-lg-6 {
    flex: 1 1 45%;
  }

  #hero .hero-b {
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  #hero h1 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 500;
    color: var(--plfv__dark_color);
    margin-bottom: 1rem;
    line-height: 1.2;
  }

  #hero p {
    font-size: clamp(1rem, 2.5vw, 1.25rem);
    line-height: 1.5;
    margin-bottom: 2rem;
    color: #3a3a3a;
  }

  #hero a.btn {
    background-color: transparent;
    border: 2px solid var(--plfv__main_color);
    color: var(--plfv__main_color);
    padding: 0.75rem 2rem;
    border-radius: 0.75rem;
    font-weight: 700;
    text-decoration: none;
    transition: background-color 0.3s, color 0.3s, box-shadow 0.3s;
  }

  #hero a.btn:hover {
    background-color: var(--plfv__main_color);
    color: #fff;
    box-shadow: 0 4px 12px rgba(160, 4, 152, 0.3);
  }

  #hero .poster {
    border-radius: 0.75rem;
    box-shadow: 0 4px 12px rgba(44, 35, 43, 0.2);
    aspect-ratio: 4/3;
    object-fit: cover;
  }

  /* Accent and link styles within section */
  #hero a.link-light {
    position: relative;
    display: inline-block;
    overflow: hidden;
    border-radius: 0.25rem;
  }

  #hero a.link-light::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--plfv__main_color);
    transform: scaleX(0);
    transition: transform 0.3s ease;
    transform-origin: right;
  }

  #hero a.link-light:hover::after {
    transform: scaleX(1);
    transform-origin: left;
  }

  /* Responsive adjustments */
  @media (max-width: 768px) {
    #hero .row {
      flex-direction: column-reverse;
      align-items: center;
    }

    #hero .col-lg-6 {
      flex: 1 1 100%;
      text-align: center;
    }

    #hero h1 {
      font-size: clamp(1.75rem, 5vw, 2.5rem);
    }

    #hero p {
      font-size: clamp(0.9rem, 2vw, 1.1rem);
    }

    #hero a.btn {
      width: 100%;
      text-align: center;
      padding: 1rem;
    }
  }
#features {
  /* Overall section styling */
  background-color: var(--plfv__main_white) !important;
  color: var(--plfv__dark_color) !important;
  font-family: var(--plfv__font_family);
  border-radius: 1rem;
  padding: clamp(2rem, 5vw, 4rem);
  box-shadow: 0 4px 12px rgba(44, 35, 43, 0.1);
  position: relative;
  overflow: hidden;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

#features .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: clamp(1.5rem, 4vw, 3rem);
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

#features .align-items-start {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

#features .row {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  align-items: start;
}

#features .col-lg-6 {
  flex: 1 1 48%;
  min-width: 300px;
  display: flex;
  align-items: stretch;
}

#features .plfv__image {
  border-radius: 0.75rem;
  box-shadow: 0 4px 8px rgba(44, 35, 43, 0.1);
  width: 100%;
  height: auto;
  object-fit: cover;
  aspect-ratio: 4 / 3;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
#features .plfv__image:hover {
  transform: scale(1.02);
  box-shadow: 0 8px 16px rgba(44, 35, 43, 0.2);
}

#features [id^="features_item-"] {
  background: transparent;
  border: none;
  border-radius: 1rem;
  padding: 1.5rem;
  box-shadow: inset 0 0 0 rgba(0, 0, 0, 0);
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

#features [id^="features_item-"]:hover {
  background-color: rgba(163, 4, 152, 0.05);
  box-shadow: 0 4px 12px rgba(44, 35, 43, 0.1);
}

#features h4 {
  font-weight: 700;
  font-size: clamp(1.2rem, 2.5vw, 1.5rem);
  color: var(--plfv__light_accent);
  margin-bottom: 0.75rem;
  letter-spacing: 0.02em;
}

#features p {
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  line-height: 1.6;
  color: var(--plfv__dark_color);
  margin: 0;
}

#features .text-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

#features .py-2 {
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}

#features .fw-lighter {
  font-weight: 300;
  font-size: clamp(1.2rem, 2.2vw, 1.4rem);
  color: var(--plfv__dark_color);
}

#features .fs-4 {
  font-size: clamp(1.3rem, 2.8vw, 1.6rem);
  color: var(--plfv__dark_color);
  margin-bottom: 0.75rem;
}

#features h3 {
  font-weight: 300;
  font-size: clamp(1.8rem, 3vw, 2rem);
  color: var(--plfv__light_accent);
  margin-bottom: 0.5rem;
  line-height: 1.2;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  #features .row {
    flex-direction: column;
  }
  #features .col-lg-6 {
    flex: 1 1 100%;
  }
  #features .align-items-start {
    align-items: center;
  }
  #features .text-right {
    text-align: center !important;
  }
  #features h3 {
    font-size: clamp(1.5rem, 4vw, 2rem);
  }
  #features p {
    font-size: clamp(0.9rem, 2.2vw, 1.1rem);
  }
}
#about {
  background-color: #f3f0f2 !important;
  color: #2c232b !important;
  font-family: var(--plfv__font_family);
  border-radius: 1rem;
  box-shadow: 0 4px 12px rgba(44, 35, 43, 0.1);
  padding: clamp(1.5rem, 2vw, 3rem);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

#about .container {
  max-width: 1200px;
  width: 90%;
  padding: 1rem;
}

#about .row {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: center;
  justify-content: center;
}

#about .col-lg-12 {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: center;
}

#about p {
  font-size: clamp(1rem, 2vw, 1.25rem);
  line-height: 1.6;
  letter-spacing: 0.02em;
  color: #2c232b;
  max-width: 800px;
  margin: 0 auto;
  padding: 0 1rem;
}

#about h3 {
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1.2rem, 2.5vw, 1.5rem);
  color: var(--plfv__dark_color);
  border-left: 4px solid var(--plfv__main_color);
  padding-left: 0.75rem;
  margin: 0;
  background: linear-gradient(
    to right,
    rgba(172, 88, 193, 0.1),
    rgba(172, 88, 193, 0.1)
  );
  border-radius: 0.5rem;
  box-shadow: inset 0 0 8px rgba(44, 35, 43, 0.05);
  max-width: 90%;
  align-self: center;
  padding: 0.5rem 1rem;
}

#about .plfv__short-button {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  font-size: clamp(0.9rem, 2vw, 1.1rem);
  font-weight: 600;
  color: #fff;
  background-color: var(--plfv__main_color);
  border: none;
  border-radius: 999px;
  box-shadow: 0 4px 8px rgba(44, 35, 43, 0.2);
  cursor: pointer;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
  text-decoration: none;
}

#about .plfv__short-button:hover {
  background-color: #8a007f !important;
  box-shadow: 0 6px 12px rgba(44, 35, 43, 0.3);
}

@media (max-width: 768px) {
  #about {
    padding: clamp(1rem, 4vw, 2rem);
  }
  #about .row {
    gap: 1.5rem;
  }
  #about h3 {
    font-size: clamp(1.1rem, 3vw, 1.4rem);
  }
  #about p {
    font-size: clamp(0.9rem, 2.2vw, 1.2rem);
  }
  #about .plfv__short-button {
    padding: 0.75rem 1.2rem;
    font-size: clamp(0.8rem, 2.2vw, 1rem);
  }
}
#contacts-form {
  font-family: var(--plfv__font_family);
  color: var(--plfv__dark_color);
  line-height: 1.6;
}

#contacts-form h3,
#contacts-form h2 {
  color: var(--plfv__dark_accent);
  font-weight: 700;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  letter-spacing: 0.02em;
  text-shadow: 0 0 4px rgba(0,0,0,0.1);
}

#contacts-form h3 {
  font-size: clamp(1.25rem, 3vw, 1.75rem);
}

#contacts-form h2 {
  font-size: clamp(1.125rem, 2.5vw, 1.5rem);
  text-transform: uppercase;
}

#contacts-form img.plfv__image-map {
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  object-fit: cover;
  aspect-ratio: 16/9;
  width: 100%;
  max-width: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

#contacts-form img.plfv__image-map:hover {
  transform: scale(1.02);
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

#contacts-form .container {
  padding: 1.5rem;
}

#contacts-form .align-items-end {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  align-items: flex-end;
}

#contacts-form .row {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}

#contacts-form .col-lg-5,
#contacts-form .col-lg-6 {
  flex: 1 1 auto;
  min-width: 300px;
}

#contacts-form .col-lg-5 {
  max-width: 45%;
}

#contacts-form .col-lg-6 {
  max-width: 55%;
  margin-left: auto;
}

#contacts-form h4 {
  color: var(--plfv__dark_accent);
  font-size: clamp(1rem, 2.2vw, 1.25rem);
  margin-bottom: 1rem;
  letter-spacing: 0.02em;
}

#contacts-form .mb-4 {
  margin-bottom: 1.5rem !important;
}

#contacts-form .g-0 {
  gap: 0;
}

#contacts-form .row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

#contacts-form svg {
  fill: var(--plfv__light_accent);
  flex-shrink: 0;
}

#contacts-form .text-secondary {
  color: var(--plfv__grey);
}

#contacts-form span,
#contacts-form div {
  font-size: clamp(0.9rem, 2vw, 1.1rem);
}

#contacts-form .form-control {
  background-color: transparent;
  border: none;
  border-bottom: 2px solid var(--plfv__main_border_color);
  border-radius: 0;
  padding: 0.75rem 0.5rem;
  font-size: 1rem;
  transition: border-color 0.3s, box-shadow 0.3s;
}

#contacts-form .form-control:focus {
  outline: none;
  border-color: var(--plfv__light_accent);
  box-shadow: inset 0 -2px 0 0 var(--plfv__light_accent);
}

#contacts-form .btn-primary {
  background-color: var(--plfv__main_color) !important;
  border: none;
  padding: 0.75rem;
  font-size: 1rem;
  letter-spacing: 0.02em;
  transition: background-color 0.3s, box-shadow 0.3s;
}

#contacts-form .btn-primary:hover {
  background-color: var(--plfv__dark_accent) !important;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

#contacts-form .form-check {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9rem;
}

#contacts-form .form-check-input {
  accent-color: var(--plfv__main_color);
  background-color: var(--plfv__light_color);
  border: 2px solid var(--plfv__main_border_color);
  width: 1.2em;
  height: 1.2em;
  cursor: pointer;
  transition: border-color 0.3s, box-shadow 0.3s;
}

#contacts-form .form-check-input:focus {
  outline: none;
  border-color: var(--plfv__light_accent);
  box-shadow: 0 0 0 3px rgba(160, 32, 240, 0.2);
}

#contacts-form a {
  color: var(--plfv__main_color);
  text-decoration: underline;
  transition: color 0.3s, text-shadow 0.3s;
}

#contacts-form a:hover {
  color: var(--plfv__light_accent);
  text-shadow: 0 0 4px rgba(160, 32, 240, 0.2);
}

@media (max-width: 768px) {
  #contacts-form .align-items-end {
    flex-direction: column;
  }
  #contacts-form .col-lg-5,
  #contacts-form .col-lg-6 {
    max-width: 100%;
  }
  #contacts-form .ms-auto {
    margin-left: 0 !important;
  }
}
#plfv__footer {
  background-color: #a00498 !important;
  font-family: var(--plfv__font_family);
  color: var(--plfv__main_white) !important;
  box-shadow: inset 0 0 10px rgba(0,0,0,0.2);
  border-radius: 0 0 12px 12px;
  padding: clamp(1rem, 2vw, 2rem) 0;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

#plfv__footer .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

#plfv__footer .row {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}

#plfv__footer .col-lg-8,
#plfv__footer .col-lg-4 {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-width: 100%;
}

#plfv__footer h2 {
  font-family: var(--plfv__font_family);
  font-weight: 700;
  font-style: italic;
  font-size: clamp(1rem, 2vw, 1.25rem);
  margin-bottom: 0.75rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-bottom: 2px solid transparent;
  padding-bottom: 0.5rem;
  transition: border-color 0.3s ease;
}

#plfv__footer h2:hover {
  border-color: var(--plfv__light_accent);
}

#plfv__footer p {
  font-size: clamp(0.9rem, 1.8vw, 1.1rem);
  line-height: 1.5;
  color: var(--plfv__main_white);
  margin-bottom: 1rem;
  letter-spacing: 0.02em;
}

#plfv__footer h5 {
  font-size: clamp(0.9rem, 1.8vw, 1.1rem);
  margin-bottom: 0.75rem;
  color: var(--plfv__main_white);
  font-weight: 600;
}

#plfv__footer h6 {
  font-size: clamp(0.8rem, 1.6vw, 1rem);
  margin-bottom: 0.75rem;
  color: var(--plfv__main_white);
  font-weight: 500;
}

#plfv__footer .small {
  font-size: clamp(0.8rem, 1.6vw, 1rem);
  color: var(--plfv__main_white);
}

#plfv__footer hr {
  border: none;
  height: 1px;
  background-color: rgba(255,255,255,0.2);
  margin: 1rem 0;
}

#plfv__footer .align-items-stretch {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

#plfv__footer .col-md {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex: 1 1 auto;
}

#plfv__footer .col-md-auto {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 1rem;
}

#plfv__footer a._plfv__menu-item {
  color: var(--plfv__light_accent);
  text-decoration: none;
  padding: 0.25em 0.5em;
  border-radius: 4px;
  transition: background-color 0.2s ease, transform 0.2s ease;
  font-weight: 600;
}

#plfv__footer a._plfv__menu-item:hover {
  background-color: rgba(255,255,255,0.1);
  transform: translateY(-2px);
  box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

@media (max-width: 768px) {
  #plfv__footer .row {
    flex-direction: column;
  }
  #plfv__footer .col-lg-8,
  #plfv__footer .col-lg-4 {
    min-width: 100%;
  }
  #plfv__footer .align-items-stretch {
    flex-direction: column;
  }
  #plfv__footer .col-md-auto {
    justify-content: center;
  }
}
#plfv__header {
  font-family: var(--plfv__font_family);
  display: flex;
  flex-direction: column;
  background-color: var(--plfv__main_white);
  color: var(--plfv__main_dark);
  border-bottom: 1px solid var(--plfv__main_border_color);
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  padding: 0;
  position: relative;
  z-index: 10;
}

#plfv__header > div.bg-white {
  background-color: #f3f0f2;
  padding: 0.25rem 0;
  font-size: clamp(0.75rem, 1vw, 1rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--plfv__main_border_color);
  transition: background-color 0.3s ease;
}

#plfv__header .container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

#plfv__header .align-items-end.row {
  display: flex;
  width: 100%;
  align-items: flex-end;
  gap: 1rem;
}

#plfv__header .col-md {
  flex: 1;
  min-width: 0;
}

#plfv__header .py-1 {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: clamp(0.75rem, 1vw, 1rem);
  color: var(--plfv__main_dark);
}

#plfv__header svg {
  fill: var(--plfv__dark_color);
  flex-shrink: 0;
  transition: fill 0.3s ease;
}

#plfv__header span {
  font-weight: 500;
  color: var(--plfv__main_dark);
}

#plfv__header hr {
  margin: 0;
  border: none;
  height: 1px;
  background-color: var(--plfv__main_border_color);
  width: 100%;
}

#plfv__header nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.5rem 0;
}

#plfv__header .navbar {
  width: 100%;
  padding: 0;
}

#plfv__header .navbar-brand {
  font-family: var(--plfv__font_family);
  font-weight: 700;
  font-size: clamp(1.25rem, 2vw, 1.75rem);
  color: var(--plfv__main_dark);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: color 0.3s ease;
}

#plfv__header .navbar-brand span {
  border-radius: 4px;
  padding: 0.25em 0.5em;
  background-color: transparent;
  transition: background-color 0.3s ease;
}

#plfv__header .navbar-brand span:hover {
  background-color: var(--plfv__pastel_white);
}

#plfv__header .navbar-toggler {
  border: none;
  background: none;
  cursor: pointer;
  padding: 0.25rem;
  transition: transform 0.3s ease;
}

#plfv__header .navbar-toggler:hover {
  transform: scale(1.1);
}

#plfv__header .collapse.navbar-collapse {
  flex-direction: row;
  align-items: center;
  justify-content: flex-end;
  gap: 1.5rem;
  width: 100%;
  margin-top: 0.5rem;
  transition: max-height 0.3s ease;
}

#plfv__header ul.navbar-nav {
  display: flex;
  gap: 1rem;
  margin-bottom: 0;
  list-style: none;
  padding: 0;
}

#plfv__header .nav-item {
  display: flex;
}

#plfv__header ._plfv__menu-item {
  padding: 0.75rem 1.25rem;
  border-radius: 4px;
  text-decoration: none;
  color: var(--plfv__main_dark);
  font-weight: 600;
  transition: background-color 0.3s ease, color 0.3s ease;
}

#plfv__header ._plfv__menu-item:hover {
  background-color: var(--plfv__pastel_white);
  color: var(--plfv__dark_color);
}

#plfv__header a.btn.btn-primary {
  background-color: var(--plfv__main_color) !important;
  color: var(--plfv__main_white) !important;
  border: none !important;
  font-weight: 600;
  padding: 0.75rem 1.5rem;
  border-radius: 1rem;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  transition: background-color 0.3s ease, transform 0.3s ease;
}

#plfv__header a.btn.btn-primary:hover {
  background-color: var(--plfv__dark_color) !important;
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  #plfv__header .align-items-end.row {
    flex-direction: column;
    align-items: flex-start;
  }
  #plfv__header .collapse.navbar-collapse {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }
  #plfv__header nav {
    flex-direction: column;
    align-items: stretch;
  }
  #plfv__header a.btn.btn-primary {
    width: 100%;
    text-align: center;
  }
}
#products {
  font-family: var(--plfv__font_family);
  background-color: var(--plfv__main_white) !important;
  color: var(--plfv__dark_color) !important;
  border-radius: 1rem;
  padding: clamp(1.5rem, 2vw, 3rem) 0;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.05);
  position: relative;
}
#products h3 {
  font-family: var(--plfv__font_family);
  font-weight: 300;
  font-size: clamp(1.75rem, 2.5vw, 2.5rem);
  color: #4b2e83;
  letter-spacing: 0.05em;
  margin-bottom: 0.75em;
  text-transform: capitalize;
  text-align: center;
  position: relative;
  z-index: 1;
}
#products p {
  font-size: calc(var(--plfv__font_size) * 1.1px);
  line-height: 1.6;
  max-width: 800px;
  margin: 0 auto 2rem auto;
  padding: 0 1rem;
  text-align: center;
  color: var(--plfv__dark_color);
}
#products .container {
  width: 100%;
  padding: 0 1rem;
}
#products .row {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}
#products .row.g-2 {
  gap: 1.5rem;
}
#products .row-cols-1 {
  flex-direction: column;
}
#products .row-cols-md-2 {
  flex-direction: row;
  flex-wrap: wrap;
}
#products .row-cols-lg-3 {
  justify-content: space-around;
}
#products_item-1,
#products_item-2,
#products_item-3,
#products_item-4,
#products_item-5 {
  flex: 1 1 calc(33% - 1rem);
  min-width: 250px;
}
#products_item-1 .bg-white,
#products_item-2 .bg-white,
#products_item-3 .bg-white,
#products_item-4 .bg-white,
#products_item-5 .bg-white {
  background-color: var(--plfv__main_white);
  border-radius: 1rem;
  box-shadow: 0 4px 8px rgba(0,0,0,0.05);
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: box-shadow 0.3s, transform 0.3s;
}
#products_item-1 .bg-white:hover,
#products_item-2 .bg-white:hover,
#products_item-3 .bg-white:hover,
#products_item-4 .bg-white:hover,
#products_item-5 .bg-white:hover {
  box-shadow: 0 8px 16px rgba(0,0,0,0.1);
  transform: translateY(-0.25rem);
}
#products_item-1 .py-2,
#products_item-2 .py-2,
#products_item-3 .py-2,
#products_item-4 .py-2,
#products_item-5 .py-2 {
  padding: 1rem;
}
#products_item-1 h3,
#products_item-2 h3,
#products_item-3 h3,
#products_item-4 h3,
#products_item-5 h3 {
  font-family: var(--plfv__font_family);
  font-weight: 600;
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  color: #4b2e83;
  margin-bottom: 0.5em;
  line-height: 1.2;
  letter-spacing: 0.03em;
}
#products_item-1 h4,
#products_item-2 h4,
#products_item-3 h4,
#products_item-4 h4,
#products_item-5 h4 {
  font-family: var(--plfv__font_family);
  font-weight: 400;
  font-size: calc(var(--plfv__font_size) * 1.2px);
  color: var(--plfv__dark_color);
  margin-bottom: 1em;
}
#products_item-1 p,
#products_item-2 p,
#products_item-3 p,
#products_item-4 p,
#products_item-5 p {
  font-size: calc(var(--plfv__font_size) * 1.1px);
  line-height: 1.5;
  color: var(--plfv__grey);
  margin-bottom: 1.5em;
}
#products_item-1 a.plfv__primary-button,
#products_item-2 a.plfv__primary-button,
#products_item-3 a.plfv__primary-button,
#products_item-4 a.plfv__primary-button,
#products_item-5 a.plfv__primary-button {
  display: inline-block;
  padding: 0.75em 1.5em;
  background-color: transparent;
  border: 2px solid #4b2e83;
  border-radius: 0.75em;
  color: #4b2e83;
  font-weight: 600;
  font-family: var(--plfv__font_family);
  font-size: calc(var(--plfv__font_size) * 1.1px);
  text-decoration: none;
  transition: background-color 0.3s, color 0.3s, box-shadow 0.3s;
}
#products_item-1 a.plfv__primary-button:hover,
#products_item-2 a.plfv__primary-button:hover,
#products_item-3 a.plfv__primary-button:hover,
#products_item-4 a.plfv__primary-button:hover,
#products_item-5 a.plfv__primary-button:hover {
  background-color: #4b2e83;
  color: var(--plfv__main_white);
  box-shadow: 0 0 8px rgba(75, 46, 131, 0.4);
}
#products .plfv__short-button {
  display: inline-block;
  padding: 1em 2em;
  margin-top: 2rem;
  font-family: var(--plfv__font_family);
  font-weight: 600;
  font-size: calc(var(--plfv__font_size) * 1.2px);

  background-color: transparent;
  border: 2px solid #4b2e83;
  border-radius: 0.75em;
  cursor: pointer;
  transition: background-color 0.3s, color 0.3s, box-shadow 0.3s;
}
#products .plfv__short-button:hover {
  background-color: #4b2e83;
  color: var(--plfv__main_white);
  box-shadow: 0 0 8px rgba(75, 46, 131, 0.4);
}
@media (max-width: 768px) {
  #products .row {
    flex-direction: column;
    align-items: center;
  }
  #products_item-1,
  #products_item-2,
  #products_item-3,
  #products_item-4,
  #products_item-5 {
    flex: 1 1 100%;
  }
  #products .plfv__short-button {
    width: 100%;
    text-align: center;
  }
}
