/* ====================================
   SHOP ARCHIVE PAGE STYLES
   ==================================== */

/* --- HERO SECTION --- */
.pigee-hero-wrapper {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  margin-top: 20px;
  min-height: 420px;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center right;
  background-repeat: no-repeat;
}

.pigee-hero-gradient {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    #011c38 40%,
    rgba(1, 28, 56, 0.85) 55%,
    rgba(1, 28, 56, 0) 100%
  );
  z-index: 1;
}

.pigee-hero-content {
  position: relative;
  z-index: 2;
  width: 50%;
  padding-left: 60px;
  padding-right: 20px;
  color: white;
}

.pigee-hero-content h1 {
  font-size: 2.5rem;
  line-height: 1.2;
  margin-bottom: 15px;
  color: white;
  font-weight: 600;
}

.pigee-hero-content p {
  font-size: 1rem;
  opacity: 0.9;
  margin-bottom: 30px;
  font-weight: 300;
  line-height: 1.5;
}

/* Search Bar */
.pigee-search-box {
  position: relative;
  max-width: 420px;
  width: 100%;
  display: flex;
  align-items: center;
}

.pigee-search-box input {
  width: 100%;
  height: 50px;
  padding: 10px 120px 10px 50px;
  border-radius: 50px;
  border: none;
  font-size: 1rem;
  color: #333;
  outline: none;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  box-sizing: border-box;
  transition: box-shadow 0.3s ease;
}

