/* ==========================================
   STORE FEATURE MODULE STYLES
   ========================================== */

.store-announcement-banner {
  width: 100%;
  background-color: #1a222a;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  color: #87ceeb;
  text-align: center;
  padding: 8px 16px;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
}

.store-announcement-banner span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.store-container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.store-header {
  margin-bottom: 2rem;
  text-align: center;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.5rem;
}

.product-card {
  background-color: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.product-card:hover {
  transform: translateY(-4px);
  border-color: var(--text-muted);
}

.product-image-wrap {
  width: 100%;
  height: 200px;
  background-color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.product-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-info {
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.product-info h3 {
  font-size: 1.1rem;
  margin: 0.5rem 0;
  color: var(--text-main);
}

.product-info p {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
  flex-grow: 1;
}

.product-price {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 1rem;
}

.card-actions {
  display: flex;
  width: 100%;
}

.card-actions .btn {
  width: 100%;
  text-align: center;
  justify-content: center;
}

/* Demo Card Specifics */
.demo-card {
  border: 1px dashed var(--accent-red);
  text-align: center;
  justify-content: center;
  padding: 2rem 1.25rem;
}

.demo-icon {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}

/* Update button styles in global.css */
.btn-secondary, 
.btn-primary {
  background-color: #87ceeb; /* Soft Sky Blue */
  color: #0f1419;             /* Dark text for clear contrast */
  border: 1px solid #87ceeb;
}

/* Hover state */
.btn-secondary:hover, 
.btn-primary:hover {
  background-color: #70b8e8; /* Slightly darker sky blue on hover */
  border-color: #70b8e8;
}
