.awfxe__modal-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background: rgba(32, 32, 32, 0.8);
        backdrop-filter: blur(6px);
        display: none;
        justify-content: center;
        align-items: center;
        z-index: 9999;
    }

    .awfxe__loader-wrapper {
        background: var(--awfxe__main_white);
        padding: 30px 40px;
        border-radius: 14px;
        border: 1px solid var(--awfxe__main_border_color);
        box-shadow: 0 8px 30px rgba(146, 138, 146, 0.4);
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 18px;
        max-width: 340px;
        width: 100%;
        font-family: var(--awfxe__font_family), sans-serif;
        color: var(--awfxe__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;
        }
    }

    .awfxe__spinner {
        width: 36px;
        height: 36px;
        border: 4px solid var(--awfxe__pastel_white);
        border-top: 4px solid var(--awfxe__main_color);
        border-radius: 50%;
        animation: spin 1s linear infinite;
    }

    .awfxe__message_loading {
        font-size: 16px;
        font-weight: 500;
        color: var(--awfxe__dark_accent);
        margin: 0;
    }

    .awfxe__message_success {
        font-size: 18px;
        font-weight: bold;
        color: var(--awfxe__main_dark);
        margin: 0;
    }

    @keyframes spin {
        0% {
            transform: rotate(0deg);
        }

        100% {
            transform: rotate(360deg);
        }
    }








#contacts {
  --section-bg-color: #4b0000; /* Deep blood red background for richness */
  --accent-color: #810709; /* Blood red accent for headings and highlights */
  --text-color: #f3f0f0; /* Light text for contrast */
  --border-color: #d5a0a1; /* Soft border tone with warmth */
  background-color: var(--section-bg-color) !important;
  position: relative;
  overflow: hidden;
  font-family: var(--awfxe__font_family);
  padding: clamp(2rem, 5vw, 4rem) 1rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

#contacts .container {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

#contacts .row {
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  gap: 2rem;
  flex-wrap: wrap;
}

#contacts .align-items-end {
  align-items: flex-end;
}

#contacts p {
  font-size: clamp(1rem, 2.2vw, 1.2rem);
  line-height: 1.6;
  color: var(--awfxe__main_white);
  max-width: 100%;
  margin-bottom: 0;
  padding-right: 1rem;
  text-shadow: 0 0 2px rgba(0,0,0,0.4);
}

#contacts h2 {
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  font-weight: 700;
  color: var(--accent-color);
  line-height: 1.4;
  border-left: 4px solid var(--accent-color);
  padding-left: 0.5rem;
  margin-bottom: 1rem;
  text-shadow: 0 0 1px rgba(0,0,0,0.3);
}

#contacts h2:hover {
  color: #b30000; /* Slightly darker blood red on hover for emphasis */
  border-color: #b30000;
}

#contacts .awfxe__image {
  border-radius: 12px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
  transition: transform 0.3s, box-shadow 0.3s;
}

#contacts .awfxe__image:hover {
  transform: scale(1.02);
  box-shadow: 0 8px 16px rgba(0,0,0,0.3);
}

#contacts img {
  aspect-ratio: 5 / 3;
  object-fit: cover;
}

#contacts .mb-4 {
  margin-bottom: 1.5rem !important;
}

@media (max-width: 768px) {
  #contacts .row {
    flex-direction: column;
  }
  #contacts p {
    padding-right: 0;
  }
  #contacts h2 {
    font-size: clamp(1.2rem, 4vw, 2rem);
  }
}
#hero {
  background: linear-gradient(135deg, rgba(48, 0, 0, 0.8), rgba(12, 0, 0, 0.6));
  padding: clamp(1.5rem, 2vw, 3rem) 0;
  font-family: var(--awfxe__font_family);
  position: relative;
  overflow: hidden;
}

#hero .container {
  background-color: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(8px);
  border-radius: 1rem;
  padding: clamp(1rem, 2vw, 2.5rem);
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

#hero .row {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

#hero .col-md-10, #hero .col-xl-9 {
  max-width: 100%;
  width: 100%;
}

#hero p {
  font-size: clamp(1rem, 2.2vw, 1.25rem);
  line-height: 1.6;
  color: var(--awfxe__main_white);
  letter-spacing: 0.02em;
  margin-bottom: 1.5rem;
}