.pigee-search-box input:focus {
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.pigee-search-box input::placeholder {
  color: #6c757d;
}

.pigee-search-submit {
  position: absolute;
  right: 5px;
  top: 50%;
  transform: translateY(-50%);
  height: 40px;
  padding: 0 25px;
  background: #0073aa;
  color: white;
  border: none;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.3s ease;
  white-space: nowrap;
}


.pigee-search-submit:hover {
  background: #005a87;
}

.pigee-search-icon-img {
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: auto;
  opacity: 0.8;
  pointer-events: none;
}

/* --- SEARCH RESULTS SECTION --- */
.pigee-search-results {
  margin-top: 40px;
  min-height: 400px;
}

.pigee-search-results .pigee-section-title:first-child {
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 2px solid #e0e0e0;
}

.pigee-search-results .pigee-section-title {
  margin-top: 60px;
  margin-bottom: 30px;
}

/* No Results Message */
.pigee-no-results {
  text-align: center;
  padding: 80px 20px;
  background: #f8f9fa;
  border-radius: 12px;
  margin: 40px 0;
}

.pigee-no-results h3 {
  font-size: 1.5rem;
  color: #333;
  margin-bottom: 15px;
  font-weight: 600;
}

.pigee-no-results p {
  font-size: 1rem;
  color: #666;
  margin-bottom: 25px;
}

.pigee-no-results a {
  display: inline-block;
  padding: 12px 30px;
  background: #0073aa;
  color: white;
  text-decoration: none;
  border-radius: 6px;
  font-weight: 500;
  transition: background 0.3s ease;
}

.pigee-no-results a:hover {
  background: #005a87;
}

/* Search Results Count */
.pigee-results-count {
  font-size: 0.9rem;
  color: #666;
  margin-bottom: 20px;
  font-style: italic;
}

/* --- FEATURES & TRUST GRIDS --- */
.pigee-features-grid,
.pigee-trust-grid {
  display: grid;
  gap: 30px;
  text-align: center;
  margin: 60px 0;
}

.pigee-features-grid {
  grid-template-columns: repeat(3, 1fr);
}

.pigee-trust-grid {
  grid-template-columns: repeat(4, 1fr);
}

.pigee-feature,
.pigee-trust h3 {
  font-size: 1rem;
  font-weight: 700;
  color: #111;
  margin: 0 0 8px 0;
}

/* --- SHOP GRIDS --- */
.pigee-grid-4 {
  display: grid;
  gap: 20px;
  grid-template-columns: 1fr;
}

/* Store Card Specific */
.pigee-store-meta {
  font-size: 0.85rem;
  color: #888;
  margin-bottom: 5px;
}

.pigee-store-stats {
  font-size: 0.8rem;
  color: #555;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.pigee-star {
  color: #f5c518;
  margin-right: 3px;
  font-size: 0.9rem;
}

.pigee-btn-visit {
  margin-top: auto;
  display: block;
  width: 100%;
  padding: 10px 0;
  text-align: center;
  border: 1px solid #e0e0e0;
  background: #fff;
  color: #0073aa;
  font-weight: 500;
  border-radius: 4px;
  text-decoration: none;
  transition: all 0.2s;
}

.pigee-btn-visit:hover {
  border-color: #0073aa;
  background: #f0f7fc;
}

/* Product Card Specific */
.pigee-price {
  font-size: 1.1rem;
  font-weight: bold;
  margin-bottom: 15px;
  color: #333;
}

.pigee-card-desc {
  font-size: 0.85rem;
  color: #777;
  margin-bottom: 10px;
  line-height: 1.4;
}

.pigee-btn-row {
  display: flex;
  gap: 10px;
  margin-top: auto;
}

.pigee-heart,
.pigee-add-to-wishlist {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(4px);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
  color: #6b7280;
}

.pigee-heart:hover {
  transform: scale(1.2);
}

/* --- BACK TO SHOP LINK (when searching) --- */
.pigee-back-to-shop {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #0073aa;
  text-decoration: none;
  font-size: 0.95rem;
  margin-bottom: 20px;
  font-weight: 500;
  transition: gap 0.2s ease;
}

.pigee-back-to-shop:hover {
  gap: 12px;
  text-decoration: underline;
}

.pigee-back-to-shop::before {
  content: "←";
  font-size: 1.2rem;
}

/* --- RESPONSIVE GRIDS --- */
@media (min-width: 500px) {
  .pigee-grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 768px) {
  .pigee-grid-4 {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1024px) {
  .pigee-grid-4 {
    grid-template-columns: repeat(4, 1fr);
  }

  .pigee-trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1500px) {
  .pigee-grid-4 {
    grid-template-columns: repeat(6, 1fr);
  }
}

/* --- MOBILE RESPONSIVE --- */
@media (max-width: 768px) {
  .pigee-hero-wrapper {
    min-height: 500px;
    flex-direction: column;
    background-position: center;
    justify-content: center;
  }

  .pigee-hero-gradient {
    background: rgba(1, 28, 56, 0.85);
  }

  .pigee-hero-content {
    width: 100%;
    padding: 40px 20px;
    text-align: center;
    box-sizing: border-box;
  }

  .pigee-hero-content h1 {
    font-size: 1.8rem;
  }

  .pigee-hero-content h1 br {
    display: none;
  }

  .pigee-search-box {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 10px;
    box-sizing: border-box;
  }

  .pigee-features-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    margin: 40px 0;
  }

  .pigee-trust-grid {
    grid-template-columns: 1fr;
    gap: 30px;
    margin: 40px 0;
  }

  .pigee-grid-4 {
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
  }

  .pigee-card-img {
    height: 200px;
  }

  .pigee-search-results .pigee-section-title:first-child {
    font-size: 1.3rem;
  }

  .pigee-no-results {
    padding: 60px 20px;
  }

  .pigee-no-results h3 {
    font-size: 1.3rem;
  }
}

@media (max-width: 480px) {
  .pigee-hero-wrapper {
    min-height: 450px;
    border-radius: 8px;
    margin-top: 10px;
  }

  .pigee-search-submit {
    right: 15px;
  }

  .pigee-hero-content {
    padding: 30px 15px;
  }

  .pigee-hero-content h1 {
    font-size: 1.5rem;
    margin-bottom: 12px;
  }

  .pigee-hero-content p {
    font-size: 0.9rem;
    margin-bottom: 20px;
  }

  .pigee-search-box input {
    height: 45px;
    font-size: 0.9rem;
    padding-left: 45px;
    padding-right: 100px;
  }

  .pigee-search-submit {
    height: 35px;
    padding: 0 20px;
    font-size: 0.85rem;
  }

  .pigee-search-icon-img {
    left: 15px;
    width: 16px;
  }

  .pigee-icon-circle {
    width: 50px;
    height: 50px;
  }

  .pigee-features-grid,
  .pigee-trust-grid {
    gap: 30px;
    margin: 30px 0;
  }

  .pigee-grid-4 {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .pigee-card-img {
    height: 180px;
  }

  .pigee-card-body {
    padding: 12px;
  }

  .pigee-card h3 {
    font-size: 0.95rem;
  }

  .pigee-btn-row {
    flex-direction: column;
    gap: 8px;
  }

  .pigee-btn {
    width: 100%;
    padding: 10px 0;
  }

  .pigee-price {
    font-size: 1rem;
  }

  .pigee-store-stats {
    font-size: 0.75rem;
  }

  .pigee-search-results .pigee-section-title:first-child {
    font-size: 1.1rem;
  }

  .pigee-no-results {
    padding: 40px 15px;
  }

  .pigee-no-results h3 {
    font-size: 1.2rem;
  }

  .pigee-no-results p {
    font-size: 0.9rem;
  }
}

/* --- LOADING STATES --- */
.pigee-loading {
  text-align: center;
  padding: 60px 20px;
}

.pigee-loading::after {
  content: "";
  display: inline-block;
  width: 40px;
  height: 40px;
  border: 4px solid #f3f3f3;
  border-top: 4px solid #0073aa;
  border-radius: 50%;
  animation: pigee-spin 1s linear infinite;
}

@keyframes pigee-spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* --- SEARCH HIGHLIGHT --- */
.pigee-search-highlight {
  background-color: #fff3cd;
  padding: 2px 4px;
  border-radius: 2px;
}
