/* ====================================
   GLOBAL STYLES - BASE FOUNDATION
   ==================================== */

/* --- RESET & TYPOGRAPHY --- */
.pigee-container {
  max-width: 90%;
  margin: 0 auto;
  padding: 0 20px;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  color: #333;
}

.pigee-section-title {
  font-size: 1.5rem;
  font-weight: bold;
  margin-top: 60px;
  margin-bottom: 10px;
}

.pigee-subtitle {
  color: #777;
  margin-bottom: 30px;
}

/* --- BUTTONS --- */
.pigee-btn {
  flex: 1;
  padding: 8px 0;
  text-align: center;
  border-radius: 4px;
  font-size: 0.9rem;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.2s;
  border: none;
}

.pigee-btn-outline {
  border: 1px solid #ddd;
  background: white;
  color: #333;
}

.pigee-btn-outline:hover {
  background: #f9f9f9;
}

.pigee-btn-primary {
  border: 1px solid #0073aa;
  background: white;
  color: #0073aa;
  font-weight: 500;
}

.pigee-btn-primary:hover {
  background: #0073aa;
  color: white;
}

.pigee-btn-outline-store,
.pigee-btn-primary-store {
  flex: 1;
  padding: 10px 16px;
  border-radius: 6px;
  font-size: 0.875rem;
  font-weight: 500;
  text-align: center;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
  display: inline-block;
}

.pigee-btn-outline-store {
  border: 1px solid #e5e7eb;
  background: white;
  color: #374151;
}

.pigee-btn-outline-store:hover {
  background: #f9f9f9;
  border-color: #d1d5db;
}

.pigee-btn-primary-store {
  border: 1px solid #0064A8;
  background: #0064A8;
  color: white;
}

.pigee-btn-primary-store:hover {
  background: #00539a;
  border-color: #00539a;
}

.pigee-btn-icon {
  width: 24px;
  height: 24px;
  border: none;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s;
  color: #6b7280;
  padding: 0;
}

.pigee-btn-icon img {
  width: 20px;
  height: 20px;
  opacity: 0.6;
}

.pigee-btn-icon:hover img {
  opacity: 1;
}

/* --- CARDS --- */
.pigee-card {
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  overflow: hidden;
  transition: box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.pigee-card:hover {
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
}

.pigee-card-img {
  height: 220px;
  background-size: cover;
  background-position: center;
  position: relative;
  background-color: #f5f5f5;
}

.pigee-card-body {
  padding: 15px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.pigee-card h3 {
  font-size: 1rem;
  font-weight: bold;
  margin: 0 0 5px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  color: #333;
}

/* --- ICON CIRCLES --- */
.pigee-icon-circle {
  width: 64px;
  height: 64px;
  background: #eff4f8;
  border-radius: 50%;
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pigee-icon-circle img {
  width: 24px;
  height: auto;
  opacity: 0.8;
}

/* --- MUTED TEXT --- */
.pigee-muted {
  font-size: 0.875rem;
  line-height: 1.5;
  color: #6b7280;
  max-width: 260px;
  margin: 0 auto;
}

/* --- RESPONSIVE BREAKPOINTS --- */
@media (max-width: 1024px) {
  .pigee-container {
    max-width: 95%;
  }
}

@media (max-width: 768px) {
  .pigee-container {
    padding: 0 15px;
  }

  .pigee-section-title {
    font-size: 1.3rem;
    margin-top: 40px;
  }
}

@media (max-width: 480px) {
  .pigee-container {
    max-width: 100%;
    padding: 0 10px;
  }

  .pigee-section-title {
    font-size: 1.2rem;
    margin-top: 30px;
  }

  .pigee-subtitle {
    font-size: 0.9rem;
  }
}