﻿/* === Basis stil === */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
    background-color: #fdfaf6;
    color: #4a3f35;
}

header {
    background-color: #f4efe6;
    padding: 1rem;
    text-align: center;
    border-bottom: 2px solid #d4af37;
}

header h1 {
    font-family: 'Georgia', serif;
    font-size: 2rem;
    margin: 0;
    color: #d4af37;
}

nav a {
    margin: 0 1rem;
    text-decoration: none;
    color: #4a3f35;
    font-weight: bold;
}

nav a:hover {
    color: #d4af37;
}

/* === Hero === */
.hero {
    position: relative;
    text-align: center;
    color: white;
}

.hero-img {
    width: 100%;
    max-height: 400px;
    object-fit: cover;
}

.hero-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0, 0, 0, 0.4);
    padding: 1rem 2rem;
    border-radius: 10px;
}

/* === Kategorier === */
.kategorier {
    padding: 2rem;
    text-align: center;
}

.kategori-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.kategori {
    background: #fff;
    border: 1px solid #e0dcd5;
    border-radius: 10px;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    transition: transform 0.3s ease;
}

.kategori:hover {
    transform: scale(1.03);
    border-color: #d4af37;
}

.kategori img {
    width: 100%;
    height: 150px;
    object-fit: cover;
}

.kategori h3 {
    padding: 0.5rem;
}

/* === Coming Soon === */
.coming-soon {
    margin: 2rem;
    padding: 1rem;
    background: #fff8e7;
    border: 2px solid #d4af37;
    border-radius: 10px;
    text-align: center;
    font-style: italic;
    animation: pulse 2s infinite;
}

.coming-soon a {
    display: block;
    margin-top: 0.5rem;
    text-decoration: none;
    color: #4a3f35;
    font-weight: bold;
}

.coming-soon a:hover {
    color: #d4af37;
}

@keyframes pulse {
    0%, 100% { box-shadow: 0 0 10px #d4af37; }
    50% { box-shadow: 0 0 20px #f9e79f; }
}

/* === Footer === */
footer {
    background-color: #f4efe6;
    padding: 1rem;
    text-align: center;
    border-top: 2px solid #d4af37;
}
/* Produkter */
.product-grid{
  display:grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  margin-top: 1rem;
}
.product-card{
  background:#fff;
  border:1px solid #e8dbc0;
  border-radius:12px;
  padding:12px;
  box-shadow: 0 6px 18px rgba(0,0,0,.06);
  transition: transform .2s ease, box-shadow .2s ease;
}
.product-card:hover{ transform: translateY(-2px); box-shadow: 0 10px 24px rgba(0,0,0,.08); }
.product-card img{ width:100%; height:160px; object-fit:cover; border-radius:8px; }
.product-card h3{ margin:8px 0 6px; color:#5a452f }
.product-card .meta{ color:#8a7b67; font-size:.9rem; margin:0 }
.product-card .desc{ margin:.3rem 0 }
.product-card .extra{ font-size:.85rem; color:#7a6a55; }
.product-card .price{ font-weight:bold; color:#4a3f35; }

