.navbar {
  padding: 1rem 1rem;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.05);
}

.navbar .navbar-brand img {
  height: 64px;
}

.navbar .navbar-nav {
  gap: 1.5rem;
}

.navbar .navbar-nav .nav-link.animate-link {
  position: relative;
  font-weight: 600;
}

.navbar .navbar-nav .nav-link.animate-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 0;
  height: 2px;
  background-color: currentColor;
  transition: width 0.3s ease;
}

.navbar .navbar-nav .nav-link.animate-link:hover::after {
  width: 100%;
}

@media (max-width: 767.98px) {
  .navbar .navbar-nav .nav-link.animate-link::after {
    display: none;
  }

  .navbar .navbar-nav .nav-link.animate-link:hover::after {
    width: 100%;
  }

  .navbar .navbar-nav .nav-link.animate-link:hover {
    color: #009d9a !important;
  }
}

.navbar .navbar-nav .nav-link.animate-link.dropdown-toggle {
  padding-right: 1.5rem;
}

.navbar .navbar-nav .nav-link.animate-link.dropdown-toggle::after {
  display: none !important;
}

.navbar .navbar-nav .nav-link.animate-link.dropdown-toggle .dropdown-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: 0.3rem;
  width: 18px;
  height: 18px;
  pointer-events: none;
}

.navbar .navbar-nav .nav-link.animate-link.dropdown-toggle .dropdown-arrow svg {
  width: 100%;
  height: 100%;
  fill: currentColor;
  transform: translateY(2px);
  transition: transform 0.3s ease;
}

.navbar .navbar-nav .nav-link.active {
  color: #009d9a !important;
  font-weight: 700;
}

.navbar .navbar-nav .nav-link.active::after {
  width: 100%;
}

@media (max-width: 767.98px) {
  .navbar .navbar-nav .nav-link.active::after {
    display: none;
  }
}

.navbar .navbar-nav .dropdown .nav-link.show .dropdown-arrow {
  margin-top: 4px;
}