#hero h1 {
  font-family: var(--awfxe__font_family);
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.2;
  font-weight: 700;
  color: var(--awfxe__dark_color);
  text-shadow: 0 2px 4px rgba(0,0,0,0.3);
  margin-bottom: 2rem;
  text-transform: capitalize;
  letter-spacing: 0.03em;
  border-bottom: 4px solid var(--awfxe__light_accent);
  display: inline-block;
  padding-bottom: 0.3em;
}

#hero h1::after {
  content: "";
  display: block;
  height: 4px;
  width: 50px;
  background-color: var(--awfxe__dark_accent);
  margin: 0.5em auto 0;
  border-radius: 2px;
}

#hero .awfxe__primary-button {
  background-color: var(--awfxe__main_color);
  color: var(--awfxe__main_white);
  padding: clamp(0.75rem, 2vw, 1.25rem) 2rem;
  font-size: clamp(1rem, 2vw, 1.2rem);
  font-weight: 600;
  border: none;
  border-radius: 0.75rem;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease;
  text-decoration: none;
  display: inline-block;
}

#hero .awfxe__primary-button:hover {
  background-color: var(--awfxe__dark_accent);
  transform: translateY(-2px);
}

#hero .d-inline-flex {
  margin-top: 2rem;
}

@media (max-width: 768px) {
  #hero .row {
    align-items: center;
  }
  #hero h1 {
    font-size: clamp(1.8rem, 5vw, 2.5rem);
    text-align: center;
  }
  #hero p {
    font-size: clamp(0.9rem, 2vw, 1.1rem);
    text-align: center;
  }
  #hero .d-inline-flex {
    justify-content: center;
  }
}
#contacts-form {
  font-family: var(--awfxe__font_family);
  line-height: 1.4;
  color: var(--awfxe__main_dark);
  background-color: #fff;
  padding: 3rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

/* Header styles */
#contacts-form h2 {
  font-family: var(--awfxe__font_family);
  font-weight: 400;
  font-size: clamp(1.25rem, 2vw, 1.75rem);
  letter-spacing: 0.05em;
  color: #8a0a0a; /* Blood red for emphasis */
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
}

/* Form wrapper */
#contacts-form form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

/* Inputs and textarea */
#contacts-form .form-control {
  font-family: inherit;
  font-size: 1rem;
  padding: 0.75rem 1rem;
  border: 2px solid var(--awfxe__light_color);
  border-radius: 1rem;
  background-color: var(--awfxe__pastel_white);
  color: var(--awfxe__main_dark);
  box-shadow: inset 0 2px 4px rgba(0,0,0,0.05);
  transition: border-color 0.3s, box-shadow 0.3s, background-color 0.3s;
}

#contacts-form .form-control:focus {
  outline: none;
  border-color: var(--awfxe__dark_color);
  box-shadow: 0 0 0 3px rgba(104, 0, 0, 0.2);
  background-color: #fff;
}

/* Placeholder styling for better accessibility */
#contacts-form .form-control::placeholder {
  color: #555;
  opacity: 0.7;
}

/* Button styles - respecting existing class, adding tactile accents */
#contacts-form .awfxe__primary-button {
  font-family: inherit;
  font-weight: 600;
  font-size: 1rem;
  padding: 0.75rem;
  background-color: transparent;
  border: 2px solid var(--awfxe__dark_color);
  border-radius: 1rem;
  color: #8a0a0a; /* Blood red for emphasis */
  cursor: pointer;
  transition: all 0.3s ease;
}

#contacts-form .awfxe__primary-button:hover {
  background-color: var(--awfxe__dark_color);
  color: #fff;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

/* Checkbox label styling with accent color */
#contacts-form .form-check-label {
  display: flex;
  align-items: center;
  font-size: 0.95rem;
  color: var(--awfxe__main_dark);
  background-color: transparent;
  padding: 0.5rem 1rem;
  border-radius: 0.75rem;
  transition: background-color 0.3s;
}

#contacts-form .form-check-label a {
  color: #8a0a0a;
  font-weight: 600;
  text-decoration: underline;
  margin: 0 0.25rem;
  transition: color 0.3s;
}

#contacts-form .form-check-label a:hover {
  color: var(--awfxe__dark_color);
}

/* Map section styles */
#contacts-form h2._lang__map_title {
  font-family: var(--awfxe__font_family);
  font-weight: 400;
  font-size: clamp(1.15rem, 2vw, 1.5rem);
  letter-spacing: 0.05em;
  color: #8a0a0a;
  margin-bottom: 1rem;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
  text-align: center;
}

