html,
body {
  font-family: 'Open Sans', sans-serif;
  margin: 0;
  padding: 0;
}

/* Force Open Sans across the site and override framework defaults. */
body,
body *:not(code):not(pre):not(kbd):not(samp) {
  font-family: 'Open Sans', sans-serif !important;
}

* {
  box-sizing: border-box;
}

h1 {
  color: #7553A6;
}

p {
  line-height: 1.7em;
}

img,
video {
  max-width: 100%;
}

/* Bootstrap-like layout compatibility */
.container,
.container-fluid {
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  padding-right: 15px;
  padding-left: 15px;
}

.container {
  max-width: 1140px;
}

.fixed-top {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1000;
}

.navbar {
  width: 100%;
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}

.shadow {
  box-shadow: 0 2px 14px rgba(0, 0, 0, 0.08);
}

.container-fluid {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}

.navbar-toggler {
  background: transparent;
  border: 0;
  border-radius: 4px;
  color: #fff;
  padding: 8px 12px;
}

.navbar-toggler-icon::before {
  content: "\2630";
  display: inline-block;
  font-size: 30px;
  line-height: 1;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.navbar-collapse {
  display: none;
  width: 100%;
  flex-basis: 100%;
  order: 3;
}

.navbar-collapse.show {
  display: block;
}

.navbar-nav {
  list-style: none;
  margin: 10px 0 0;
  padding: 0;
}

.nav-item {
  display: block;
}

.collapse.navbar-collapse {
  display: none;
}

.collapse.navbar-collapse.show {
  display: block;
}

.ml-auto {
  margin-left: auto;
}

@media (min-width: 1200px) {
  .navbar-expand-xl .navbar-toggler {
    display: none;
  }

  .navbar-expand-xl .navbar-collapse {
    display: block !important;
    width: auto;
    flex-basis: auto;
    order: 0;
  }

  .navbar-expand-xl .navbar-nav {
    display: flex;
    align-items: center;
    margin-top: 0;
  }

  .navbar-expand-xl .navbar-nav .nav-item + .nav-item {
    margin-left: 2rem;
  }
}

@media (max-width: 1199px) {
  .navbar-nav {
    margin-top: 12px;
  }

  .navbar-nav .nav-item + .nav-item {
    margin-top: 12px;
  }

  .navigation-clean .nav-link {
    display: inline-block;
    font-size: 1.15rem;
    line-height: 1.35;
  }
}

.row {
  display: flex;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}

.col,
.col-6,
.col-sm-4,
.col-md-3,
.col-md-4,
.col-md-6,
.col-md-8,
.col-md-12,
.col-lg-3,
.col-lg-4,
.col-lg-5,
.col-lg-6,
.col-lg-8,
.col-lg-12 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
}

.col {
  flex: 1 0 0;
}

.col-6 {
  flex: 0 0 50%;
  max-width: 50%;
}

@media (min-width: 576px) {
  .col-sm-4 {
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
}

@media (min-width: 768px) {
  .col-md-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }

  .col-md-4 {
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }

  .col-md-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }

  .col-md-8 {
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
  }

  .col-md-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }
}

@media (min-width: 992px) {
  .col-lg-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }

  .col-lg-4 {
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }

  .col-lg-5 {
    flex: 0 0 41.666667%;
    max-width: 41.666667%;
  }

  .col-lg-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }

  .col-lg-8 {
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
  }
}

.justify-content-center {
  justify-content: center;
}

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

.text-nowrap {
  white-space: nowrap;
}

.text-uppercase {
  text-transform: uppercase;
}

.d-none {
  display: none !important;
}

@media (min-width: 576px) {
  .d-sm-block {
    display: block !important;
  }
}

.img-fluid {
  width: 100%;
  height: auto;
}

.mb-3 {
  margin-bottom: 1rem;
}

.mb-4 {
  margin-bottom: 1.5rem;
}

.mt-4 {
  margin-top: 1.5rem;
}

.ml-3 {
  margin-left: 1rem;
}

.pt-5 {
  padding-top: 3rem;
}

.pb-5 {
  padding-bottom: 3rem;
}

/* Navigation */
.navigation-clean {
  background: #7556a4;
  color: #fff;
  box-shadow: 0 2px 14px rgba(0, 0, 0, 0.08);
}

.navigation-clean .navbar-brand {
  margin-right: auto;
}

.navigation-clean .nav-link,
.navigation-clean .nav-link:visited {
  color: #fff !important;
  text-decoration: none;
  letter-spacing: 0.02em;
  font-weight: 400;
  font-size: 0.9rem;
}

