/******************************************************************
Theme Name: Pines - JointsWP - Sass
Theme URI: http://www.jointswp.com
Description: Theme for Pines based on Joints WP Starter Theme.
Author: Meta 13
Author URI: https://www.meta13.com
License: GNU General Public License & MIT
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Tags: Sass
******************************************************************/

/* ==========================================================================
   Floorplans Slider Styles
   ========================================================================== */

.floorplans-slider-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 0rem;
  font-family: 'Helvetica Neue', sans-serif;
  position: relative;
  overflow: visible;
}

.floorplans-header {
  text-align: center;
  margin-bottom: 2rem;
}

.floorplans-header h2 {
  font-size: 2rem;
  margin-bottom: 0.25rem;
}

.floorplans-header p {
  font-size: 1rem;
  color: #666;
}

.swiper {
  width: 100%;
  padding-bottom: 3rem;
  overflow: visible;
  position: relative;
}

.swiper-wrapper {
  display: flex;
  align-items: stretch;
}

.swiper-slide {
  background: #fff;
  border: 1px solid #ccc;
  padding: 1rem;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
  max-width: 300px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  text-align: center;
  height: auto;
}

.floorplan-card h3 {
  font-size: 1.1rem;
  font-weight: bold;
  margin: 0 0 0.75rem;
}

.floorplan-card img {
  max-width: 100%;
  height: auto;
  margin-bottom: 1rem;
  border-radius: 4px;
}

.floorplan-meta {
  font-size: 0.95rem;
  color: #555;
  margin: 0.25rem 0;
  line-height: 1.4;
}

.floorplan-card p {
  margin: 0.25rem 0;
  line-height: 1.3;
}

.download-link {
  display: inline-block;
  font-size: 0.9rem;
  color: #0073e6;
  text-decoration: underline;
  background: none;
  padding: 0;
  border: none;
  margin-top: 0.5rem;
}

.download-link:hover {
  color: #005bb5;
}

/* Swiper Navigation Arrows Fix */
.swiper-button-next,
.swiper-button-prev {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 30px;
  height: 30px;
  background: none;
  border: none;
  box-shadow: none;
  color: #0073e6;
  fill: #0073e6;
}

.swiper-button-next::after,
.swiper-button-prev::after {
  font-size: 20px;
  font-weight: bold;
  color: #0073e6;
}

.swiper-button-prev {
  left: -40px;
}

.swiper-button-next {
  right: -40px;
}

/* Swiper Pagination */
.floorplans-slider-wrapper .swiper-pagination {
  position: relative;
  margin-top: 2rem;
  bottom: auto;
  text-align: center;
}

.floorplans-slider-wrapper .swiper-pagination-bullet {
  background: #0053a0 !important;
  opacity: 1;
}

.floorplans-slider-wrapper .swiper-pagination-bullet-active {
  background: #003d80 !important;
}

/* ==========================================================================
   Floorplans Filters: 3-across + Responsive Reset
   ========================================================================== */

.floorplans-filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  max-width: 1000px;
  margin: 1rem auto;
  margin-bottom: 2rem;
  box-sizing: border-box;
}

.floorplans-filters select {
  font-size: 1rem;
  padding: 0.65em 1em;
  border: 1px solid #ccc;
  border-radius: 6px;
  min-width: 220px;
  height: 48px;
  box-sizing: border-box;
  flex: 0 1 auto;
  margin-bottom: 0;
}

.floorplans-filters button {
  font-size: 1rem;
  padding: 0 1em;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  white-space: nowrap;
  transition: background-color 0.2s ease;
  min-width: 160px;
  height: 48px;
  flex: 0 0 auto;
  box-sizing: border-box;
}

.floorplans-filters button:hover {
  color: #0053a0;
}

/* Desktop layout only */
@media (min-width: 768px) {
  .floorplans-filters {
    flex-wrap: nowrap;
    justify-content: space-between;
  }
}


