/* Film Rolls Grid Layout */

.film-rolls-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 1rem;
}

.film-rolls-container h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem;
  font-weight: 600;
  color: #e0e0e0;
  margin-bottom: 1rem;
  text-align: center;
}

.film-rolls-container .subtitle {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 1.1rem;
  color: #888;
  text-align: center;
  margin-bottom: 3rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.store-section {
  margin-bottom: 3rem;
}

.store-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  font-weight: 600;
  color: #c0c0c0;
  margin-bottom: 1.5rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid #333;
}

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

.product-card {
  background: #1e1e24;
  border-radius: 8px;
  padding: 1.5rem;
  transition: all 0.3s ease;
  border: 1px solid #2a2a2e;
}

.product-card:hover {
  background: #252530;
  border-color: #3a3a42;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.product-image {
  width: 100%;
  aspect-ratio: 1 / 1;
  margin-bottom: 0.75rem;
  border-radius: 6px;
  overflow: hidden;
  background: #2a2a32;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.product-image:hover img {
  transform: scale(1.05);
}

.product-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: #e8e8e8;
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.product-desc {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 0.95rem;
  color: #999;
  line-height: 1.5;
  margin-bottom: 1rem;
}

.product-price {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: #a8d8a8;
  margin-bottom: 1rem;
}

.product-actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.buy-btn, .store-link {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  text-decoration: none;
  transition: all 0.2s ease;
}

.buy-btn {
  background: #3a3a42;
  color: #e0e0e0;
  border: 1px solid #4a4a52;
}

.buy-btn:hover {
  background: #4a4a52;
  border-color: #5a5a62;
}

.store-link {
  background: transparent;
  color: #7a7a82;
  border: 1px solid #3a3a42;
}

.store-link:hover {
  background: #2a2a32;
  color: #9a9aa2;
}

.photos-btn {
  background: transparent;
  color: #a8d8a8;
  border: 1px solid #3a5a3a;
}

.photos-btn:hover {
  background: #2a3a2a;
  color: #c8f8c8;
  border-color: #4a7a4a;
}

@media (max-width: 768px) {
  .film-rolls-container h1 {
    font-size: 2.2rem;
  }
  
  .film-rolls-container .subtitle {
    font-size: 1rem;
  }
  
  .store-name {
    font-size: 1.5rem;
  }
  
  .products-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .product-card {
    padding: 1.2rem;
  }
}