.navigation-clean .nav-link:hover,
.navigation-clean .nav-link:focus {
  color: #fff !important;
  opacity: 0.9;
  text-decoration: none;
}

.navbar-brand img {
  width: 300px;
}

@media (max-width: 500px) {
  .navbar-brand img,
  #logo {
    width: 200px !important;
  }
}

.uk-navbar-item,
.uk-navbar-nav > li > a,
.uk-offcanvas-bar .uk-nav-default > li > a {
  color: #fff;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
}

.uk-navbar-nav > li > a:hover,
.uk-offcanvas-bar .uk-nav-default > li > a:hover {
  color: #fff;
  opacity: 0.9;
}

.uk-offcanvas-bar {
  background: #7556a4;
}

.margin_space {
  margin-top: 64px;
}

@media (max-width: 500px) {
  .margin_space {
    margin-top: 64px;
  }
}

/* UIkit slideshow replacement */
.simple-slider {
  position: relative;
}

.simple-slider .uk-slideshow-items,
.simple-slider .uk-slideshow-items li {
  height: 500px;
}

.simple-slider .uk-slideshow-items {
  list-style: none;
  margin: 0;
  padding: 0;
}

.simple-slider .uk-slideshow-items li {
  display: block;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  margin: 0;
}

@media (max-width: 767px) {
  .simple-slider .uk-slideshow-items,
  .simple-slider .uk-slideshow-items li {
    height: 360px;
  }
}

/* Existing legacy section styles */
.brands {
  color: #313437;
  background-color: #fff;
}

.brands a {
  display: block;
  text-align: center;
  padding: 40px 0;
}

@media (max-width: 767px) {
  .brands a {
    padding: 30px 0;
  }
}

.brands a img {
  display: inline-block;
  margin: 10px 20px;
  vertical-align: middle;
}

.highlight_text {
  background-color: #7556a4;
  color: #fff;
  padding: 5px 10px 5px 5px;
  margin-left: 0.5em;
  border-radius: 0.2em;
  font-weight: bold;
  font-family: 'Open Sans', sans-serif;
}

.highlight_text strong {
  font-family: 'Open Sans', sans-serif;
}

@media (max-width: 767px) {
  .highlight_text {
    display: inline-block;
    margin-top: 0.5em;
  }
}

.highlight-blue {
  color: #fff;
  background-color: #7556a4;
  padding: 50px 0;
}

.highlight-blue p {
  color: #fff;
  line-height: 1.5;
}

.highlight-blue h2 {
  font-weight: normal;
  margin-bottom: 25px;
  line-height: 1.5;
  margin-top: 0;
  color: inherit;
}

.highlight-blue .intro {
  font-size: 16px;
  max-width: 500px;
  margin: 0 auto 25px;
}

.highlight-phone {
  color: #313437;
  background-color: #eef4f7;
  padding: 50px 0 55px;
  overflow: hidden;
}

@media (max-width: 767px) {
  .highlight-phone {
    text-align: center;
  }
}

.highlight-phone p {
  color: #7d8285;
}

.highlight-phone h2 {
  font-weight: bold;
  margin-bottom: 35px;
  line-height: 1.5;
  margin-top: 0;
  color: inherit;
  font-family: 'Open Sans', sans-serif;
}

.highlight-phone .intro {
  font-size: 18px;
  max-width: 500px;
  line-height: 1.5;
}

.highlight-phone .intro .btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: 0.4px;
  line-height: 1;
}

.highlight-phone .intro .btn span[uk-icon] {
  margin-top: -1px;
}

@media (max-width: 767px) {
  .highlight-phone .intro {
    max-width: none;
  }
}

.projects-horizontal {
  color: #313437;
  background-color: #fff;
}

.projects-horizontal p {
  color: #7d8285;
}

.projects-horizontal .projects {
  padding-bottom: 40px;
}

.projects-horizontal .item {
  padding-top: 60px;
  min-height: 160px;
}

@media (max-width: 767px) {
  .projects-horizontal .item {
    padding-top: 40px;
    min-height: 160px;
  }
}

.projects-horizontal .item .name {
  font-size: 18px;
  font-weight: bold;
  margin-top: 10px;
  margin-bottom: 15px;
  color: #7553A6;
}

@media (max-width: 991px) {
  .projects-horizontal .item .name {
    margin-top: 22px;
  }
}

