/* =========================
   Grund & variabler
   ========================= */
:root {
    --accent: #6b8e23;
    --muted: #5b5b5b;
    --bg: #fbf9f6;
}

* {
    box-sizing: border-box;
}

body {
    font-family: Inter, system-ui, -apple-system, 'Segoe UI', Roboto, Arial;
    margin: 0;
    background: var(--bg);
    color: #222;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 20px;
}

/* =========================
   Header & språkval
   ========================= */
header {
    padding: 18px 0;
}

.header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand {
    font-weight: 800;
    font-size: 28px;
    letter-spacing: 0.2px;
}

.brand img {
    height: 110px;
    width: auto;
    display: block;
}

.subtitle {
    color: var(--muted);
    margin-top: 6px;
}

.lang-switch {
    display: flex;
    gap: 6px;
}

.lang-switch a {
    text-decoration: none;
    font-weight: 700;
    font-size: 12px;
    color: var(--accent);
    padding: 4px 7px;
    border-radius: 6px;
    border: 1px solid rgba(107, 142, 35, 0.25);
}

.lang-switch a.active {
    background: var(--accent);
    color: #fff;
}

/* =========================
   Hero
   ========================= */
.hero {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    margin: 18px 0;
}

.hero .bg{
  position: relative;
  height: 340px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-img{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(1.05) saturate(1.05);
}

.hero .overlay{
  position: relative; /* så den ligger över bilden */
  z-index: 1;
}

.hero .overlay {
    background: linear-gradient(
        180deg,
        rgba(255,255,255,0.25),
        rgba(255,255,255,0.55)
    );
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    padding-top: 40px;
}

.hero-title{
  color:#fff;
  text-shadow: 1px 1px 4px rgba(0,0,0,0.45);
  padding:18px 24px;
  margin:0;
  font-size:26px;
  max-width:780px;
  line-height:1.35;
  font-weight:700;
}

.hero h2 {
    color: #fff;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.45);
    padding: 18px 24px;
    margin: 0;
    font-size: 26px;
    max-width: 780px;
    line-height: 1.35;
}
.hero-sub {
  color: #fff;
  font-size: 17px;
  font-weight: 600;
  margin-top: 10px;

  text-shadow:
    0 2px 6px rgba(0,0,0,0.55),
    0 0 18px rgba(0,0,0,0.35);
}

/* =========================
   Sektioner & innehåll
   ========================= */
main {
    margin-top: 18px;
}

.section {
    background: #fff;
    border-radius: 12px;
    padding: 18px;
    margin-bottom: 18px;
    box-shadow: 0 8px 30px rgba(10,10,10,0.04);
}

.section img {
    display: block;
    width: 100%;
    max-width: 900px;
    height: auto;
    margin: 1.5rem auto 0;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}

.info-callout {
  background:#f7faf6;
  border-left:4px solid var(--accent);
  padding:12px 14px;
  border-radius:10px;
  color:var(--muted);
  font-size:14px;
  margin-top:12px;
}

/* =========================
   Produkter
   ========================= */
.products {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 14px;
}

.product {
    padding: 12px;
}

.product img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 10px;
    border: 1px solid #e5e2da;
    background: #efece6;
}

.product h3 {
    margin: 10px 0 6px;
}

.product p {
    color: var(--muted);
    margin: 0 0 8px;
}

.price {
    font-weight: 700;
    margin-bottom: 8px;
}

/* =========================
   Raktvåls länk
   ========================= */

.raktvalInfoCallout{
  margin: 14px 0 18px;
  padding: 12px 14px;
  border-radius: 12px;
  background: rgba(0,0,0,.04);
  border: 1px solid rgba(0,0,0,.06);
  font-size: 0.98rem;
}

.raktvalInfoCallout a{
  font-weight: 700;
  text-decoration: underline;
}

/* =========================
   Ikoner & ingredienser
   ========================= */
.icons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 8px;
}

.icon {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #f7faf6;
    padding: 6px 10px;
    border-radius: 999px;
    color: var(--muted);
    font-weight: 600;
}

.ingredients {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 10px;
    align-items: center;
}

.ingredients-label {
    font-weight: 700;
    font-size: 13px;
    color: #444;
    margin-right: 4px;
}

.chip {
    background: #f7faf6;
    border: 1px solid #e5e2da;
    border-radius: 999px;
    padding: 4px 10px;
    font-size: 13px;
    color: #666;
}

    details.inci-box { margin-top: 10px; }
    details.inci-box summary { cursor: pointer; font-weight: 700; color: #444; }
    .inci-text { color: var(--muted); font-size: 13px; line-height: 1.45; margin: 8px 0 0; }

/* =========================
   Förfrågeformulär
   ========================= */
form {
    display: grid;
    gap: 10px;
}

input,
textarea {
    padding: 10px;
    border-radius: 8px;
    border: 1px solid #e6e6e6;
    font-family: inherit;
}

input[type="number"] {
    width: 70px;
}

.soap-row {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.8rem;
}

.soap-row span {
    line-height: 1.4;
}

button {
    background: var(--accent);
    color: white;
    padding: 10px;
    border-radius: 8px;
    border: 0;
    font-weight: 700;
    cursor: pointer;
}

/* =========================
   Footer
   ========================= */
   
/* =========================
   Footer (clean / latest)
   ========================= */

.site-footer{
  margin-top: 4rem;
  padding: 28px 16px;
  text-align: center;
  color: var(--muted);
  font-size: 0.95rem;
}

.site-footer strong{ color: var(--text); }

.site-footer a{
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.footer-block{ margin-top: 10px; }

.footer-social{
  display: flex;
  gap: 8px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.ig-link{
  display: inline-flex;
  gap: 8px;
  align-items: center;
  text-decoration: none;
}

.ig-link img{ display: block; }

.footer-copy{
  margin-top: 12px;
  font-size: 0.85rem;
}
   
   
   

/* =========================
   Responsivt
   ========================= */
@media (max-width: 720px) {
    .hero .bg {
        height: 260px;
    }

    .hero h1 {
        font-size: 20px;
    }

    .brand img {
        height: 65px;
    }
}

@media (min-width: 900px) {
    .section img {
        max-width: 1000px;
    }
}
