/* ====== GENERELT ====== */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #FFB6C1;
    color: #333;
}

header {
    background-color: #222;
    color: white;
    padding: 1rem;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin: 0;
    padding: 0;
}

nav a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s;
}

nav a:hover,
nav a.active {
    color: #ffb6c1;
}

/* ====== KNAPPER ====== */
.btn,
.product-card button {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background-color: black;
    color: white;
    text-decoration: none;
    border: none;
    border-radius: 10px;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn:hover,
.product-card button:hover {
    background-color: #333;
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    border: 2px solid #fff;
    color: #fff;
}

.btn-outline:hover {
    background: rgba(255,255,255,0.12);
    transform: translateY(-2px);
}

.btn-sm{
    font-size: 0.9rem;
    padding: 6px 10px;
    background: #444;
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
    transition: 0.2s;
}
.btn-sm:hover { background: #666; }

/* ===== HERO (opdateret) ===== */
.hero {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    min-height: 320px;
    padding: 3.2rem 1rem;
}

.hero--image{
    background-image: url("../images/hero.jpg");
    background-size: cover;
    background-position: center;
}

.hero-overlay{
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.55), rgba(0,0,0,0.25));
}

.hero-content{
    position: relative;
    max-width: 900px;
    padding: 1.25rem;
}

.hero h1 {
    font-size: 2.1rem;
    margin: 0 0 0.75rem 0;
}

.hero p {
    font-size: 1.05rem;
    margin: 0 auto 1.25rem auto;
    line-height: 1.5;
    max-width: 720px;
}

.hero-actions{
    display: flex;
    gap: 0.8rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ====== FORSIDE – USP ====== */
.usp{
    margin-top: -22px;
    padding: 0 1rem;
}
.usp-inner{
    max-width: 1100px;
    margin: 0 auto;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.10);
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.5rem;
    padding: 1rem;
}
.usp-item{
    text-align: center;
    padding: 0.75rem 0.5rem;
}
.usp-title{
    font-weight: 800;
    color: #222;
    margin-bottom: 0.2rem;
}
.usp-text{
    color: #555;
    font-size: 0.95rem;
}

/* ====== FORSIDE – SEKTIONSWRAPPER ====== */
.home-section{
    max-width: 1100px;
    margin: 2.5rem auto;
    padding: 0 1rem;
}
.section-head{
    display:flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1rem;
}
.section-head h2{
    margin: 0;
    color: #222;
}
.link-more{
    text-decoration: none;
    font-weight: bold;
    color: #222;
}
.link-more:hover{ text-decoration: underline; }

/* ====== FORSIDE – NYESTE PRODUKTER ====== */
.home-grid{
    display:grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}
.home-card{
    display:block;
    text-decoration:none;
    color:#111;
    background:#fff;
    border-radius: 16px;
    overflow:hidden;
    box-shadow: 0 6px 18px rgba(0,0,0,0.10);
    transition: transform .2s ease, box-shadow .2s ease;
}
.home-card:hover{
    transform: translateY(-4px);
    box-shadow: 0 10px 26px rgba(0,0,0,0.14);
}
.home-card img{
    width:100%;
    height: 190px;
    object-fit: cover;
}
.home-card-body{
    padding: 0.9rem;
}
.home-card-title{
    font-weight: 800;
    margin-bottom: 0.35rem;
}
.home-card-price{
    color: #ff6f91;
    font-weight: 800;
    margin-bottom: 0.6rem;
}
.home-card-cta{
    color:#0d47a1;
    font-weight: 700;
}

/* ====== GENVEJS-SEKTION (beholder din, men lidt pænere) ====== */
.shortcut-section {
    margin: 3rem 0;
}

.shortcut-bar-wrapper {
    background-color: #222;
    padding: 1.8rem 1rem;
    text-align: center;
}

.shortcut-title {
    color: white;
    font-size: 1.6rem;
    margin: 0 0 0.35rem 0;
}
.shortcut-subtitle{
    margin: 0;
    color: #ddd;
    font-size: 0.95rem;
}

.shortcut-bar {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    max-width: 1000px;
    margin: 1.5rem auto 0 auto;
    padding: 0 1rem;
}

.shortcut-bar a {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.7rem 1rem;
    background-color: #1976d2;
    color: white;
    text-decoration: none;
    font-weight: bold;
    border-radius: 12px;
    transition: background 0.3s, transform 0.2s;
}
.shortcut-bar a img{
    width: 34px;
    height: 34px;
    object-fit: cover;
    border-radius: 8px;
}
.shortcut-bar a:hover {
    background-color: #0d47a1;
    transform: translateY(-2px);
}