/* Map image styling */
#contacts-form .awfxe__image-map {
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 1rem;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  object-fit: cover;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  #contacts-form {
    padding: 2rem 1rem;
  }
  #contacts-form h2 {
    font-size: clamp(1.1rem, 3vw, 1.4rem);
  }
  #contacts-form .awfxe__image-map {
    aspect-ratio: auto;
  }
}
#about {
  font-family: var(--awfxe__font_family);
  line-height: 1.75;
  background-color: #2b0000 !important;
  padding: clamp(1.25rem, 2vw, 2rem) 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  overflow: hidden;
}

#about .container {
  max-width: 1200px;
  padding: 0 clamp(1rem, 2vw, 2rem);
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 3vw, 3rem);
}

#about .row {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: clamp(1rem, 2vw, 2rem);
  width: 100%;
}

#about .col-lg-6,
#about .col-lg-5 {
  flex: 1 1 45%;
  min-width: 250px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 1rem;
  box-shadow: inset 0 0 10px rgba(0,0,0,0.4);
  border-radius: 1rem;
  background: rgba(43,0,0,0.4);
  backdrop-filter: blur(8px);
  transition: transform 0.3s, box-shadow 0.3s;
}

#about .col-lg-6:hover,
#about .col-lg-5:hover {
  transform: translateY(-4px);
  box-shadow: inset 0 0 15px rgba(0,0,0,0.6);
}

#about p {
  font-size: clamp(1rem, 2vw, 1.125rem);
  color: var(--awfxe__pastel_white);
  margin-bottom: 0;
  line-height: 1.75;
  max-width: 600px;
}

#about h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--awfxe__light_accent);
  letter-spacing: 0.05em;
  line-height: 1.2;
  border-left: 4px solid var(--awfxe__light_accent);
  padding-left: 0.5em;
  margin: 0;
  position: relative;
}

#about h2::after {
  content: "";
  display: block;
  width: 50px;
  height: 4px;
  background-color: var(--awfxe__light_accent);
  margin-top: 0.5em;
  border-radius: 2px;
}

#about h2 {
  color: var(--awfxe__dark_color);
  margin-bottom: 1rem;
}

#about .img-fluid {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  border-radius: 1rem;
  object-fit: cover;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
  transition: box-shadow 0.3s, transform 0.3s;
}

#about .img-fluid:hover {
  box-shadow: 0 8px 20px rgba(0,0,0,0.4);
  transform: scale(1.02);
}

@media (max-width: 768px) {
  #about .row {
    flex-direction: column;
    align-items: center;
  }
  #about .col-lg-6,
  #about .col-lg-5 {
    flex: 1 1 100%;
    max-width: 90%;
  }
  #about h2 {
    font-size: clamp(1.75rem, 5vw, 2.5rem);
  }
  #about p {
    font-size: clamp(1rem, 2.2vw, 1.125rem);
  }
}
#awfxe__footer {
  background-color: var(--awfxe__dark_color) !important;
  color: var(--awfxe__main_white) !important;
  font-family: var(--awfxe__font_family);
  font-size: clamp(0.9rem, 1vw, 1.2rem);
  line-height: 1.4;
  letter-spacing: 0.02em;
  position: relative;
  overflow: hidden;
}

#awfxe__footer svg {
  background-color: transparent !important;
  fill: var(--awfxe__main_white) !important;
  filter: drop-shadow(0 0 4px rgba(0,0,0,0.3));
  border-radius: 50%;
  margin-bottom: 1rem;
  display: block;
  width: clamp(80px, 10vw, 120px);
  height: auto;
  aspect-ratio: 1 / 1;
  margin-left: auto;
  margin-right: auto;
}

#awfxe__footer .container {
  padding-left: clamp(1rem, 2vw, 3rem);
  padding-right: clamp(1rem, 2vw, 3rem);
}

#awfxe__footer h2 {
  font-weight: 700;
  color: var(--awfxe__light_accent);
  font-family: var(--awfxe__font_family);
  font-size: clamp(1rem, 2vw, 1.25rem);
  margin-bottom: 1rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  border-bottom: 2px solid var(--awfxe__light_accent);
  padding-bottom: 0.5rem;
  display: inline-block;
}

#awfxe__footer ul {
  padding: 0;
  margin: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

#awfxe__footer li {
  margin: 0;
}

#awfxe__footer .nav-link {
  display: block;
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  background-color: transparent;
  color: var(--awfxe__main_white);
  font-weight: 500;
  transition: background-color 0.3s, transform 0.2s, box-shadow 0.3s;
  box-shadow: inset 0 0 0 1px var(--awfxe__main_border_color);
  text-decoration: none;
  position: relative;
}

