.ghyn__modal-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background: rgba(44, 35, 43, 0.8);
        /* варіація --ghyn__main_dark */
        backdrop-filter: blur(6px);
        display: none;
        justify-content: center;
        align-items: center;
        z-index: 9999;
    }

    .ghyn__loader-wrapper {
        background: var(--ghyn__main_white);
        padding: 30px 40px;
        border-radius: 14px;
        border: 1px solid var(--ghyn__main_border_color);
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 18px;
        max-width: 340px;
        width: 100%;
        font-family: var(--ghyn__font_family), sans-serif;
        color: var(--ghyn__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;
        }
    }

    .ghyn__spinner {
        width: 36px;
        height: 36px;
        border: 4px solid var(--ghyn__pastel_white);
        border-top: 4px solid var(--ghyn__main_color);
        border-radius: 50%;
        animation: spin 1s linear infinite;
    }

    ._lang__modal_message_loading {
        font-size: 16px;
        font-weight: 500;
        color: var(--ghyn__dark_accent);
        margin: 0;
    }

    ._lang__modal_message_success {
        font-size: 18px;
        font-weight: bold;
        color: var(--ghyn__info);
        margin: 0;
    }

    .ghyn__spinner-dots {
        display: flex;
        gap: 8px;
        align-items: flex-end;
        height: 24px;
    }

    .ghyn__spinner-dots span {
        width: 8px;
        height: 8px;
        background-color: var(--ghyn__main_color);
        border-radius: 50%;
        display: inline-block;
        animation: bounce 1s infinite ease-in-out;
    }

    .ghyn__spinner-dots span:nth-child(2) {
        animation-delay: 0.2s;
    }

    .ghyn__spinner-dots span:nth-child(3) {
        animation-delay: 0.4s;
    }

    @keyframes bounce {

        0%,
        80%,
        100% {
            transform: translateY(0);
        }

        40% {
            transform: translateY(-10px);
        }
    }








#whyus {
    background-color: var(--ghyn__pastel_white)!important;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    padding: 2rem;
  }

  #whyus h3 {
    color: var(--ghyn__main_dark)!important;
    margin-bottom: 1.5rem;
  }

  #whyus h2 {
    line-height: 1.6;
    margin-bottom: 2rem;
  }

  #whyus a {
    border-radius: 6px;
    padding: 0.5rem 1.5rem;
    background-color: var(--ghyn__main_color)!important;
    color: var(--ghyn__main_white)!important;
    text-transform: uppercase;
    transition: background-color 0.3s ease;
  }

  #whyus a:hover {
    background-color: var(--ghyn__dark_accent)!important;
  }

  @media (max-width: 768px) {
    #whyus {
      padding: 1rem;
    }

    #whyus h3 {
      font-size: 1.5rem;
    }

    #whyus h2 {
      font-size: 1rem;
    }
  }
#features {
    background-color: var(--ghyn__light_color)!important;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    padding: 2rem;
  }

  #features h3, #features h4 {
    color: var(--ghyn__dark_accent)!important;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
  }

  #features .bg-secondary {
    background-color: var(--ghyn__pastel_dark)!important;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
  }

  #features .ghyn__primary-button {
    border-radius: 20px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
  }

  @media (max-width: 768px) {
    #features .text-justify {
      text-align: center;
    }
    
    #features .col-lg-7 {
      order: -1;
    }
  }
#about {
    background-color: var(--ghyn__pastel_white);
    padding: 2rem 0;
  }

  #about .lead {
    color: var(--ghyn__dark_color);
    line-height: 1.6;
  }

  #about h2 {
    color: var(--ghyn__main_color) !important;
    margin-bottom: 1.5rem;
    text-align: left;
  }

  #about .ghyn__image {
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  }

  #about .col-lg-5 {
    margin-bottom: 1.5rem;
  }

  #about .col-lg-6 {
    margin-bottom: 1.5rem;
  }

  @media (max-width: 768px) {
    #about h2 {
      font-size: 1.8rem;
    }

    #about .lead {
      font-size: 1rem;
    }
  }
#ghyn__footer {
    background-color: var(--ghyn__main_dark) !important;
    color: var(--ghyn__light_color) !important;
  }

  #ghyn__footer h2 {
    color: var(--ghyn__light_accent) !important;
  }

  #ghyn__footer p {
    color: var(--ghyn__pastel_white) !important;
  }

  #ghyn__footer a {
    color: var(--ghyn__light_accent) !important;
    transition: color 0.3s ease;
  }

  #ghyn__footer a:hover {
    color: var(--ghyn__dark_accent) !important;
  }

  #ghyn__footer .bg-white {
    background-color: var(--ghyn__pastel_white) !important;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  }

  #ghyn__footer .input-group input {
    border-radius: 8px;
  }

  #ghyn__footer .nav-item a {
    border-radius: 6px;
    padding: 10px 15px;
  }

  #ghyn__footer .nav-item a:hover {
    background-color: var(--ghyn__light_color);
  }

  #ghyn__footer .row.align-items-baseline {
    margin-top: 20px;
  }

  @media (max-width: 768px) {
    #ghyn__footer .col-md {
      text-align: center;
    }
  }