/* ====== FORSIDE – OM MIG MINI ====== */
.about-mini{
    max-width: 1100px;
    margin: 2.5rem auto;
    padding: 0 1rem;
}
.about-mini-inner{
    display:grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 1rem;
    align-items: stretch;
}
.about-mini-card{
    background:#fff;
    border-radius: 16px;
    padding: 1.4rem;
    box-shadow: 0 6px 18px rgba(0,0,0,0.10);
}
.about-mini-card h2{ margin: 0 0 0.6rem 0; }
.about-mini-card p{
    margin: 0 0 1rem 0;
    color: #444;
    line-height: 1.6;
}
.about-mini-actions{
    display:flex;
    gap: 0.8rem;
    flex-wrap: wrap;
}
.about-mini-image{
    border-radius: 16px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.10);
    background:
      linear-gradient(180deg, rgba(0,0,0,0.12), rgba(0,0,0,0.18)),
      url("../images/hero.jpg");
    background-size: cover;
    background-position: center;
    min-height: 240px;
}

/* ====== SOCIAL ====== */
.social-strip{
    background:#0f0f0f;
    padding: 2.5rem 1rem;
    margin-top: 2.5rem;
}
.section-head--dark h2{ color:#fff; }
.muted-on-dark{ color:#cfcfcf; font-size: 0.95rem; }

.social-grid{
    max-width:1100px;
    margin: 1rem auto 0 auto;
    display:grid;
    grid-template-columns: 1fr 1fr;
    gap:1.25rem;
}
.social-box{
    background:#151515;
    border:1px solid #222;
    border-radius:16px;
    padding:1rem;
    color:#fff;
    overflow:hidden;
}
.social-box h3{
    margin:0 0 0.75rem 0;
    font-size:1.05rem;
}
.social-links{
    margin-top: 0.75rem;
    display:flex;
    justify-content:flex-end;
}

/* ====== FOOTER (nyt) ====== */
.site-footer{
    background:#121212;
    padding: 2rem 1rem;
}
.footer-inner{
    max-width:1100px;
    margin:0 auto;
    display:grid;
    grid-template-columns: 1.2fr 0.8fr 1fr;
    gap: 1.25rem;
    align-items:start;
}
.footer-title{
    color:#fff;
    font-weight: 900;
    margin-bottom: 0.5rem;
}
.footer-text{
    color:#bdbdbd;
    margin:0.2rem 0 0 0;
    line-height: 1.55;
}
.footer-text.small{ font-size: 0.9rem; margin-top: 0.75rem; }
.footer-link{
    display:block;
    color:#ddd;
    text-decoration:none;
    margin: 0.35rem 0;
}
.footer-link:hover{ text-decoration: underline; }

.footer-socials {
    display: flex;
    gap: 0.75rem;
    margin-top: 0.5rem;
}
.footer-socials a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    background: #1e1e1e;
    border-radius: 50%;
    transition: background 0.25s, transform 0.2s;
}
.footer-socials a:hover {
    background: #1976d2;
    transform: translateY(-2px);
}
.footer-socials img {
    width: 18px;
    height: 18px;
    filter: invert(1);
}

/* ====== RESTEN AF DIT CSS (beholdt) ====== */
/* ====== ABOUT PAGE ====== */
.about-page {
    padding: 3rem 1rem;
    display: flex;
    justify-content: center;
}

.about-section {
    display: flex;
    align-items: center;
    gap: 3rem;
    max-width: 1000px;
    background-color: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.about-image img {
    width: 300px;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.15);
}

.about-text {
    max-width: 600px;
}

.about-text h1 {
    margin-bottom: 1rem;
}

.about-text p {
    line-height: 1.6;
    margin-bottom: 1rem;
}

/* ====== ABOUT GALLERY ====== */
.about-gallery {
    margin: 4rem auto;
    max-width: 1000px;
    text-align: center;
    background-color: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.about-gallery h2 {
    margin-bottom: 1rem;
}

.about-gallery p {
    color: #555;
    margin-bottom: 2rem;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1.5rem;
}

.gallery-grid img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.gallery-grid img:hover {
    transform: scale(1.05);
}

/* ====== PRODUCT PAGE ====== */
.product-page {
    padding: 3rem 1rem;
}

.product-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
    background-color: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.product-intro h1 {
    margin-bottom: 1rem;
    font-size: 2rem;
    color: #222;
}

.product-intro p {
    color: #555;
    line-height: 1.6;
}

/* Produkt grid og kort */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
    margin: 0 auto;
    max-width: 1000px;
}

.product-card {
    background-color: white;
    border-radius: 15px;
    padding: 1.5rem;
    box-shadow: 0 3px 8px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0,0,0,0.15);
}

.product-card img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    margin-bottom: 1rem;
}

.product-card h2 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.product-card .price {
    font-weight: bold;
    color: #ff6f91;
    margin-bottom: 1rem;
}

