/* ==========================================================================
GETPRO SVETAINĖS PATAISYMŲ FAILAS (Pagal pavyzdį v3)
========================================================================== */
/*
PATAISYMAS Nr. 1: Viršutinės juostos tvarkymas mobiliojoje versijoje
*/
@media (max-width: 991.98px) {
    body .header-area .top-header .header-left-content {
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 10px 0;
        text-align: center;
    }

    body .header-area .top-header .header-left-content li {
        margin-bottom: 8px;
    }

    body .header-area .top-header .header-left-content li:last-child {
        margin-bottom: 0;
    }

    body .header-area .top-header .header-right-content>ul {
        display: flex;
        justify-content: center;
        gap: 15px;
        padding-bottom: 10px;
    }
}

/*
PATAISYMAS Nr. 2: Favoritų ("Wishlist") puslapio išvaizdos sutvarkymas
*/
body .mall-wishlists-manager {
    margin-top: 30px;
}

body .mall-wishlists-manager__lists.col-lg-3 {
    padding: 20px;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    background-color: #f9f9f9;
    height: 100%;
}

/* !!! GALUTINIS PATAISYMAS PAGAL JŪSŲ PAVYZDĮ !!! */
/* Kiekvieną grupę (<a>) paverčiame bloku ir pridedame tarpą PO ja */
body .mall-wishlists .mall-wishlist-item {
    display: block;
    padding: 15px 0;
    border-bottom: 1px solid #e0e0e0;
    text-decoration: none;
    color: inherit;
}

/* Pašaliname tarpą po paskutine grupe */
body .mall-wishlists .mall-wishlist-item:last-child {
    margin-bottom: 0 !important;
    border-bottom: none !important;
}

/* Paliekame mažą tarpelį tarp pavadinimo ir kainos */
body .mall-wishlists .mall-wishlist-item__name {
    margin-bottom: 4px;
}

/* Paryškiname aktyvų sąrašą */
body .mall-wishlists .mall-wishlist-item--active .mall-wishlist-item__name {
    font-weight: bold;
    color: #c00;
}

/* Hover efektas */
body .mall-wishlists .mall-wishlist-item:hover {
    background-color: #f0f0f0;
}

@media (max-width: 991.98px) {
    body .mall-wishlists-manager__lists.col-lg-3 {
        margin-bottom: 30px;
    }
}/* ==========================================================================
   BEDRIFTSAVTALE FORM STYLES
   ========================================================================== */
form#register-company {
  max-width: 620px;
  margin: 0 auto;
  background: #fff;
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.06);
  border: 1px solid #eaeaea;
}
form#register-company .form-group {
  margin-bottom: 20px;
}
form#register-company label {
  display: block;
  font-weight: 800;
  font-size: 12px;
  color: #111;
  margin-bottom: 7px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
form#register-company .form-control {
  width: 100%;
  padding: 13px 16px;
  border: 2px solid #eaeaea !important;
  border-radius: 8px;
  box-sizing: border-box;
  font-size: 15px;
  background: #f9fafb !important;
  color: #111;
  outline: none;
  font-family: inherit;
  transition: border-color 0.2s, background 0.2s;
  box-shadow: none !important;
}
form#register-company .form-control:focus {
  border: 2px solid #b91c1c !important;
  background: #fff !important;
  color: #111;
  outline: none;
  box-shadow: none !important;
}
form#register-company textarea.form-control {
  min-height: 110px;
  resize: vertical;
}
form#register-company .mall-btn.default-btn {
  background: #b91c1c !important;
  color: #fff !important;
  width: 100% !important;
  padding: 16px !important;
  border: none !important;
  border-radius: 8px !important;
  font-size: 16px !important;
  font-weight: 900 !important;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  margin-top: 10px;
  display: block;
  transition: background 0.2s;
}
form#register-company .mall-btn.default-btn:hover {
  background: #991b1b !important;
}
form#register-company p.text-grey {
  font-size: 12px;
  color: #888;
  margin: 5px 0 0;
  line-height: 1.4;
}
