@charset "UTF-8";
h1 {
  color: #1e293b;
  font-size: 2.5rem;
  margin-bottom: 10px;
  font-weight: 700;
  background: linear-gradient(135deg, #7c3aed, #3b82f6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.subtitle {
  color: #555;
  font-size: 1.1rem;
  max-width: 700px;
  margin: 0 auto;
}

/* Loyalty & Membership Widget Styles */
.block.loyalty_membership_widget {
  width: 100%;
  position: relative;
}

.loyalty_membership_widget::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: var(--gradient1);
}
.loyalty_membership_widget h2 {
  font-size: 2.2rem;
  color: #1e293b;
  margin-bottom: 15px;
  font-weight: 800;
  background: var(--gradient1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.loyalty_membership_widget > p {
  color: #555;
  font-size: 1.1rem;
  margin-bottom: 40px;
  max-width: 800px;
  line-height: 1.8;
}

.loyalty_membership_widget-items {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 30px;
  margin-top: 20px;
}

.loyalty_membership_widget-item {
  background: var(--plainclr);
  border-radius: 16px;
  padding: 30px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
  border: 2px solid #f1f5f9;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
  position: relative;
  overflow: hidden;
}
.loyalty_membership_widget-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: var(--gradient1);
  transition: height 0.3s ease;
}
.loyalty_membership_widget-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(124, 58, 237, 0.15);
  border-color: var(--border1);
}
.loyalty_membership_widget-item:hover::before {
  height: 8px;
}
.loyalty_membership_widget-item img {
  width: 80px;
  height: 80px;
  -o-object-fit: contain;
     object-fit: contain;
  margin-bottom: 25px;
  border-radius: 12px;
  padding: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  color: var(--plainclr);
}
.loyalty_membership_widget-item h3 {
  font-size: 1.5rem;
  color: #1e293b;
  margin-bottom: 15px;
  font-weight: 700;
}
.loyalty_membership_widget-item p {
  color: #555;
  margin-bottom: 25px;
  flex-grow: 1;
  line-height: 1.7;
}

.item-link:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(124, 58, 237, 0.3);
}
.item-link i {
  margin-right: 10px;
}

.icon-container {
  width: 80px;
  height: 80px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
  font-size: 2.2rem;
  color: var(--plainclr);
}

.points-badge {
  position: absolute;
  top: 25px;
  right: 25px;
  background: linear-gradient(135deg, #f59e0b, #d97706);
  color: var(--plainclr);
  padding: 8px 16px;
  border-radius: 20px;
  font-weight: 700;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 5px;
  box-shadow: 0 4px 10px rgba(245, 158, 11, 0.2);
}

.tier-badge {
  position: absolute;
  top: 25px;
  right: 25px;
  background: linear-gradient(135deg, #10b981, #059669);
  color: var(--plainclr);
  padding: 8px 16px;
  border-radius: 20px;
  font-weight: 700;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 5px;
  box-shadow: 0 4px 10px rgba(16, 185, 129, 0.2);
}

.benefits-list {
  margin: 20px 0;
  padding-left: 20px;
}
.benefits-list li {
  margin-bottom: 10px;
  color: #475569;
  position: relative;
}
.benefits-list li::before {
  content: "✓";
  color: #10b981;
  font-weight: bold;
  position: absolute;
  left: -20px;
}

/* Progress bar for loyalty points */
.points-progress {
  margin: 20px 0;
}

.progress-label {
  display: flex;
  justify-content: space-between;
  margin-bottom: 8px;
  font-size: 0.9rem;
  color: #555;
}

.progress-bar {
  height: 10px;
  background-color: #e2e8f0;
  border-radius: 5px;
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, #f59e0b, #fbbf24);
  border-radius: 5px;
  width: 65% !important;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .loyalty_membership_widget-items {
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  }
}
@media (max-width: 768px) {
  .loyalty_membership_widget-items {
    grid-template-columns: 1fr;
  }
  .loyalty_membership_widget h2 {
    font-size: 1.8rem;
  }
}
/* Stats section */
.stats-container {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 20px;
  margin: 40px 0;
  padding: 30px;
  background: linear-gradient(180deg, #ffffff, #e6eaff);
  border-radius: 16px;
}
.stats-container .stat-item {
  text-align: center;
  flex: 1;
  min-width: 150px;
}
@media (max-width: 992px) {
  .stats-container .stat-item {
    min-width: 127px;
  }
}
.stats-container .stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--themeprimaryclr);
  margin-bottom: 10px;
}
@media (max-width: 992px) {
  .stats-container .stat-number {
    font-size: 2rem;
  }
}
.stats-container .stat-label {
  color: var(--linkclr);
  font-weight: 600;
  font-size: 1rem;
}
@media (max-width: 992px) {
  .stats-container .stat-label {
    font-size: 0.875rem;
  }
}

body.rtl .points-badge {
  left: 25px;
  right: unset;
}
body.rtl .tier-badge {
  left: 25px;
  right: unset;
}
body.rtl .item-link i {
  margin-right: 0;
  margin-left: 10px;
}/*# sourceMappingURL=loyalty-membership-widget.css.map */