#contacts {
    background: linear-gradient(to bottom right, var(--ghyn__main_white) 0%, var(--ghyn__pastel_white) 100%);
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    padding: 2rem 1rem;
  }

  #contacts .fw-light {
    color: var(--ghyn__dark_color)!important;
    line-height: 1.5;
  }

  #contacts .display-5 {
    color: var(--ghyn__main_color)!important;
    margin-bottom: 1.5rem;
  }

  #contacts .ghyn__image {
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s;
  }

  #contacts .ghyn__image:hover {
    transform: scale(1.05);
  }

  @media (max-width: 768px) {
    #contacts .col-lg-5, 
    #contacts .col-lg-7, 
    #contacts .col-md-6 {
      text-align: center;
      margin-bottom: 1rem;
    }
  }
#ghyn__header {
    background-color: var(--ghyn__light_color)!important;
    border-bottom: 2px solid var(--ghyn__main_border_color)!important;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  }

  #ghyn__header .navbar-brand {
    color: var(--ghyn__main_color)!important;
    font-weight: bold;
    font-size: 1.5rem;
    transition: color 0.3s;
  }

  #ghyn__header .navbar-brand:hover {
    color: var(--ghyn__dark_color)!important;
  }

  #ghyn__header .nav-link {
    color: var(--ghyn__pastel_dark)!important;
    font-size: var(--ghyn__font_size)!important;
    padding: 10px 15px;
    border-radius: 5px;
    transition: background-color 0.3s, color 0.3s;
  }

  #ghyn__header .nav-link:hover {
    background-color: var(--ghyn__main_color)!important;
    color: var(--ghyn__main_white)!important;
  }

  #ghyn__header .navbar-toggler {
    border-color: var(--ghyn__main_color)!important;
  }

  #ghyn__header .navbar-toggler:hover {
    background-color: var(--ghyn__light_accent)!important;
  }

  #ghyn__header .navbar-collapse {
    padding: 10px 0;
  }

  @media (max-width: 768px) {
    #ghyn__header .navbar-brand {
      font-size: 1.3rem;
    }

    #ghyn__header .nav-link {
      font-size: 12px!important;
    }
  }
#about {
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  }

  #about h3 {
    color: var(--ghyn__dark_color) !important;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
    margin-bottom: 1rem;
  }

  #about p {
    color: var(--ghyn__grey) !important;
    line-height: 1.6;
  }

  #about .container {
    padding: 1.5rem;
    background: linear-gradient(135deg, var(--ghyn__light_color) 0%, var(--ghyn__pastel_white) 100%);
    border-radius: 12px;
  }

  @media (max-width: 768px) {
    #about h3 {
      font-size: 1.5rem;
    }
    #about p {
      font-size: 0.9rem;
    }
  }
#hero {
    background-color: var(--ghyn__light_color)!important;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  }

  #hero .bg-light {
    background-color: var(--ghyn__pastel_white)!important;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  }

  #hero h1 {
    color: var(--ghyn__main_color)!important;
    margin-bottom: 1rem;
  }

  #hero p {
    color: var(--ghyn__grey)!important;
    line-height: 1.6;
  }

  #hero a {

    border-radius: 6px;
    padding: 10px 20px;
    transition: background-color 0.3s ease;
  }

  #hero a:hover {
    background-color: var(--ghyn__dark_accent)!important;
  }

  @media (max-width: 768px) {
    #hero .bg-light {
      padding: 1rem;
    }

    #hero h1 {
      font-size: 1.5rem;
    }

    #hero p {
      font-size: 0.9rem;
    }

    #hero a {
      width: 100%;
      text-align: center;
    }
  }