/* ====== CONTACT PAGE ====== */
.contact-page {
    display: flex;
    justify-content: center;
    padding: 3rem 1rem;
}

.contact-section {
    background-color: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    max-width: 600px;
    width: 100%;
    text-align: center;
}

.contact-section h1 {
    margin-bottom: 1rem;
}

.contact-section p {
    margin-bottom: 2rem;
    color: #444;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    text-align: left;
}

.contact-form label {
    font-weight: bold;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
}

.form-status {
    margin-top: 1rem;
    font-weight: bold;
}

/* ====== CART PAGE (dit eksisterende beholdt – der er mange dubletter) ====== */
.cart-page {
    max-width: 900px;
    margin: 3rem auto;
    padding: 2rem;
    background-color: white;
    border-radius: 15px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    text-align: center;
}

#cart-container {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.cart-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #fafafa;
    padding: 1rem;
    border-radius: 10px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}

.cart-item img {
    width: 80px;
    height: 80px;
    border-radius: 8px;
    object-fit: cover;
}

.cart-item-details {
    flex: 1;
    text-align: left;
    margin-left: 1rem;
}

.cart-item-details h3 {
    margin: 0;
    font-size: 1rem;
    color: #333;
}

.cart-item-details p {
    color: #777;
    margin: 0.25rem 0;
}

.cart-item button {
    background-color: #ff6f91;
    border: none;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.cart-item button:hover {
    background-color: #ff5470;
}

#total {
    font-weight: bold;
    font-size: 1.2rem;
    margin-top: 1rem;
    margin-bottom: 2rem;
    color: #222;
}

#search {
    width: 80%;
    max-width: 400px;
    padding: 0.75rem;
    margin: 1rem 0;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 1rem;
}

#dao-result {
    margin-top: 1rem;
    font-size: 0.95rem;
    color: #555;
}

#map {
    width: 100%;
    height: 400px;
    margin-top: 1.5rem;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

/* ====== THANK YOU PAGE ====== */
.thankyou-page {
    text-align: center;
    padding: 4rem 2rem;
}

.thankyou-section h1 {
    font-size: 2rem;
    color: #333;
    margin-bottom: 1rem;
}

.thankyou-section p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