#awfxe__footer .nav-link:hover,
#awfxe__footer .nav-link:focus {
  background-color: rgba(255, 0, 0, 0.1);
  color: var(--awfxe__light_accent);
  transform: translateY(-2px);
  box-shadow: inset 0 0 0 2px var(--awfxe__light_accent);
}

#awfxe__footer .fw-bold {
  font-weight: 700;
  color: var(--awfxe__light_accent);
}

#awfxe__footer a {
  text-decoration: none;
  color: var(--awfxe__main_white);
  transition: color 0.3s, text-shadow 0.3s;
}

#awfxe__footer a:hover,
#awfxe__footer a:focus {
  color: var(--awfxe__light_accent);
  text-shadow: 0 0 4px rgba(255, 0, 0, 0.6);
}

#awfxe__footer p {
  margin-bottom: 1rem;
  line-height: 1.5;
  max-width: 100%;
}

#awfxe__footer .rounded-2 {
  border-radius: 1rem;
}

#awfxe__footer form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

#awfxe__footer .input-group {
  display: flex;
  align-items: stretch;
  background-color: var(--awfxe__main_white);
  border-radius: 1rem;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
  padding: 0.5rem;
  transition: box-shadow 0.3s, transform 0.3s;
}

#awfxe__footer .input-group:focus-within {
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
  transform: translateY(-2px);
}

#awfxe__footer .form-control {
  flex: 1 1 auto;
  border: none;
  outline: none;
  padding: 0.75rem;
  font-size: 1rem;
  border-radius: 0.75rem;
  background-color: transparent;
  color: var(--awfxe__main_dark);
}

#awfxe__footer .btn {
  background-color: var(--awfxe__light_color);
  border: none;
  padding: 0.75rem 1.25rem;
  border-radius: 0.75rem;
  cursor: pointer;
  transition: background-color 0.3s, transform 0.2s, box-shadow 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
}

#awfxe__footer .btn:hover,
#awfxe__footer .btn:focus {
  background-color: var(--awfxe__light_accent);
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

#awfxe__footer hr {
  border: none;
  height: 2px;
  background-color: var(--awfxe__light_accent);
  margin-top: 0;
  margin-bottom: 1rem;
}

#awfxe__footer small {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.7);
}

#awfxe__footer .row {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1rem, 2vw, 2rem);
}

#awfxe__footer .col-md-4,
#awfxe__footer .col-xl-2,
#awfxe__footer .col-lg-4,
#awfxe__footer .col-xl-4,
#awfxe__footer .col-md-6 {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

@media (max-width: 768px) {
  #awfxe__footer .row {
    flex-direction: column;
  }
  #awfxe__footer .col-md-4,
  #awfxe__footer .col-xl-2,
  #awfxe__footer .col-lg-4,
  #awfxe__footer .col-xl-4,
  #awfxe__footer .col-md-6 {
    width: 100%;
  }
  #awfxe__footer .input-group {
    flex-direction: column;
  }
  #awfxe__footer .btn {
    width: 100%;
  }
}
#features {
  background-color: #fff !important;
  color: var(--awfxe__main_dark) !important;
  padding-top: 2rem !important;
  padding-bottom: 2rem !important;
  text-align: right !important;
  font-family: var(--awfxe__font_family) !important;
  position: relative;
}

#features .container {
  padding-top: 2rem !important;
  padding-bottom: 2rem !important;
}

#features .row.justify-content-end {
  margin-top: 2rem !important;
  margin-bottom: 4rem !important;
  text-align: center !important;
}

#features .col-lg-8,
#features .col-md-10,
#features .col-xl-7 {
  margin-left: auto !important;
  margin-right: auto !important;
  max-width: 70% !important;
}

#features h2 {
  font-size: clamp(1.25rem, 2vw, 1.5rem) !important;
  font-weight: 600 !important;
  color: #8A0000 !important; /* blood red */
  margin-bottom: 0.5rem !important;
  letter-spacing: 0.05em !important;
}

#features h3 {
  font-size: clamp(2rem, 4vw, 3rem) !important;
  font-weight: 400 !important;
  margin-bottom: 1rem !important;
  line-height: 1.2 !important;
  color: #8A0000 !important; /* blood red */
  word-break: break-word !important;
  padding: 0 1rem;
}

#features p {
  font-size: 1rem !important;
  line-height: 1.5 !important;
  margin-bottom: 0 !important;
  color: #4d5861 !important; /* existing text color for contrast */
  padding: 0 1rem;
}

