/* Freedom’s Revolution – Storefront Style Sheet */

:root {
  --primary-color: #e5b8ff;          /* lavender aura */
  --secondary-color: #00b3b3;        /* crystal teal energy */
  --accent-color: #ffd6a5;           /* golden warmth */
  --background-gradient: linear-gradient(135deg, #0a0a1f, #1f1f4d);
  --font-heading: 'Cinzel Decorative', cursive;
  --font-body: 'Lato', sans-serif;
}

body.frs-storefront {
  background: var(--background-gradient);
  font-family: var(--font-body);
  color: #f7f7ff;
  margin: 0;
  padding: 0;
}

.frs-storefront h1,
.frs-storefront h2,
.frs-storefront h3 {
  font-family: var(--font-heading);
  color: var(--primary-color);
  text-align: center;
  letter-spacing: 1px;
}

.frs-product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  padding: 2rem;
}

.frs-product-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.frs-product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 20px rgba(229, 184, 255, 0.25);
}

.frs-product-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.frs-product-info {
  padding: 1.2rem;
  text-align: center;
}

.frs-product-info h3 {
  margin: 0.5rem 0;
  font-size: 1.2rem;
}

.frs-product-info .price {
  color: var(--accent-color);
  font-weight: bold;
  font-size: 1.1rem;
}

.frs-button {
  background: var(--secondary-color);
  border: none;
  padding: 0.7rem 1.4rem;
  color: white;
  border-radius: 30px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.frs-button:hover {
  background: var(--primary-color);
  color: #222;
}

.frs-cart {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: var(--primary-color);
  color: #222;
  padding: 1rem 1.4rem;
  border-radius: 50px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.3);
  cursor: pointer;
}