.projects-horizontal .item .description {
  font-size: 15px;
  margin-bottom: 0;
}

.testimonials-clean {
  color: #313437;
  background-color: #eef4f7;
}

.testimonials-clean p {
  color: #7d8285;
}

.testimonials-clean h2 {
  font-weight: bold;
  margin-bottom: 40px;
  padding-top: 40px;
  color: #7553a6;
}

@media (max-width: 767px) {
  .testimonials-clean h2 {
    margin-bottom: 25px;
    padding-top: 25px;
    font-size: 24px;
  }
}

.testimonials-clean .intro {
  font-size: 16px;
  max-width: 500px;
  margin: 0 auto;
}

.testimonials-clean .people {
  padding: 50px 0 20px;
}

.testimonials-clean .item {
  margin-bottom: 32px;
}

@media (min-width: 768px) {
  .testimonials-clean .item {
    height: 220px;
  }
}

.testimonials-clean .item .box {
  padding: 30px;
  background-color: #fff;
  position: relative;
}

.testimonials-clean .item .box::after {
  content: '';
  position: absolute;
  left: 30px;
  bottom: -24px;
  width: 0;
  height: 0;
  border: 15px solid transparent;
  border-width: 12px 15px;
  border-top-color: #fff;
}

.testimonials-clean .item .author {
  margin-top: 28px;
  padding-left: 25px;
}

.testimonials-clean .item .name {
  font-weight: bold;
  margin-bottom: 2px;
}

.testimonials-clean .item .title {
  font-size: 13px;
  color: #9da9ae;
}

.testimonials-clean .item .description {
  font-size: 15px;
  margin-bottom: 0;
}

.footer-clean {
  padding: 50px 0;
  background-color: #fff;
  color: #4b4c4d;
}

.footer-clean h3 {
  margin-top: 0;
  margin-bottom: 12px;
  font-weight: bold;
  font-size: 16px;
}

.footer-clean ul {
  padding: 0;
  list-style: none;
  line-height: 1.6;
  font-size: 14px;
  margin-bottom: 0;
}

.footer-clean ul a {
  color: inherit;
  text-decoration: none;
  opacity: 0.8;
}

.footer-clean ul a:hover {
  opacity: 1;
}

.footer-clean .item.social {
  text-align: right;
}

@media (max-width: 767px) {
  .footer-clean .item {
    text-align: center;
    padding-bottom: 20px;
  }

  .footer-clean .item.social {
    text-align: center;
  }
}

.footer-clean .item.social > a {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-left: 10px;
  margin-top: 22px;
  color: #fff;
  opacity: 0.75;
  background-color: #7556a4;
}

.footer-clean .item.social > a:hover {
  opacity: 0.9;
}

.footer-clean .copyright {
  margin-top: 14px;
  margin-bottom: 0;
  font-size: 13px;
  opacity: 0.6;
}

.btn {
  display: inline-block;
  text-decoration: none;
  border-radius: 6px;
  padding: 10px 20px;
  transition: all 0.25s;
}

.btn-primary {
  background-color: #7556a4;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.7);
}

.btn-primary:hover {
  background-color: #694b94;
  color: #fff;
}

.btn-light {
  background-color: #fff;
  color: #333;
  border: 1px solid #ddd;
}

.btn-sm {
  padding: 6px 12px;
  font-size: 0.875rem;
}

.white_btn {
  background-color: #fff !important;
  color: #6A499A !important;
  border: none !important;
}

.white_btn:hover {
  background-color: #7754A6 !important;
  color: #fff !important;
}

.mpt {
  padding-top: 0;
}

@media (max-width: 760px) {
  .mpt {
    padding-top: 2em;
  }
}

/* Basket legacy classes kept for compatibility */
.basket_thumb {
  width: 120px;
  height: 120px;
  background-size: cover;
  background-position: center center;
  display: block;
}

.basket_title {
  text-align: left;
}

.basket_button {
  border: none;
  background-image: none;
  background-color: rgba(255, 255, 255, 0);
  color: #FB6A9A;
}

.basket_border_bottom {
  border-bottom: solid 1px #efefef;
}

.backet_mobile_text_right {
  text-align: right !important;
}

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

.basket_mobile_full_width {
  width: 100% !important;
}

.basket_mobile_center {
  text-align: center !important;
}

.alert-info {
  border-radius: 0;
  background-color: #F3D4FF;
  border: solid 2px #AF81F6;
}

/* Leaflet */
#leaflet-map {
  width: 100%;
  height: 350px;
  border: 0;
}