#advantages {
    background-color: var(--ghyn__light_color);
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    padding: 2rem 1rem;
  }

  #advantages .text-dark {
    color: var(--ghyn__main_dark) !important;
  }

  #advantages h3 {
    color: var(--ghyn__dark_color) !important;
  }

  #advantages_item-1,
  #advantages_item-2,
  #advantages_item-3,
  #advantages_item-4 {
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  }

  #advantages_item-1 .bg-secondary,
  #advantages_item-2 .bg-secondary,
  #advantages_item-3 .bg-secondary,
  #advantages_item-4 .bg-secondary {
    background-color: var(--ghyn__pastel_dark) !important;
    transition: background-color 0.3s;
  }

  #advantages_item-1 .bg-secondary:hover,
  #advantages_item-2 .bg-secondary:hover,
  #advantages_item-3 .bg-secondary:hover,
  #advantages_item-4 .bg-secondary:hover {
    background-color: var(--ghyn__light_accent) !important;
  }

  #advantages_item-1 h4,
  #advantages_item-2 h4,
  #advantages_item-3 h4,
  #advantages_item-4 h4 {
    color: var(--ghyn__dark_color) !important;
  }

  @media (max-width: 768px) {
    #advantages .text-center {
      text-align: left;
    }

    #advantages_item-1,
    #advantages_item-2,
    #advantages_item-3,
    #advantages_item-4 {
      margin-bottom: 1rem;
    }
  }
#products {
    background: linear-gradient(to bottom, var(--ghyn__pastel_white), var(--ghyn__main_white));
    padding: 20px 0;
  }

  #products .text-white {
    text-shadow: 1px 1px 2px var(--ghyn__main_dark);
  }

  #products h2 {
    margin-top: 30px;
    text-align: right;
    font-size: 2.5rem;
    line-height: 1.2;
  }

  #products_item-1, #products_item-2, #products_item-3, #products_item-4, #products_item-5 {
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

  #products_item-1:hover, #products_item-2:hover, #products_item-3:hover, #products_item-4:hover, #products_item-5:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  }

  #products_item-1 a, #products_item-2 a, #products_item-3 a, #products_item-4 a, #products_item-5 a {
    background-color: var(--ghyn__pastel_white) !important;
    color: var(--ghyn__main_color) !important;
  }

  #products_item-1 a h4, #products_item-2 a h4, #products_item-3 a h4, #products_item-4 a h4, #products_item-5 a h4 {
    color: var(--ghyn__dark_color) !important;
  }

  #products_item-1 a:hover, #products_item-2 a:hover, #products_item-3 a:hover, #products_item-4 a:hover, #products_item-5 a:hover {
    background-color: var(--ghyn__light_color) !important;
  }

  #products_item-1 a p, #products_item-2 a p, #products_item-3 a p, #products_item-4 a p, #products_item-5 a p {
    color: var(--ghyn__grey) !important;
  }

  @media (max-width: 768px) {
    #products h2 {
      font-size: 2rem;
      text-align: center;
    }

    #products_item-1, #products_item-2, #products_item-3, #products_item-4, #products_item-5 {
      margin-bottom: 20px;
    }
  }
#whyus {
    background: linear-gradient(to bottom, var(--ghyn__pastel_dark), var(--ghyn__light_color)) !important;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  }

  #whyus .text-light {
    color: var(--ghyn__main_white) !important;
  }

  #whyus .text-dark {
    color: var(--ghyn__dark_color) !important;
  }

  #whyus .link-light {
    color: var(--ghyn__light_accent) !important;
    transition: color 0.3s;
  }

  #whyus .link-light:hover {
    color: var(--ghyn__dark_accent) !important;
  }

  #whyus .bg-dark {
    background-color: rgba(34, 34, 34, 0.75) !important;
    border-radius: 8px;
  }

  #whyus h2 {
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
    line-height: 1.2;
  }

  #whyus .fst-italic {
    font-size: 1rem;
    line-height: 1.5;
  }

  @media (max-width: 768px) {
    #whyus h2 {
      font-size: 1.5rem;
      margin-bottom: 1rem;
    }
    
    #whyus .fst-italic {
      font-size: 0.9rem;
    }
  }
#contacts-form {
    background-color: var(--ghyn__main_white);
    color: var(--ghyn__main_dark);
  }

  #contacts-form h2 {
    color: var(--ghyn__main_color) !important;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  }

  #contacts-form p {
    line-height: 1.6;
  }

  #contacts-form .text-secondary {
    color: var(--ghyn__pastel_dark) !important;
  }

  #contacts-form .ghyncf-form-wrapper {
    border-radius: 1rem;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  }

  #contacts-form .ghyncf-form-wrapper input,
  #contacts-form .ghyncf-form-wrapper textarea,
  #contacts-form .ghyncf-form-wrapper select {
    border-radius: 0.5rem;
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1);
  }

  #contacts-form .ghyncf-form-wrapper .ghyn__primary-button {
    background-color: var(--ghyn__main_color) !important;
    border-radius: 0.5rem;
    transition: background-color 0.3s;
  }

  #contacts-form .ghyncf-form-wrapper .ghyn__primary-button:hover {
    background-color: var(--ghyn__dark_accent) !important;
  }

  @media (max-width: 768px) {
    #contacts-form .col-lg-5,
    #contacts-form .col-lg-6 {
      margin-bottom: 1rem;
    }
  }