.navbar .navbar-nav .dropdown .nav-link.show .dropdown-arrow svg {
  transform: rotate(180deg) translateY(2px) !important;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

@media (max-width: 767.98px) {
  .navbar .navbar-nav .dropdown .nav-link.show .dropdown-arrow {
    margin-top: 6px;
  }
}

.navbar .navbar-nav .dropdown-arrow svg {
  transform: translateY(2px);
  transition: transform 0.3s ease;
}

.navbar .navbar-nav .nav-item.dropdown.show .dropdown-arrow svg {
  transform: rotate(180deg) translateY(2px);
}

.navbar .navbar-nav .dropdown-menu {
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  animation: fadeInSlide 0.3s ease;
}

@keyframes fadeInSlide {
  from {
    opacity: 0;
    transform: translateY(-5px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.navbar .login-icon {
  transform: translateY(1px);
  flex-shrink: 0;
}

.text-teal {
  color: #00c2cb !important;
}

.text-teal:hover {
  color: #00e6ef !important;
}

.property-hero-section {
  background: #f8f9fb;
  padding-top: 4rem;
  padding-bottom: 3rem;
}

.property-hero-section .property-hero-heading {
  font-size: 2.75rem;
  font-weight: 700;
  color: #1c1e21;
  line-height: 1.3;
  margin-bottom: 1rem;
}

.property-hero-section .property-hero-heading .highlight {
  position: relative;
  display: inline-block;
}

.property-hero-section .property-hero-heading .highlight::after {
  content: "";
  display: block;
  width: 60%;
  height: 4px;
  background: #00a9a5;
  margin: 6px auto 0;
  border-radius: 10px;
}

.property-hero-section .property-hero-subtitle {
  font-size: 1.125rem;
  color: #6c757d;
  max-width: 680px;
  margin: 0 auto;
}

.property-listing {
  background-color: #ffffff;
}

.property-listing .property-card {
  transition: box-shadow 0.3s ease;
  border: 1px solid #d5d5d5;
}

.property-listing .property-card:hover {
  box-shadow: 0 0 0 3px rgba(0, 194, 203, 0.2);
}

.property-listing .property-card .property-img {
  height: 200px;
  -o-object-fit: cover;
  object-fit: cover;
}

.property-listing .property-card h5 {
  font-size: 1.125rem;
  color: #333;
}

.property-listing .property-card .btn-outline-primary {
  border-color: #00c2cb;
  color: #00c2cb;
}

.property-listing .property-card .btn-outline-primary:hover {
  background-color: #00c2cb;
  color: #fff;
}

.property-listing .property-card svg {
  flex-shrink: 0;
}

.property-details-page {
  background-color: #f9fafb;
}

.property-details-container {
  background-color: #f9f9f9;
}

.property-details-container .property-thumbnail {
  width: 200px;
}

.property-details-container .property-thumbnail img {
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 0.5rem;
  width: 100%;
}

.property-details-container h1 {
  color: #343a40;
}

.property-details-container p {
  color: #464646;
  line-height: 1.5;
  font-size: 0.9375rem;
}

.property-details-container p svg {
  flex-shrink: 0;
}

.property-details-container .btn-outline-dark {
  color: #343a40;
  border-color: #343a40;
}

.property-details-container .btn-outline-dark:hover {
  background-color: #343a40;
  color: #fff;
}

.property-details-container .btn-outline-secondary {
  color: #6c757d;
  border-color: #6c757d;
}

.property-details-container .btn-outline-secondary:hover {
  background-color: #6c757d;
  color: #fff;
}

.property-unit-wrapper {
  padding-top: 2rem;
  padding-bottom: 3rem;
}

.property-unit-wrapper .filter-toolbar {
  background-color: #fff;
  border: 1px solid #dee2e6;
}

.property-unit-wrapper .unit-group-header {
  font-size: 0.95rem;
  font-weight: 500;
  color: #343a40;
  border-bottom: 1px solid #dee2e6;
  padding-bottom: 0.5rem;
  margin-bottom: 1.5rem;
}

.property-unit-wrapper .unit-card {
  background-color: #fff;
  border: 1px solid #dee2e6;
  transition: box-shadow 0.2s ease;
}

.property-unit-wrapper .unit-card:hover {
  box-shadow: 0 0 0 0.15rem rgba(13, 110, 253, 0.25);
}

.property-unit-wrapper .unit-card img {
  aspect-ratio: 4/3;
  -o-object-fit: cover;
  object-fit: cover;
}

.property-unit-wrapper .unit-card .dimension {
  font-size: 1rem;
}

.property-unit-wrapper .unit-card .price-info {
  font-size: 1rem;
}

.property-unit-wrapper .unit-card .badge {
  font-size: 0.75rem;
  border-radius: 0.25rem;
}

.property-unit-wrapper .unit-card .btn {
  font-size: 0.9rem;
}

.storage-type-filter .filter-options {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.storage-type-filter .filter-options .type-btn {
  padding: 0.5rem 1.25rem;
  border: 1px solid #ccc;
  border-radius: 2rem;
  background-color: #fff;
  color: #333;
  font-size: 0.95rem;
  font-weight: 500;
  transition: all 0.2s ease-in-out;
  cursor: pointer;
  text-decoration: none;
}

.storage-type-filter .filter-options .type-btn:hover {
  background-color: #f1f1f1;
}

.storage-type-filter .filter-options .type-btn.active {
  background-color: #008080;
  color: #fff;
  border-color: #008080;
}

.property-category-heading h4 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.property-category-heading h4 .highlight {
  color: #008080;
  font-weight: 600;
}

.unit-filter-toolbar {
  border: 1px solid #dbdbdb;
}

.unit-filter-toolbar .form-label {
  font-size: 0.85rem;
  color: #424242;
  margin-bottom: 0.25rem;
}

.unit-filter-toolbar .form-select {
  min-width: 180px;
  padding: 0.45rem 2rem 0.45rem 1rem;
  font-size: 0.9rem;
  border-radius: 2rem;
  border: 1px solid #ddd;
}

.unit-filter-toolbar .form-select:focus {
  border-color: #008080;
  box-shadow: 0 0 0 0.1rem rgba(0, 128, 128, 0.15);
}

@media (max-width: 768px) {

  .unit-filter-toolbar .filter-group,
  .unit-filter-toolbar .sort-group {
    width: 100%;
  }

  .unit-filter-toolbar .form-select {
    width: 100%;
  }
}

.box-listing-wrapper .box-card {
  border-radius: 1rem;
  transition: all 0.2s ease-in-out;
  background: #fafafa !important;
  z-index: 1;
}

.box-listing-wrapper .box-card .box-card-body .price {
  font-size: 1.4rem;
}

.box-listing-wrapper .box-card .box-card-body .text-danger {
  color: #d32f2f !important;
  font-size: 0.875rem;
}

.box-listing-wrapper .box-card .box-card-body .text-danger .discount-icon {
  fill: #d32f2f !important;
}

.box-listing-wrapper .box-card .box-card-body .badge {
  font-size: 0.75rem;
  padding: 0.4rem 0.75rem;
  border-radius: 999px;
  font-weight: 600;
  border: 1px solid transparent;
}

.box-listing-wrapper .box-card .box-card-body .badge.box-type-label {
  background: #797a7a;
  color: #fff;
  text-transform: uppercase;
  font-weight: bold;
}

.box-listing-wrapper .box-card .box-card-body .badge.size-badge {
  background: #fff;
  color: #111;
  border-color: #ddd;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.08);
  font-size: 1.2rem;
}

.box-listing-wrapper .box-card .box-card-body .badge.tag-discount {
  background: #d9f8e5;
  color: #11703f;
  border-color: #b7e5c5;
}

.box-listing-wrapper .box-card .box-card-body .badge.tag-hurry {
  background: #fff0c2;
  color: #996c00;
  border-color: #ffe28d;
}

.box-listing-wrapper .box-card .box-card-body .img-wrapper {
  border: 1px solid #e2e2e2;
  background-color: #fff;
  padding: 0.25rem;
  border-radius: 0.75rem;
}

.box-listing-wrapper .box-card .box-card-body .img-wrapper img {
  height: 180px;
  -o-object-fit: contain;
  object-fit: contain;
}

.storage-group {
  display: flex;
  flex-direction: column;
  border: 1px solid #dee2e6;
  border-radius: 0.5rem;
  margin-bottom: 2rem;
}

.storage-group .text-muted {
  font-size: 0.85rem;
  margin-left: 0.5rem;
}

.storage-group .group-toggle {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  width: 100%;
  padding: 0.75rem 1.25rem;
  background-color: #f8f9fa;
  border: none;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.storage-group .group-toggle .chevron-icon {
  display: flex;
  align-items: center;
}

.storage-group .group-toggle .chevron-icon .chevron {
  fill: #6c757d;
  transition: transform 0.3s ease;
}

.storage-group .group-toggle.collapsed .chevron {
  transform: rotate(-90deg);
}

.storage-group .group-toggle span {
  font-weight: 400;
  font-size: 0.9rem;
  color: #6c757d;
}

.storage-group .group-toggle:hover {
  background-color: #eef1f3;
}

.storage-group .storage-listing-box {
  padding: 1rem 1.25rem;
  background-color: #fff;
  border-top: 1px solid #dee2e6;
}

.storage-group .box-card {
  border: 1px solid #e9ecef;
  background-color: #fff;
  border-radius: 0.5rem;
}

.storage-group .box-card img {
  max-height: 160px;
  -o-object-fit: contain;
  object-fit: contain;
}

.storage-group .box-card .badge {
  font-size: 0.75rem;
}

.storegister-mini-store-invert-action-btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  padding: 0.65rem 1.4rem;
  border-radius: 999px;
  transition: all 0.2s ease-in-out;
  white-space: nowrap;
  color: #212529;
  background-color: #fff;
  border: 1px solid #ced4da;
}

.storegister-mini-store-invert-action-btn .material-symbols-outlined {
  font-size: 1.2rem;
  transition: transform 0.2s ease;
}

.storegister-mini-store-invert-action-btn:hover,
.storegister-mini-store-invert-action-btn:focus {
  color: black;
  border-color: #adb5bd;
  background-color: #f8f9fa;
  transform: translateY(-1px);
}

.dropdown.show .storegister-mini-store-invert-action-btn {
  color: #212529;
  background-color: #fff;
  border: 1px solid #ced4da;
  transform: translateY(-1px);
}

.dropdown.show .storegister-mini-store-invert-action-btn .material-symbols-outlined {
  transform: translateX(2px);
}

.storegister-mini-store-invert-action-btn:active {
  transform: scale(0.98);
}

.rent-button-group {
  position: relative;
}

.rent-button-group .dropdown-menu {
  top: 100% !important;
  left: 0 !important;
  right: auto !important;
  margin-top: 0.6rem;
  border-radius: 1rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  border: 1px solid #e0e0e0;
  padding: 0.75rem 0;
  z-index: 1055;
}

.rent-button-group .dropdown-menu::before {
  content: "";
  position: absolute;
  top: -10px;
  left: 2rem;
  width: 16px;
  height: 16px;
  background: #fff;
  border-left: 1px solid #e0e0e0;
  border-top: 1px solid #e0e0e0;
  transform: rotate(45deg);
  z-index: -1;
}

.rent-button-group .dropdown-menu .dropdown-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.95rem;
  font-weight: 500;
  padding: 0.65rem 1.25rem;
  color: #343a40;
}

.rent-button-group .dropdown-menu .dropdown-item span {
  font-weight: 600;
  color: #198754;
}

.rent-button-group .dropdown-menu .dropdown-item:hover,
.rent-button-group .dropdown-menu .dropdown-item:active {
  background-color: #eaeaea;
}

.booking-cart-container .card {
  background-color: #fff;
  border-radius: 1rem;
  border: 1px solid #e5e7eb;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.06);
}

.booking-cart-container .text-teal {
  color: #0f766e;
}

.booking-cart-container .btn-teal {
  background-color: #0f766e;
  color: #fff;
  font-weight: 600;
  border-radius: 0.5rem;
  transition: background-color 0.2s;
}

.booking-cart-container .btn-teal:hover {
  background-color: #0d5b59;
}

.booking-cart-container .promo-code-wrapper {
  background-color: #f9fafa;
  border: 1px solid #d1d5db;
}

.booking-cart-container .promo-code-wrapper .promo-input {
  border-top-left-radius: 0.5rem;
  border-bottom-left-radius: 0.5rem;
}

.booking-cart-container .promo-code-wrapper .btn {
  border-top-right-radius: 0.5rem;
  border-bottom-right-radius: 0.5rem;
}

.booking-cart-container input.form-control,
.booking-cart-container .form-control {
  border-radius: 0.5rem;
}

.booking-cart-container .form-label {
  font-weight: 600;
  margin-bottom: 0.25rem;
}