/** put css for your plugin here **/


/* Fonts */
:root {
  --default-font: "Roboto",  system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --heading-font: "Raleway",  sans-serif;
  --nav-font: "Montserrat",  sans-serif;
}

/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
:root { 
  --background-color: #ffffff; /* Background color for the entire website, including individual sections */
  --default-color: #263a31; /* Default color used for the majority of the text content across the entire website */
  --heading-color: #103524; /* Color for headings, subheadings and title throughout the website */
  --accent-color: #2487ce; /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
  --surface-color: #ffffff; /* The surface color is used as a background of boxed elements within sections, such as cards, icon boxes, or other elements that require a visual separation from the global background. */
  --contrast-color: #ffffff; /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
}

/* Nav Menu Colors - The following color variables are used specifically for the navigation menu. They are separate from the global colors to allow for more customization options */
:root {
  --nav-color: rgba(255, 255, 255, 0.7);  /* The default color of the main navmenu links */
  --nav-hover-color: #ffffff; /* Applied to main navmenu links when they are hovered over or active */
  --nav-mobile-background-color: #ffffff; /* Used as the background color for mobile navigation menu */
  --nav-dropdown-background-color: #ffffff; /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
  --nav-dropdown-color: #263a31; /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #2487ce; /* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */
}

/* Color Presets - These classes override global colors when applied to any section or element, providing reuse of the sam color scheme. */

.light-background {
  --background-color: #edf6f2;
  --surface-color: #ffffff;
}

.dark-background {
  --background-color: #081b12;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #1f3028;
  --contrast-color: #ffffff;
}

.accent-background {
  --background-color: #2487ce;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --accent-color: #ffffff;
  --surface-color: #2a8f5f;
  --contrast-color: #ffffff;
}

/* Smooth scroll */
:root {
  scroll-behavior: smooth;
}


/*Responsive*/
@media screen and (min-width: 1024px){
	:root{
		--normal-font-size:1rem;
	}
}

*{
	box-sizing: border-box;
}

.properties .property-item {
  background-color: var(--surface-color);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 24px color-mix(in srgb, var(--default-color), transparent 92%);
  transition: all 0.3s ease;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 94%);
  height: 100%;
}

.properties .property-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px color-mix(in srgb, var(--default-color), transparent 85%);
}

.properties .property-item .property-link {
  display: block;
  text-decoration: none;
  color: inherit;
}

.properties .property-item .property-link:hover {
  text-decoration: none;
  color: inherit;
}

.properties .property-item .property-image-wrapper {
  position: relative;
  overflow: hidden;
}

.properties .property-item .property-image-wrapper img {
  width: 100%;
  height: 140px;
  object-fit: fill;
  transition: transform 0.4s ease;
}

.properties .property-item .property-image-wrapper:hover img {
  transform: scale(1.08);
}

.properties .property-item .property-image-wrapper .property-status {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 2;
}

.properties .property-item .property-image-wrapper .property-status .status-badge {
  display: inline-block;
  padding: 3px 6px;
  font-size: 9px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-radius: 20px;
  margin-right: 6px;
  margin-bottom: 6px;
}

