.elementor-kit-5030{--e-global-color-primary:#155E45;--e-global-color-secondary:#F7FCFC;--e-global-color-text:#7A7A7A;--e-global-color-accent:#CE8F3A;--e-global-typography-primary-font-family:"Poppins";--e-global-typography-primary-font-weight:600;--e-global-typography-secondary-font-family:"Raleway";--e-global-typography-secondary-font-weight:400;--e-global-typography-text-font-family:"Poppins";--e-global-typography-text-font-weight:400;--e-global-typography-accent-font-family:"Caveat";--e-global-typography-accent-font-weight:500;}.elementor-kit-5030 button,.elementor-kit-5030 input[type="button"],.elementor-kit-5030 input[type="submit"],.elementor-kit-5030 .elementor-button{background-color:#155E45;font-family:"Poppins", Sans-serif;font-size:12px;font-weight:400;text-transform:capitalize;color:#FFFFFF;border-radius:5px 5px 5px 5px;}.elementor-kit-5030 e-page-transition{background-color:#CE8F39;}.site-footer{background-color:#02010100;}.elementor-section.elementor-section-boxed > .elementor-container{max-width:1500px;}.e-con{--container-max-width:1500px;}.elementor-widget:not(:last-child){margin-block-end:20px;}.elementor-element{--widgets-spacing:20px 20px;--widgets-spacing-row:20px;--widgets-spacing-column:20px;}{}h1.entry-title{display:var(--page-title-display);}.site-header{padding-inline-end:0px;padding-inline-start:0px;}.site-footer .site-branding{flex-direction:column;align-items:stretch;}.site-footer .copyright p{color:#FFFFFF;font-family:"Poppins", Sans-serif;font-size:16px;}@media(max-width:1024px){.elementor-section.elementor-section-boxed > .elementor-container{max-width:1024px;}.e-con{--container-max-width:1024px;}}@media(max-width:767px){.elementor-section.elementor-section-boxed > .elementor-container{max-width:767px;}.e-con{--container-max-width:767px;}}/* Start custom CSS *//* Base Image Styles */
.blur-border-carousel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 6px 6px 0px 0px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
  -webkit-transition: transform 0.3s ease, box-shadow 0.3s ease;
  -moz-transition: transform 0.3s ease, box-shadow 0.3s ease;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Text Styles */
.centered-text {
  text-align: center;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  letter-spacing: 1px;
  color: #222;
  margin-top: 10px;
}

.left-heading {
  text-align: left;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 28px;
  color: #2c3e50;
  margin: 0 0 16px 0;
  line-height: 1.2;
}

/* Property Card Container */
.property-card {
  font-family: 'Poppins', sans-serif;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  transition: all 0.3s ease;
  max-width: 400px;
  margin: 0 auto;
  position: relative;
  animation: fadeInUp 0.6s ease-out;
}

.property-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

/* Image Container */
.blur-border-carousel {
  position: relative;
  width: 100%;
  height: 280px;
  overflow: hidden;
  border-radius: 16px 16px 0 0;
}

/* Viewing Counter */
.blur-border-carousel::after {
  content: "30 People are Viewing This Property Now";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(15, 92, 67, 1);
  color: white;
  padding: 8px 16px 8px 32px;
  font-size: 14px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* Property Content */
.property-content {
  padding: 24px;
  background: white;
}

/* Property Details */
.property-details {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}

.detail-item {
  display: flex;
  align-items: center;
  font-size: 16px;
  color: #555;
  font-weight: 500;
  transition: color 0.2s ease;
}

.detail-item::before {
  content: "";
  width: 24px;
  height: 24px;
  margin-right: 8px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

/* Icons */
.detail-item.bedroom::before {
  background-image: url("https://hemlockhillscabinrentals.com/wp-content/uploads/2025/08/bed.png");
}

.detail-item.bathroom::before {
  background-image: url("https://hemlockhillscabinrentals.com/wp-content/uploads/2025/08/bath-tub.png");
}

.detail-item.sleeps::before {
  background-image: url("https://hemlockhillscabinrentals.com/wp-content/uploads/2025/08/sleeping.png");
}

/* Price Section */
.property-price {
  font-size: 24px;
  font-weight: 600;
  color: #2c3e50;
  margin-top: 16px;
}

.property-price .currency {
  font-size: 20px;
}

.property-price .period {
  font-size: 16px;
  font-weight: 400;
  color: #666;
}

/* Grid Layout */
.property-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 32px;
  padding: 32px;
  max-width: 1200px;
  margin: 0 auto;
}

/* Animation */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .property-card {
    max-width: 100%;
    margin: 0 16px;
  }
  
  .left-heading {
    font-size: 24px;
  }
  
  .property-details {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
  
  .separator {
    display: none;
  }
}

/* OwnerRez Widget Styles */
.ownerrez-widget {
  border: none !important;
  box-shadow: none !important;
}/* End custom CSS */