#features .row.g-2 {
  gap: 1.5rem !important;
  margin-top: 2rem !important;
  margin-bottom: 4rem !important;
}

#features [id^="features_item-"] {
  padding: 0 !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: stretch !important;
  width: 100% !important;
}

#features [id^="features_item-"] > div {
  background-color: #fff !important;
  border-radius: 1rem !important;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1) !important;
  padding: 1.5rem !important;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

#features [id^="features_item-"] > div:hover {
  box-shadow: 0 8px 24px rgba(0,0,0,0.15) !important;
  transform: translateY(-0.25rem) !important;
}

#features h3.text-primary {
  font-size: clamp(1.25rem, 2.5vw, 2rem) !important;
  font-weight: 700 !important;
  color: #8A0000 !important; /* blood red */
  margin-bottom: 1rem !important;
  line-height: 1.3 !important;
  padding: 0 0.5rem;
  border-left: 4px solid #8A0000 !important;
  padding-left: 1rem !important;
  background: linear-gradient(to right, rgba(138,0,0,0.05), rgba(138,0,0,0.05)) !important;
  border-radius: 0.75rem !important;
}

#features p.fs-6 {
  font-size: 1rem !important;
  color: #4d5861 !important;
  margin-top: 0.75rem !important;
  line-height: 1.5 !important;
  padding: 0 0.5rem;
}

@media (max-width: 768px) {
  #features {
    text-align: center !important;
  }
  #features .row.justify-content-end {
    flex-direction: column !important;
    align-items: center !important;
  }
  #features .col-lg-8,
  #features .col-md-10,
  #features .col-xl-7 {
    max-width: 90% !important;
  }
  #features [id^="features_item-"] {
    align-items: center !important;
  }
  #features [id^="features_item-"] > div {
    width: 100% !important;
  }
}
#awfxe__header {
  font-family: var(--awfxe__font_family);
  color: var(--awfxe__dark_color);
  background-color: transparent;
  padding: 0;
  margin: 0;
}

/* Header background and separation */
#awfxe__header > .bg-white {
  background-color: #fff !important;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
  border-bottom: 2px solid var(--awfxe__main_border_color);
  border-radius: 0 0 8px 8px;
  transition: box-shadow 0.3s ease, border-color 0.3s ease;
}

/* Contact info styling */
#awfxe__header .py-1 {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75em;
  font-size: clamp(0.9em, 1vw, 1.2em);
  color: var(--awfxe__dark_color);
}

#awfxe__header svg {
  fill: var(--awfxe__dark_color);
  flex-shrink: 0;
  transition: fill 0.3s ease;
}
#awfxe__header span {
  font-weight: 400;
}

/* Navbar styling */
#awfxe__header .navbar {
  padding: 0.75em 1em;
  background-color: transparent;
}

#awfxe__header .navbar-brand {
  font-family: var(--awfxe__font_family);
  font-size: clamp(1.2em, 2vw, 1.8em);
  font-weight: 700;
  color: var(--awfxe__dark_color);
  letter-spacing: 0.05em;
  transition: color 0.3s ease, transform 0.2s ease;
}

#awfxe__header .navbar-brand span {
  border-bottom: 2px solid var(--awfxe__light_accent);
  padding-bottom: 0.2em;
}

#awfxe__header .navbar-toggler {
  border: none;
  outline: none;
  background: transparent;
  cursor: pointer;
  padding: 0.5em;
  transition: transform 0.2s ease;
}

#awfxe__header .navbar-toggler:hover {
  transform: scale(1.05);
}

#awfxe__header .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='%236a0f10' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
  width: 24px;
  height: 24px;
}

/* Navigation links */
#awfxe__header .navbar-nav {
  gap: 0.75em;
}

#awfxe__header ._awfxe__menu-item {
  font-family: var(--awfxe__font_family);
  font-size: clamp(0.95em, 1.8vw, 1.2em);
  color: var(--awfxe__dark_color);
  padding: 0.75em 1em;
  border-radius: 4px;
  transition: background-color 0.3s ease, color 0.3s ease;
  text-decoration: none;
}

#awfxe__header ._awfxe__menu-item:hover,
#awfxe__header ._awfxe__menu-item:focus {
  background-color: rgba(0, 0, 0, 0.05);
  color: var(--awfxe__light_accent);
}