.properties .property-item .property-image-wrapper .property-status .status-badge.featured {
  background: linear-gradient(135deg, #ff6b35, #ff8e53);
  color: white;
}

.properties .property-item .property-image-wrapper .property-status .status-badge.new {
  background: linear-gradient(135deg, #10b981, #34d399);
  color: white;
}

.properties .property-item .property-image-wrapper .property-status .status-badge.sale {
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), #0066cc 20%));
  color: white;
}

.properties .property-item .property-image-wrapper .property-status .status-badge.rent {
  background: linear-gradient(135deg, #8b5cf6, #a78bfa);
  color: white;
}

.properties .property-item .property-image-wrapper .property-status .status-badge.open {
  background: linear-gradient(135deg, #f59e0b, #fbbf24);
  color: white;
}

.properties .property-item .property-image-wrapper .property-status .status-badge.reduced {
  background: linear-gradient(135deg, #ef4444, #f87171);
  color: white;
}

.properties .property-item .property-image-wrapper .property-actions {
  position: absolute;
  top: 16px;
  right: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  opacity: 0;
  transform: translateX(10px);
  transition: all 0.3s ease;
  z-index: 3;
}

.properties .property-item .property-image-wrapper .property-actions .action-btn {
  width: 25px;
  height: 25px;
  border-radius: 50%;
  border: none;
  background-color: rgba(255, 255, 255, 0.95);
  color: var(--default-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  box-shadow: 0 4px 12px color-mix(in srgb, var(--default-color), transparent 85%);
  transition: all 0.3s ease;
  cursor: pointer;
  position: relative;
}

.properties .property-item .property-image-wrapper .property-actions .action-btn:hover {
  transform: scale(1.1);
  background-color: white;
}

.properties .property-item .property-image-wrapper .property-actions .action-btn.favorite-btn:hover {
  background-color: #ef4444;
  color: white;
}

.properties .property-item .property-image-wrapper .property-actions .action-btn.share-btn:hover {
  background-color: var(--accent-color);
  color: white;
}

.properties .property-item .property-image-wrapper .property-actions .action-btn.gallery-btn:hover {
  background-color: var(--heading-color);
  color: white;
}

.properties .property-item .property-image-wrapper .property-actions .action-btn .gallery-count {
  position: absolute;
  top: -6px;
  right: -6px;
  background-color: var(--accent-color);
  color: white;
  font-size: 10px;
  font-weight: 600;
  padding: 2px 4px;
  border-radius: 10px;
  min-width: 15px;
  height: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.properties .property-item .property-image-wrapper:hover .property-actions {
  opacity: 1;
  transform: translateX(0);
}

.properties .property-item .property-details {
  padding: 10px;
}

.properties .property-item .property-details .property-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 12px;
}

.properties .property-item .property-details .property-header .property-price {
  font-size: 15px;
  font-weight: 800;
  color: var(--accent-color);
  line-height: 1;
}

.properties .property-item .property-details .property-header .property-price span {
  font-size: 11px;
  font-weight: 500;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.properties .property-item .property-details .property-header .property-price .old-price{
  font-size: 13px;
  text-decoration: line-through;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  margin-left: 8px;
}

.properties .property-item .property-details .property-header .property-type {
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  padding: 1px 3px;
  border-radius: 20px;
  font-size: 7px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.properties .property-item .property-details .property-title {
  font-size: 15px;
  font-weight: 600;
  color: var(--heading-color);
  margin-bottom: 8px;
  line-height: 1.3;
}

.properties .property-item .property-details .property-address {
  color: color-mix(in srgb, var(--default-color), transparent 35%);
  font-size: 11px;
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.properties .property-item .property-details .property-address i {
  color: var(--accent-color);
  flex-shrink: 0;
}

.properties .property-item .property-details .property-specs {
  display: flex;
  gap: 10px;
  margin-bottom: 5px;
  flex-wrap: wrap;
}

.properties .property-item .property-details .property-specs .spec-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  color: var(--default-color);
}

.properties .property-item .property-details .property-specs .spec-item i {
  color: var(--accent-color);
  font-size: 13px;
}

.properties .property-item .property-details .property-agent-info {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px;
  background-color: color-mix(in srgb, var(--surface-color), var(--default-color) 2%);
  border-radius: 12px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 94%);
}

.properties .property-item .property-details .property-agent-info .agent-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}

.properties .property-item .property-details .property-agent-info .agent-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.properties .property-item .property-details .property-agent-info .agent-details {
  flex: 1;
}

.properties .property-item .property-details .property-agent-info .agent-details strong {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--heading-color);
  margin-bottom: 2px;
}

.properties .property-item .property-details .property-agent-info .agent-details span {
  font-size: 12px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.properties .property-item .property-details .property-agent-info .agent-contact .contact-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: var(--accent-color);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.3s ease;
}

.properties .property-item .property-details .property-agent-info .agent-contact .contact-btn:hover {
  transform: scale(1.1);
  background-color: color-mix(in srgb, var(--accent-color), transparent 15%);
}



 
   
@media (max-width: 576px) {
  .item-card{
    width: 50% !important;
  }

  .properties{
    margin-top: 20px !important;
    padding-top: 45px !important;
  }

  .search-results-404{
    text-align: left;
    font-style: italic;
  }
}
 