/* Premium Influencers Page Design */

/* Page Background */
.filter_area {
  background: linear-gradient(135deg, 
    rgba(255, 97, 0, 0.02) 0%, 
    rgba(255, 140, 0, 0.01) 50%, 
    rgba(255, 97, 0, 0.02) 100%);
  min-height: 100vh;
  padding: 40px 0;
}

/* Enhanced Breadcrumb */
.breadumtop {
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%) !important;
  padding: 15px 0;
  border-bottom: 1px solid rgba(255, 97, 0, 0.1);
}

.breadumtop .breadcrumb {
  background: transparent !important;
  margin: 0;
  padding: 0;
}

.breadumtop .breadcrumb-item a {
  color: #ff6100;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}

.breadumtop .breadcrumb-item a:hover {
  color: #ff8c00;
  text-decoration: underline;
}

.breadumtop .breadcrumb-item.active {
  color: #666;
  font-weight: 600;
}

/* Premium Filters Section */
.filter_categorarea {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(15px);
  border-radius: 20px;
  padding: 30px;
  box-shadow: 
    0 20px 40px rgba(0, 0, 0, 0.08),
    0 8px 25px rgba(255, 97, 0, 0.1);
  border: 1px solid rgba(255, 97, 0, 0.1);
  position: sticky;
  top: 20px;
}

.filter_category_box {
  margin-bottom: 30px;
  padding-bottom: 25px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.filter_category_box:last-child {
  border-bottom: none;
  margin-bottom: 0;
}

.filter_category_box h5 {
  color: #ff6100;
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 20px;
  position: relative;
  padding-left: 15px;
}

.filter_category_box h5::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 20px;
  background: linear-gradient(135deg, #ff6100, #ff8c00);
  border-radius: 2px;
}

/* Enhanced Checkbox and Radio Styles */
.categor_list ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.categor_list li {
  margin-bottom: 12px;
}

.categor_list .main {
  display: flex;
  align-items: center;
  cursor: pointer;
  padding: 8px 12px;
  border-radius: 10px;
  transition: all 0.3s ease;
  position: relative;
}

.categor_list .main:hover {
  background: rgba(255, 97, 0, 0.05);
  transform: translateX(5px);
}

.categor_list .main input[type="checkbox"],
.categor_list .main input[type="radio"] {
  display: none;
}

.categor_list .main .checkmark {
  position: relative;
  padding-left: 30px;
  color: #333;
  font-weight: 500;
  font-size: 14px;
  transition: all 0.3s ease;
}

.categor_list .main .checkmark::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  border: 2px solid #ddd;
  border-radius: 4px;
  background: #fff;
  transition: all 0.3s ease;
}

.categor_list .main .checkmark::after {
  content: '';
  position: absolute;
  left: 6px;
  top: 50%;
  transform: translateY(-50%) scale(0);
  width: 6px;
  height: 10px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform-origin: center;
  transition: all 0.3s ease;
}

/* Radio button styles */
.categor_list .main input[type="radio"] + .checkmark::before {
  border-radius: 50%;
}

.categor_list .main input[type="radio"] + .checkmark::after {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  background: #fff;
  left: 5px;
  top: 50%;
  transform: translateY(-50%) scale(0);
}

/* Checked states */
.categor_list .main input:checked + .checkmark::before {
  background: linear-gradient(135deg, #ff6100, #ff8c00);
  border-color: #ff6100;
}

.categor_list .main input:checked + .checkmark::after {
  transform: translateY(-50%) scale(1) rotate(45deg);
}

.categor_list .main input:checked + .checkmark {
  color: #ff6100;
  font-weight: 600;
}

/* Subcategory styling */
.subcategory-list {
  margin-left: 20px;
  margin-top: 10px;
  padding-left: 15px;
  border-left: 2px solid rgba(255, 97, 0, 0.2);
}

.subcategory-list li {
  margin-bottom: 8px;
}

.subcategory-list .checkmark {
  font-size: 13px;
  color: #666;
}

/* Premium Influencer Cards - 4 tiles layout */
.filter_section {
  margin-bottom: 30px;
}

.feature-card {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(15px);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 
    0 10px 30px rgba(0, 0, 0, 0.08),
    0 4px 15px rgba(255, 97, 0, 0.1);
  border: 1px solid rgba(255, 97, 0, 0.1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.feature-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 
    0 20px 40px rgba(0, 0, 0, 0.15),
    0 8px 25px rgba(255, 97, 0, 0.2);
}

.feature-card .fimg {
  position: relative;
  overflow: hidden;
  height: 280px;
  width: 100%;
}

.feature-card .fimg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: all 0.4s ease;
}

.feature-card:hover .fimg img {
  transform: scale(1.1);
}

/* Remove orange price bar overlay */
.feature-card .price {
  display: none;
}

.feature-card .heart {
  position: absolute;
  top: 15px;
  right: 15px;
  background: linear-gradient(135deg, #ff4757, #ff6b7a);
  color: #fff;
  padding: 6px 10px;
  border-radius: 15px;
  font-weight: 600;
  font-size: 12px;
  box-shadow: 0 4px 15px rgba(255, 71, 87, 0.3);
  z-index: 2;
}

.feature_cardfooter {
  padding: 15px;
  background: linear-gradient(135deg, 
    rgba(255, 97, 0, 0.05) 0%, 
    rgba(255, 140, 0, 0.03) 100%);
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

/* Price display below image */
.feature_cardfooter .price-display {
  background: linear-gradient(135deg, #ff6100, #ff8c00);
  color: #fff;
  padding: 6px 12px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 12px;
  text-align: center;
  margin-bottom: 10px;
  box-shadow: 0 4px 15px rgba(255, 97, 0, 0.3);
  display: inline-block;
  align-self: flex-start;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

/* Special styling for "Price on request" text */
.feature_cardfooter .price-display .price-on-request {
  color: #fff !important;
  font-weight: 600;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.4);
  font-size: 13px;
}

.feature_cardfooter h4 {
  color: #333;
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 6px;
  line-height: 1.3;
}

.feature_cardfooter p {
  color: #666;
  font-size: 12px;
  margin-bottom: 4px;
  font-weight: 500;
}

.feature_cardfooter .btn-detals {
  background: linear-gradient(135deg, #ff6100, #ff8c00);
  color: #fff;
  border: none;
  padding: 8px 16px;
  border-radius: 16px;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  margin-top: auto;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 97, 0, 0.3);
  font-size: 12px;
  text-align: center;
  width: 100%;
}

.feature_cardfooter .btn-detals:hover {
  background: linear-gradient(135deg, #ff8c00, #ff6100);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 97, 0, 0.4);
  color: #fff;
  text-decoration: none;
}

/* Page Header Styling */
.col-lg-9 > p {
  font-size: 2rem !important;
  font-weight: 700;
  margin-bottom: 10px;
}

.col-lg-9 > h1 {
  font-size: 1.8rem !important;
  font-weight: 600;
  color: #333;
  margin-bottom: 15px;
}

.col-lg-9 > h2 {
  font-size: 1.1rem !important;
  color: #666;
  line-height: 1.6;
  margin-bottom: 30px;
}

/* Mobile Filter Button */
.phonebuttonfilter {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1000;
}

.phonebuttonfilter a {
  background: linear-gradient(135deg, #ff6100, #ff8c00);
  color: #fff;
  padding: 15px 20px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  box-shadow: 0 8px 25px rgba(255, 97, 0, 0.3);
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
}

.phonebuttonfilter a:hover {
  background: linear-gradient(135deg, #ff8c00, #ff6100);
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(255, 97, 0, 0.4);
  color: #fff;
  text-decoration: none;
}

/* Mobile Modal Styling */
.Phonefilter .modal-content {
  border-radius: 20px 0 0 20px;
  border: none;
  box-shadow: -10px 0 30px rgba(0, 0, 0, 0.2);
}

.Phonefilter .modal-header {
  background: linear-gradient(135deg, #ff6100, #ff8c00);
  color: #fff;
  border-radius: 20px 0 0 0;
  border: none;
}

.Phonefilter .modal-title {
  font-weight: 700;
  font-size: 1.3rem;
}

.Phonefilter .close {
  color: #fff;
  opacity: 1;
  font-size: 1.5rem;
}

.Phonefilter .modal-body {
  padding: 30px;
  background: #f8fafc;
}

/* Enhanced Pagination Styling */
.paginationfftr {
  margin-top: 50px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  padding: 20px;
  border-radius: 15px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.paginationfftr .pagination {
  justify-content: center;
  margin: 0;
}

.paginationfftr .page-link {
  color: #333;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(255, 97, 0, 0.3);
  margin: 0 3px;
  border-radius: 8px;
  transition: all 0.3s ease;
  font-weight: 600;
  padding: 8px 12px;
  min-width: 40px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.paginationfftr .page-link:hover {
  background: linear-gradient(135deg, #ff6100, #ff8c00);
  color: #fff;
  border-color: #ff6100;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(255, 97, 0, 0.3);
}

.paginationfftr .page-item.active .page-link {
  background: linear-gradient(135deg, #ff6100, #ff8c00);
  color: #fff;
  border-color: #ff6100;
  box-shadow: 0 4px 15px rgba(255, 97, 0, 0.4);
  font-weight: 700;
}

.paginationfftr .page-item.disabled .page-link {
  color: #999;
  background: rgba(255, 255, 255, 0.5);
  border-color: rgba(255, 97, 0, 0.2);
  cursor: not-allowed;
}

.paginationfftr .page-item.disabled .page-link:hover {
  background: rgba(255, 255, 255, 0.5);
  color: #999;
  transform: none;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* Responsive Design */
@media (max-width: 1200px) {
  .feature-card .fimg {
    height: 250px;
  }
  
  .feature_cardfooter {
    padding: 12px;
  }
  
  .feature_cardfooter h4 {
    font-size: 0.85rem;
  }
  
  .feature_cardfooter p {
    font-size: 11px;
  }
}

@media (max-width: 991px) {
  .filter_categorarea {
    padding: 20px;
    border-radius: 15px;
  }
  
  .feature-card .fimg {
    height: 230px;
  }
  
  .feature_cardfooter {
    padding: 10px;
  }
  
  .feature_cardfooter h4 {
    font-size: 0.8rem;
  }
  
  .feature_cardfooter .price-display {
    font-size: 11px;
    padding: 5px 10px;
  }
  
  .feature_cardfooter .btn-detals {
    padding: 6px 12px;
    font-size: 11px;
  }
}

@media (max-width: 768px) {
  .filter_area {
    padding: 20px 0;
  }
  
  .col-lg-9 > p {
    font-size: 1.5rem !important;
  }
  
  .col-lg-9 > h1 {
    font-size: 1.3rem !important;
  }
  
  .col-lg-9 > h2 {
    font-size: 1rem !important;
  }
  
  .feature-card .fimg {
    height: 240px;
  }
  
  .feature_cardfooter {
    padding: 12px;
  }
  
  .feature_cardfooter h4 {
    font-size: 0.85rem;
  }
  
  .feature_cardfooter p {
    font-size: 11px;
  }
  
  .feature_cardfooter .price-display {
    font-size: 12px;
    padding: 5px 10px;
    margin-bottom: 10px;
  }
  
  .feature_cardfooter .btn-detals {
    padding: 8px 12px;
    font-size: 12px;
  }
}

@media (max-width: 576px) {
  .feature-card .fimg {
    height: 220px;
  }
  
  .feature_cardfooter {
    padding: 10px;
  }
  
  .feature_cardfooter h4 {
    font-size: 0.8rem;
  }
  
  .feature_cardfooter p {
    font-size: 10px;
  }
  
  .feature_cardfooter .price-display {
    font-size: 11px;
    padding: 4px 8px;
    margin-bottom: 8px;
  }
  
  .feature_cardfooter .btn-detals {
    padding: 6px 10px;
    font-size: 11px;
  }
}

/* Loading Animation */
.filter_section {
  animation: fadeInUp 0.6s ease-out;
}

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

/* No Results Styling */
.text-danger {
  text-align: center;
  padding: 60px 20px;
  font-size: 1.2rem;
  color: #ff6100 !important;
  background: rgba(255, 97, 0, 0.05);
  border-radius: 15px;
  border: 2px dashed rgba(255, 97, 0, 0.2);
}