/* ====== RESPONSIVE ====== */
@media (max-width: 1000px){
    .home-grid{ grid-template-columns: repeat(2, 1fr); }
    .usp-inner{ grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px){
    .about-mini-inner{ grid-template-columns: 1fr; }
    .social-grid{ grid-template-columns: 1fr; }
    .footer-inner{ grid-template-columns: 1fr; }
}

@media (max-width: 520px){
    .home-grid{ grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    nav ul { flex-wrap: wrap; }

    .about-section {
        flex-direction: column;
        text-align: center;
    }

    .about-image img { width: 80%; }

    .product-grid { grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); }

    .cart-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .cart-item img { margin-bottom: 0.5rem; }

    #search { width: 100%; }

    .hero h1 { font-size: 1.7rem; }
    .hero p { font-size: 1rem; }
}
/* =========================
   FORSIDE – FIX / OVERRIDES
   (indsæt nederst i css)
   ========================= */

/* Generel sektion-spacing på forsiden */
.home-section,
.shortcut-section,
.about-mini,
.social-strip {
  width: 100%;
}

/* Hero spacing (så det ikke føles mast) */
.hero {
  margin: 0;
}

/* USP: giv luft og “kort” look */
.usp {
  padding: 0 1rem;
  margin-top: -26px;
  margin-bottom: 1.8rem;
}

.usp-inner {
  max-width: 1100px;
  margin: 0 auto;
  background: #fff;
  border-radius: 16px;
  padding: 1rem;
  box-shadow: 0 10px 26px rgba(0,0,0,0.12);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.8rem;
}

.usp-item {
  padding: .75rem .6rem;
  text-align: center;
  border-radius: 12px;
  background: rgba(255, 182, 193, 0.18); /* let pink tint */
}

.usp-title { font-weight: 900; color: #222; margin-bottom: .25rem; }
.usp-text { color: #444; font-size: .95rem; }

/* Overskrift + “se alle” linje */
.section-head {
  max-width: 1100px;
  margin: 0 auto 1rem auto;
  padding: 0 1rem;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
}

.section-head h2 {
  margin: 0;
  font-size: 1.7rem;
  color: #222;
}

.link-more {
  font-weight: 800;
  text-decoration: none;
  color: #222;
}

.link-more:hover { text-decoration: underline; }

/* Nyeste produkter: brug KUN home-grid/home-card (så product-grid ikke blander sig) */
.home-section {
  max-width: 1100px;
  margin: 2.5rem auto;
  padding: 0;
}

.home-grid {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.home-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  text-decoration: none;
  color: #111;
  box-shadow: 0 8px 22px rgba(0,0,0,0.12);
  transition: transform .2s ease, box-shadow .2s ease;
}

.home-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 34px rgba(0,0,0,0.16);
}

.home-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.home-card-body { padding: .95rem; }
.home-card-title { font-weight: 900; margin-bottom: .35rem; }
.home-card-price { font-weight: 900; color: #ff6f91; margin-bottom: .6rem; }
.home-card-cta { font-weight: 800; color: #0d47a1; }

/* Genveje: sørg for afstand og centrering */
.shortcut-section { margin: 3rem 0; }

.shortcut-bar-wrapper {
  background: #222;
  padding: 1.8rem 1rem;
  text-align: center;
}

.shortcut-title { margin: 0 0 .35rem 0; color: #fff; font-size: 1.6rem; }
.shortcut-subtitle { margin: 0; color: #ddd; }

.shortcut-bar {
  max-width: 1100px;
  margin: 1.5rem auto 0 auto;
  padding: 0 1rem;
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

/* Om-mig mini: giv tydelig layout */
.about-mini {
  max-width: 1100px;
  margin: 2.5rem auto;
  padding: 0 1rem;
}

.about-mini-inner {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 1rem;
  align-items: stretch;
}

.about-mini-card {
  background: #fff;
  border-radius: 16px;
  padding: 1.4rem;
  box-shadow: 0 8px 22px rgba(0,0,0,0.12);
}

.about-mini-card h2 { margin: 0 0 .6rem 0; }
.about-mini-card p { margin: 0 0 1rem 0; line-height: 1.6; color: #444; }

.about-mini-actions {
  display: flex;
  gap: .8rem;
  flex-wrap: wrap;
}

/* Social: grid + “kort” */
.social-strip { margin-top: 2.5rem; }
.social-grid {
  max-width: 1100px;
  margin: 1rem auto 0 auto;
  padding: 0 1rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.social-box {
  background: #151515;
  border: 1px solid #222;
  border-radius: 16px;
  padding: 1rem;
  overflow: hidden;
}

.social-links {
  margin-top: .75rem;
  display: flex;
  justify-content: flex-end;
}

/* Footer: giv luft, så det ikke “klemmer” */
.site-footer { margin-top: 0; }
.footer-inner { padding-top: .5rem; }

/* Responsive */
@media (max-width: 1000px) {
  .home-grid { grid-template-columns: repeat(2, 1fr); }
  .usp-inner { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .about-mini-inner { grid-template-columns: 1fr; }
  .social-grid { grid-template-columns: 1fr; }
}

@media (max-width: 520px) {
  .home-grid { grid-template-columns: 1fr; }
}
/* =========================
   HERO – UDEN BILLEDE (CLEAN)
   ========================= */

.hero--clean {
  background: linear-gradient(
    180deg,
    #ffb6c1 0%,
    #ffc4cf 45%,
    #ffd6df 100%
  );
  color: #222;
}

.hero--clean .hero-content {
  max-width: 900px;
}

.hero--clean h1 {
  font-size: 2.4rem;
  font-weight: 900;
  color: #222;
}

.hero--clean p {
  font-size: 1.1rem;
  color: #444;
}

.hero--clean .btn {
  background: #222;
  color: #fff;
}

.hero--clean .btn:hover {
  background: #000;
}

.hero--clean .btn-outline {
  background: transparent;
  border: 2px solid #222;
  color: #222;
}

.hero--clean .btn-outline:hover {
  background: rgba(0,0,0,0.08);
}
/* ====== Global fix mod mærkelig overflydning ====== */
* { box-sizing: border-box; }
html, body { overflow-x: hidden; }

/* ====== HERO – CLEAN (uden overlay/billede) ====== */
.hero.hero--clean{
  min-height: 260px;            /* mindre klodset højde */
  padding: 3rem 1rem;           /* mere “kontrolleret” luft */
  background: radial-gradient(circle at top, #ffd2dc 0%, #ffb6c1 60%, #ffb6c1 100%);
  color: #222;
}

/* Hvis overlay stadig findes et sted, så slå det fra på clean hero */
.hero.hero--clean .hero-overlay{ display:none; }

.hero.hero--clean h1{
  font-size: 2.3rem;
  font-weight: 900;
  margin-bottom: .6rem;
}

.hero.hero--clean p{
  max-width: 720px;
  margin: 0 auto 1.2rem auto;
  color: #444;
  line-height: 1.55;
}

/* Knapper i hero */
.hero.hero--clean .btn{
  background:#222;
  color:#fff;
  border: none;
}

.hero.hero--clean .btn-outline{
  background: transparent;
  border: 2px solid #222;
  color: #222;
}
.hero.hero--clean .btn-outline:hover{
  background: rgba(0,0,0,0.08);
}