/* Call-to-action button styling */
#awfxe__header a.btn {
  font-family: var(--awfxe__font_family);
  font-size: clamp(1em, 1.5vw, 1.2em);
  font-weight: 600;
  background-color: var(--awfxe__dark_accent) !important;
  color: #fff !important;
  padding: 0.75em 2em;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: background-color 0.3s ease, box-shadow 0.3s ease, transform 0.2s ease;
}

#awfxe__header a.btn:hover,
#awfxe__header a.btn:focus {
  background-color: var(--awfxe__light_accent) !important;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
  transform: translateY(-2px);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  #awfxe__header .py-1 {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5em;
  }
  #awfxe__header .navbar {
    padding: 0.5em 1em;
  }
  #awfxe__header .navbar-brand {
    font-size: clamp(1em, 4vw, 1.5em);
  }
  #awfxe__header .navbar-nav {
    flex-direction: column;
    gap: 0.5em;
  }
  #awfxe__header a.btn {
    width: 100%;
    text-align: center;
    padding: 0.75em;
  }
}
#products {
  background-color: #6a0f10 !important; /* deep blood red background for section */
  font-family: var(--awfxe__font_family);
  padding-top: 2rem;
  padding-bottom: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}
#products h2 {
  font-size: clamp(2rem, 5vw, 3rem);
  color: var(--awfxe__main_white);
  letter-spacing: 0.05em;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.7);
  margin-bottom: 1.5rem;
  text-transform: capitalize;
  font-weight: 300;
  text-align: center;
}
#products .container {
  max-width: 1200px;
  width: 100%;
}
#products .row {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}
#products [id^="products_item-"] {
  flex: 1 1 calc(50% - 1rem);
  min-width: 250px;
}
#products [id^="products_item-"] a {
  display: block;
  padding: 2rem;
  border-radius: 1rem;
  background-color: #f3f0f0;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
  border: 2px solid transparent;
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
  color: #312222;
  text-decoration: none;
  position: relative;
}
#products [id^="products_item-"] a:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0,0,0,0.3);
  border-color: var(--awfxe__dark_accent);
}
#products [id^="products_item-"] a p {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  line-height: 1.4;
  margin-top: 1rem;
  color: #312222;
}
#products [id^="products_item-"] h4 {
  font-weight: 700;
  color: var(--awfxe__dark_color);
  margin-top: 1.2rem;
  font-size: clamp(1.2rem, 3vw, 1.5rem);
  position: relative;
}
#products [id^="products_item-"] h4::after {
  content: "";
  display: block;
  height: 2px;
  width: 50px;
  background-color: var(--awfxe__dark_accent);
  margin-top: 0.5rem;
  border-radius: 1px;
}
#products [id^="products_item-"] h4.text-secondary {
  color: var(--awfxe__warning);
  font-size: 1.4rem;
  font-weight: bold;
  margin-top: 0.8rem;
}
#products p {
  font-size: clamp(1.1rem, 2.5vw, 1.3rem);
  color: #fff;
  margin-top: 2rem;
  line-height: 1.5;
}
#products .btn {
  font-family: inherit;
  font-size: 1rem;
  font-weight: 600;
  border: none !important;
  padding: 1rem 2rem;
  border-radius: 0.75rem;
  background-color: transparent !important;
  color: var(--awfxe__main_white);
  border: 2px solid var(--awfxe__main_white);
  cursor: pointer;
  transition: background-color 0.3s, color 0.3s, border-color 0.3s, box-shadow 0.3s;
}
#products .btn:hover {
  background-color: rgba(255,255,255,0.1);
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}
#products .shadow {
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}
#products .text-white {
  color: #f3f0f0 !important;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.7);
}
#products .py-3 {
  padding-top: 1rem !important;
  padding-bottom: 1rem !important;
}
#products .pb-0 {
  padding-bottom: 0 !important;
}
#products .pt-0 {
  padding-top: 0 !important;
}
#products .pt-xxl-3 {
  padding-top: 1.5rem !important;
}
#products .pb-xxl-0 {
  padding-bottom: 0 !important;
}
#products .fs-4 {
  font-size: clamp(1.2rem, 2.5vw, 1.5rem);
}
#products .fw-lighter {
  font-weight: 300;
}
#products .text-capitalize {
  text-transform: capitalize;
}
@media(max-width: 768px) {
  #products [id^="products_item-"] {
    flex: 1 1 100%;
  }
  #products p {
    font-size: 1rem;
  }
  #products h2 {
    font-size: clamp(1.8rem, 6vw, 2.5rem);
  }
  #products .btn {
    width: 100%;
    text-align: center;
  }
}
