/* ====================================
   SINGLE STORE PAGE STYLES
   ==================================== */

.pigee-single-store {
  background: #fff;
}

/* Store Header */
.pigee-store-header {
  background: #fafafa;
  border-bottom: 1px solid #e5e7eb;
  padding: 40px 0 30px;
}

.pigee-store-header-content {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

/* Store Logo/Icon */
.pigee-store-logo {
  flex-shrink: 0;
  width: 64px;
  height: 64px;
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
  border: 1px solid #e5e7eb;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pigee-store-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pigee-store-logo-fallback {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  font-size: 24px;
  font-weight: 700;
}

/* Store Info */
.pigee-store-info {
  flex: 1;
}

.pigee-store-name {
  font-size: 1.75rem;
  font-weight: 600;
  color: #111827;
  margin: 0 0 8px 0;
}

.pigee-store-meta-row {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  color: #6b7280;
  margin-bottom: 12px;
}

.pigee-store-category,
.pigee-store-location {
  color: #6b7280;
}

.pigee-store-separator {
  color: #d1d5db;
}

.pigee-store-description {
  font-size: 0.875rem;
  color: #6b7280;
  line-height: 1.6;
  max-width: 600px;
}

/* Action Buttons */
.pigee-store-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.pigee-btn-back,
.pigee-btn-wishlist,
.pigee-btn-share {
  padding: 10px 16px;
  border-radius: 6px;
  font-size: 0.875rem;
  font-weight: 500;
  border: 1px solid #e5e7eb;
  background: white;
  color: #374151;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}

.pigee-btn-back:hover,
.pigee-btn-share:hover {
  background: #f9fafb;
  border-color: #d1d5db;
}

.pigee-btn-share svg {
  width: 16px;
  height: 16px;
}

/* Search Bar (within store) */
.pigee-store-search-wrapper {
  margin: 30px 0;
}

.pigee-store-search-box {
  position: relative;
  max-width: 400px;
  width: 100%;
}

.pigee-store-search-box input {
  width: 100%;
  height: 44px;
  padding: 10px 10px 10px 40px;
  border-radius: 8px;
  border: 1px solid #e5e7eb;
  font-size: 0.875rem;
  color: #111827;
  outline: none;
  transition: all 0.2s;
  box-sizing: border-box;
}

.pigee-store-search-box input:focus {
  border-color: #3b82f6;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.pigee-store-search-box input::placeholder {
  color: #9ca3af;
}

.pigee-search-icon-svg {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  pointer-events: none;
}

/* Products Grid */
.pigee-store-products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 60px;
}

/* Product Card */
.pigee-product-card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.2s;
}

.pigee-product-card:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  border-color: #d1d5db;
}

.pigee-product-image {
  position: relative;
  width: 100%;
  height: 220px;
  background-size: cover;
  background-position: center;
  background-color: #f9fafb;
}

.pigee-heart-btn {
  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-btn:hover {
  background: white;
  color: #ef4444;
  transform: scale(1.1);
}

.pigee-product-details {
  padding: 16px;
}

.pigee-product-title {
  font-size: 1rem;
  font-weight: 600;
  color: #111827;
  margin: 0 0 6px 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.pigee-product-title a {
  color: #111827;
  text-decoration: none;
}

.pigee-product-title a:hover {
  color: #0064A8;
}

.pigee-product-desc {
  font-size: 0.875rem;
  color: #6b7280;
  line-height: 1.5;
  margin: 0 0 12px 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.pigee-product-price {
  font-size: 1.125rem;
  font-weight: 700;
  color: #111827;
  margin: 0 0 16px 0;
}

.pigee-product-actions {
  display: flex;
  gap: 8px;
}

/* No Products State */
.pigee-no-products {
  grid-column: 1 / -1;
  text-align: center;
  padding: 60px 20px;
}

.pigee-no-products svg {
  margin: 0 auto 16px;
  opacity: 0.5;
}

.pigee-no-products p {
  color: #6b7280;
  font-size: 0.875rem;
  margin: 0;
}

/* Pagination */
.pigee-pagination {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin: 40px 0 60px;
  flex-wrap: wrap;
}

.pigee-pagination a,
.pigee-pagination span {
  padding: 8px 12px;
  border: 1px solid #e5e7eb;
  border-radius: 6px;
  text-decoration: none;
  font-size: 14px;
  color: #374151;
  background: #fff;
}

.pigee-pagination a:hover {
  background: #f3f4f6;
}

.pigee-pagination .current {
  background: #111827;
  color: #fff;
  border-color: #111827;
}

/* --- RESPONSIVE BREAKPOINTS --- */
@media (max-width: 1024px) {
  .pigee-store-products-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .pigee-store-header {
    padding: 30px 0 20px;
  }

  .pigee-store-header-content {
    flex-direction: column;
    gap: 16px;
  }

  .pigee-store-logo {
    width: 56px;
    height: 56px;
  }

  .pigee-store-name {
    font-size: 1.5rem;
  }

  .pigee-store-actions {
    width: 100%;
    flex-direction: column;
  }

  .pigee-btn-back,
  .pigee-btn-share {
    width: 100%;
    justify-content: center;
  }

  .pigee-store-search-wrapper {
    margin: 20px 0;
  }

  .pigee-store-search-box {
    max-width: 100%;
  }

  .pigee-store-products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .pigee-product-image {
    height: 180px;
  }
}

@media (max-width: 480px) {
  .pigee-store-header {
    padding: 20px 0 16px;
  }

  .pigee-store-logo {
    width: 48px;
    height: 48px;
  }

  .pigee-store-logo-fallback {
    font-size: 20px;
  }

  .pigee-store-name {
    font-size: 1.25rem;
  }

  .pigee-store-meta-row {
    font-size: 0.8125rem;
    flex-wrap: wrap;
  }

  .pigee-store-description {
    font-size: 0.8125rem;
  }

  .pigee-store-products-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .pigee-product-card {
    border-radius: 6px;
  }

  .pigee-product-image {
    height: 200px;
  }

  .pigee-product-details {
    padding: 12px;
  }

  .pigee-product-title {
    font-size: 0.9375rem;
  }

  .pigee-product-desc {
    font-size: 0.8125rem;
    margin-bottom: 10px;
  }

  .pigee-product-price {
    font-size: 1rem;
    margin-bottom: 12px;
  }

  .pigee-product-actions {
    flex-direction: column;
    gap: 6px;
  }

  .pigee-btn-outline-store,
  .pigee-btn-primary-store {
    width: 100%;
    padding: 9px 14px;
    font-size: 0.8125rem;
  }
}

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