:root {
  --pink-light: #fab4c2;
  --pink-dark: #eb8990;
  --cta-red: #e74c3c;
}

body {
  margin: 0;
  font-family: Arial, sans-serif;
  color: #333;

  /* vit bas + ljusrosa ränder */
  background-color: #fff;
  background-image: repeating-linear-gradient(
    90deg,
    rgba(250, 180, 194, 0.08) 0px,
    rgba(250, 180, 194, 0.08) 40px,
    transparent 40px,
    transparent 80px
  );
}

/* ========================= */
/* TOP-BAR                   */
/* ========================= */
.top-bar {
  background: #222;
  color: #fff;
  font-size: 0.9rem;
  text-align: center;
  padding: 6px 0;
}

.top-bar a {
  color: var(--pink-light);
  font-weight: bold;
  text-decoration: none;
  margin: 0 5px;
  transition: color 0.2s;
}

.top-bar a:hover {
  color: #fff;
}


/* ========================= */
/* NAVIGATION                */
/* ========================= */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #fff;
  padding: 12px 30px;
  border-bottom: 1px solid #eee;
  position: sticky;
  top: 0;
  z-index: 100;
}

/* Logga */
.logo {
  display: flex;
  align-items: center;
  gap: 10px; /* lite luft mellan bild och text */
  font-weight: bold;
  font-size: 1.4rem;
  color: var(--pink-dark);
  text-decoration: none;
}

.logo img {
  height: 55px; /* större logga */
  width: auto;
  display: block;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center; /* centrerar allt vertikalt */
  background: #fff;
  padding: 12px 30px;
  border-bottom: 1px solid #eee;
  position: sticky;
  top: 0;
  z-index: 100;
}


/* Menylänkar */
.nav-links {
  list-style: none;
  display: flex;
  gap: 25px;
  margin: 0;
  padding: 0;
}
.nav-links a {
  text-decoration: none;
  color: #333;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  padding: 6px 10px;
  border-radius: 4px;
  transition: all 0.2s;
}
.nav-links a:hover {
  background: var(--pink-light);
  color: #fff;
}

/* Dropdown */
.dropdown {
  position: relative;
}
.dropdown-content {
  display: none;
  position: absolute;
  top: 25px;
  left: 0;
  background: #fff;
  list-style: none;
  padding: 10px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}
.dropdown:hover .dropdown-content {
  display: block;
}

/* Högerknappar */
.nav-right {
  display: flex;
  align-items: center;
  gap: 10px;
}
.icon {
  font-size: 1.2rem;
  padding: 6px 10px;
  background: #f5f5f5;
  border-radius: 4px;
  transition: background 0.2s;
}
.icon:hover {
  background: #ddd;
}

/* Hamburgermenyn */
.hamburger {
  display: none;
  font-size: 1.8rem;
  cursor: pointer;
}

/* ========================= */
/* KNAPPAR                   */
/* ========================= */
.btn {
  padding: 10px 18px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: bold;
  display: inline-block;
}
.btn.danger {
  background: var(--cta-red);
  color: #fff;
}
.btn.danger:hover {
  background: #c0392b;
}
.btn.success {
  background: #388e3c;
  color: #fff;
}

/* ========================= */
/* HERO-SEKTION              */
/* ========================= */
.hero {
  background: url('../img/bakgrund/krita_bred.png') center center / cover no-repeat;
  color: white;
  padding: 100px 20px 150px; /* extra padding i botten så tallriken får plats */
  position: relative;
  overflow: visible;
}

.hero-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 1200px;
  margin: 0 auto;
  gap: 50px;
}

.hero-image {
  position: relative;
  z-index: 2;
}

.hero-image img {
  max-width: 450px;
  width: 100%;
  height: auto;
  display: block;
  position: relative;
  top: 50px;   /* skjuter ner tallriken */
}

.hero-content {
  max-width: 500px;
  position: relative;
  z-index: 3;
}

.hero-content h1 {
  font-size: 3rem;
  margin-bottom: 20px;
}

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 20px;
}

.btn.success {
  background: #28a745;
  padding: 12px 24px;
  color: white;
  text-decoration: none;
  border-radius: 5px;
  display: inline-block;
}

/* Mobilanpassning */
@media (max-width: 768px) {
  .hero-inner {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }

  .hero-content h1 {
    font-size: 2rem;
  }

  .hero-content p {
    font-size: 1rem;
  }

  .hero-image img {
    max-width: 300px;
    top: 30px; /* lite mindre overlap på mobil */
  }
}





/* ========================= */
/* KATEGORIER (SCROLL)       */
/* ========================= */

/* Wrapper för att hålla carouselen och pilarna */
.categories-wrapper {
  position: relative;
}

/* Själva scroll-listan */
.categories-scroll {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  gap: 16px;
  padding: 20px;

  scrollbar-width: none;   /* Firefox */
}
.categories-scroll::-webkit-scrollbar {
  display: none;           /* Chrome, Safari */
}

/* Enskild kategori */
.category {
  flex: 0 0 auto;
  scroll-snap-align: start;
  width: 140px;
  text-align: center;
  border-radius: 8px;
  transition: all 0.3s ease;
  cursor: pointer;

  border: 1px solid #000;   /* svart tunn ram */
  background: #fff;         /* vit bakgrund */
  padding: 10px;            /* lite luft runt innehållet */
}

.category img {
  width: 100%;
  height: auto;
  border-radius: 4px;
  transition: transform 0.2s;
}

.category h3 {
  margin: 10px 0 5px;
  font-size: 1.1rem;
  color: #333;  /* mörk text normalt */
}

/* Hover/markering */
.category:hover {
  background: var(--pink-light); /* rosa bakgrund */
  border-color: var(--pink-dark); /* mörkare rosa ram */
  transform: translateY(-5px);
}

.category:hover h3 {
  color: #fff; /* vit text vid hover */
}

/* Pilar */
.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.5);
  color: #fff;
  border: none;
  padding: 10px 14px;
  cursor: pointer;
  border-radius: 50%;
  z-index: 10;
  transition: background 0.2s;
}

.carousel-arrow:hover {
  background: var(--pink-dark);
}

.carousel-arrow.left {
  left: 10px;
}

.carousel-arrow.right {
  right: 10px;
}

/* Visa pilar bara på desktop */
@media (max-width: 768px) {
  .carousel-arrow {
    display: none;
  }
}


/* ========================= */
/* PRODUKTER (kortlayout)    */
/* ========================= */
.products {
  display: flex;
  justify-content: center;
  gap: 30px;
  padding: 50px 20px;
  flex-wrap: wrap;
}

.product-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  width: 280px;
  height: 100%; /* alla lika höga */
}

.product-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 24px rgba(0,0,0,0.2);
}

/* Bild högst upp */
.product-image img {
  width: 100%;
  height: 200px;
  object-fit: cover; /* beskär snyggt */
  display: block;
}

/* Rosa område för text */
.product-info {
  background: var(--pink-light);
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.product-info h3 {
  margin: 0 0 8px;
  font-size: 1.2rem;
  font-weight: bold;
  color: #333;
}

.product-info .stars {
  color: #f39c12;
  font-size: 0.9rem;
  margin-bottom: 8px;
}

.product-info p {
  font-size: 0.9rem;
  color: #333;
  margin: 0 0 12px;
}

.product-info .price {
  margin-top: auto; /* pressar knappen nedåt */
}

/* Knapp längst ner */
.add-btn {
  margin-top: 12px;
  align-self: center; /* mitten istället för vänster */
}

.add-btn:hover {
  background: #27ae60;
}






/* ========================= */
/* RESPONSIV DESIGN          */
/* ========================= */
@media (max-width: 768px) {
  .nav-links {
    display: none;
    flex-direction: column;
    gap: 15px;
    background: #f8f8f8;
    position: absolute;
    top: 60px;
    left: 0;
    width: 100%;
    padding: 15px;
  }
  .nav-links.show {
    display: flex;
  }
  .hamburger {
    display: block;
  }
  .nav-right {
    display: none;
  }
}




/* ========================= */
/* PRICE SECTION             */
/* ========================= */
.price-section {
  padding: 80px 20px;
  background: #fff;
  text-align: center;
}

.price-header .subtitle {
  color: var(--cta-red);
  font-size: 0.9rem;
  font-weight: bold;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.price-header h2 {
  font-size: 2.2rem;
  margin: 10px 0 40px;
  text-transform: uppercase;
  font-weight: 800;
}

.price-content {
  display: flex;
  justify-content: center;
  gap: 40px;
  align-items: flex-start;
  flex-wrap: wrap;
}

/* Bild */
.price-image img {
  max-width: 400px;
  border-radius: 8px;
}

/* Lista */
.price-list {
  flex: 1;
  min-width: 300px;
  max-width: 500px;
}

.price-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  font-size: 1rem;
}

.price-item h3 {
  margin: 0;
  font-weight: 700;
  font-size: 1.1rem;
  text-align: left;
}

.price-item p {
  margin: 2px 0 0;
  font-size: 0.8rem;
  color: #777;
  text-align: left;
}

.item-info {
  max-width: 60%;
}

/* Dotted line */
.dots {
  flex-grow: 1;
  border-bottom: 1px dotted #ccc;
  margin: 0 10px;
}

/* Pris */
.item-price {
  font-weight: bold;
  color: var(--cta-red);
  font-size: 1rem;
}


/* ========================= */
/* SINGLE PRODUCT            */
/* ========================= */
.single-product {
  padding: 60px 20px;
  background: #fff;
}

.product-container {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  justify-content: center;
}

/* Bilder */
.product-gallery {
  flex: 1;
  min-width: 280px;
  max-width: 400px;
}
.product-gallery .main-image {
  width: 100%;
  border-radius: 8px;
}
.product-gallery .thumbs {
  margin-top: 10px;
}
.product-gallery .thumbs img {
  width: 60px;
  height: 60px;
  border: 1px solid #eee;
  border-radius: 6px;
  margin-right: 6px;
  cursor: pointer;
}

/* Info */
.product-info {
  flex: 1;
  min-width: 300px;
  max-width: 500px;
}
.product-info h2 {
  font-size: 2rem;
  margin-bottom: 10px;
}
.product-info .rating {
  color: #f39c12;
  font-size: 0.9rem;
  margin-bottom: 15px;
}
.product-info .short-desc {
  color: #555;
  margin-bottom: 15px;
}
.product-info .price {
  font-size: 1.6rem;
  font-weight: bold;
  color: var(--cta-red);
  margin-bottom: 20px;
}
.features {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
}
.features li {
  margin-bottom: 8px;
  font-size: 0.9rem;
  color: #333;
}

.quantity-add {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 25px;
}
.qty-control {
  display: flex;
  align-items: center;
  border: 1px solid #ccc;
  border-radius: 4px;
  overflow: hidden;
}
.qty-control button {
  background: #f8f8f8;
  border: none;
  padding: 6px 10px;
  cursor: pointer;
}
.qty-control input {
  width: 50px;
  text-align: center;
  border: none;
}
.btn.add-cart {
  background: var(--cta-red);
  color: #fff;
  padding: 10px 20px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: bold;
}
.btn.add-cart:hover {
  background: #c0392b;
}

.meta {
  font-size: 0.85rem;
  color: #555;
}
.meta p {
  margin: 5px 0;
}

/* ========================= */
/* ACCORDIONS (product)      */
/* ========================= */
.product-accordions {
  max-width: 800px;
  margin: 40px auto;
  border: 1px solid #ddd;
  border-radius: 6px;
  overflow: hidden;
}

.accordion-item {
  border-bottom: 1px solid #ddd;
}

.accordion-header {
  width: 100%;
  text-align: left;
  padding: 15px 20px;
  font-size: 1rem;
  font-weight: bold;
  background: #f9f9f9;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.accordion-header::after {
  content: "+";
  font-size: 1.2rem;
}

.accordion-header.active {
  background: var(--pink-light);
  color: #fff;
}

.accordion-header.active::after {
  content: "–";
}

.accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
  padding: 0 20px;
  background: #fff;
  color: #444;
}

.accordion-body.open {
  padding: 15px 20px;
}


.accordion-body p {
  margin: 0;
}


/* ========================= */
/* INLOGGNING                */
/* ========================= */
.login-section {
  background: #f9f9f9;
  padding: 60px 20px;
  text-align: center;
}

.login-container {
  max-width: 400px;
  margin: auto;
  background: #fff;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.login-container h2 {
  margin-bottom: 20px;
  font-size: 1.8rem;
  text-transform: uppercase;
}

.login-form .form-group {
  margin-bottom: 15px;
}

.login-form input {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 1rem;
}

.login-form input:focus {
  border-color: var(--pink-dark);
  outline: none;
}

.form-links {
  margin: 10px 0;
  font-size: 0.9rem;
}

.form-links a {
  color: #555;
  text-decoration: none;
}

.form-links a:hover {
  color: var(--pink-dark);
  text-decoration: underline;
}

.btn.login-btn {
  width: 100%;
  background: green;
  color: #fff;
  padding: 12px;
  font-weight: bold;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

.btn.login-btn:hover {
  background: #006400;
}


/* ========================= */
/* CART DRAWER               */
/* ========================= */
.cart-drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: 350px;
  height: 100%;
  background: #fff;
  box-shadow: -2px 0 8px rgba(0,0,0,0.2);
  display: flex;
  flex-direction: column;
  transition: right 0.3s ease;
  z-index: 2000;
}

.cart-drawer.open {
  right: 0;
}

.cart-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px;
  border-bottom: 1px solid #eee;
}

.cart-header h3 {
  margin: 0;
}

.cart-items {
  flex: 1;
  overflow-y: auto;
  padding: 15px;
}

.cart-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 15px;
}

.cart-item img {
  width: 60px;
  height: auto;
  border-radius: 4px;
}

.item-info {
  flex: 1;
  margin: 0 10px;
}

.item-info h4 {
  margin: 0 0 5px;
  font-size: 1rem;
}

.item-controls {
  display: flex;
  align-items: center;
  gap: 5px;
}

.item-controls input {
  width: 40px;
  text-align: center;
}

.cart-footer {
  border-top: 1px solid #eee;
  padding: 15px;
}

.checkout-btn {
  width: 100%;
  background: var(--cta-red);
  color: #fff;
  padding: 12px;
  border: none;
  font-weight: bold;
  border-radius: 4px;
  cursor: pointer;
}


/* ========================= */
/* MENY 50s DINER            */
/* ========================= */

/* Sektionen med randig bakgrund */
.meny50-section {
  display: flex;
  justify-content: center;
  padding: 60px 20px;
}


/* Själva menytavlan */
.meny50-board {
  background: #fab4c2;
  border: 10px solid #fff;
  border-radius: 25px;
  padding: 40px 30px;
  max-width: 600px;
  width: 100%;
  box-shadow: 0 0 15px rgba(0,0,0,0.4);
  text-align: center;
  position: relative;
  z-index: 1;
}

.meny50-title {
  font-family: 'Pacifico', cursive;
  font-size: 2.5rem;
  color: #fff;
  text-shadow: 2px 2px #eb8990;
  margin-bottom: 30px;
}

.meny50-list {
  list-style: none;
  padding: 0;
  margin: 0;
  font-family: 'Arial Black', sans-serif;
  font-size: 1.2rem;
  color: #fff;
}

.meny50-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 12px 0;
}

.meny50-dots {
  flex-grow: 1;
  border-bottom: 2px dotted #fff;
  margin: 0 10px;
}

.meny50-price {
  font-weight: bold;
  color: #fff;
}

.meny50-footer {
  margin-top: 30px;
  font-size: 1rem;
  color: #fff;
  font-family: 'Courier New', monospace;
  letter-spacing: 2px;
}

.footer {
  display: flex;
  flex-wrap: wrap;
  min-height: 350px;
}

.footer-left {
  flex: 1;
  background: #2b2b2b;
  color: #fff;
  padding: 50px 30px;
}

.footer-left h3 {
  margin: 20px 0 10px;
  font-weight: bold;
}

.footer-left p {
  margin: 5px 0;
  line-height: 1.6;
}

.footer-left a {
  color: #ff5252;
  text-decoration: none;
}

.footer-left a:hover {
  text-decoration: underline;
}

.footer-left .socials a {
  margin-right: 10px;
  font-size: 1.4rem;
  color: #fff;
}

.footer-left span {
  color: #ff5252;
  font-weight: bold;
}

.footer-right {
  flex: 1;
  background: url('../img/blandat/lokal.png') center center / cover no-repeat;
}


/* Mobilanpassning */
@media (max-width: 768px) {
  .footer {
    flex-direction: column;
  }

  .footer-right {
    min-height: 250px;
  }
}



/* ========================= */
/* NYHETER                   */
/* ========================= */
.news {
  padding: 60px 20px;
  text-align: center;
}

.news h2 {
  font-size: 2rem;
  margin-bottom: 40px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
  text-align: left;
}

.news-item {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  border: 2px solid var(--pink-light);  /* rosa ram */
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.news-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 18px rgba(0,0,0,0.2);
  border-color: var(--pink-dark); /* lite mörkare rosa vid hover */
}


.news-item img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.news-content {
  padding: 20px;
}

.news-content h3 {
  margin: 0 0 10px;
  font-size: 1.2rem;
  color: #333;
}

.news-meta {
  display: block;
  font-size: 0.8rem;
  color: #999;
  margin-bottom: 10px;
}

.news-content p {
  font-size: 0.9rem;
  color: #555;
  line-height: 1.5;
}


/* Paging för nyheter */
.news-pagination {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 30px;
}

.news-pagination a {
  display: block;
  padding: 8px 14px;
  border: 1px solid #ddd;
  border-radius: 4px;
  color: #333;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.2s ease;
}

.news-pagination a:hover {
  background: var(--pink-light);
  color: #fff;
  border-color: var(--pink-dark);
}

.news-pagination a.active {
  background: var(--cta-red);
  color: #fff;
  border-color: var(--cta-red);
}


/* ========================= */
/* SINGLE NEWS               */
/* ========================= */
.single-news {
  padding: 60px 20px;
  background: transparent; /* randiga bakgrunden ska synas */
}

.news-container {
  display: flex;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.news-article {
  flex: 3;
  background: #fff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  border: 2px solid var(--pink-light);
}

.news-article h1 {
  margin-top: 0;
  font-size: 2rem;
  margin-bottom: 10px;
}

.news-meta {
  font-size: 0.9rem;
  color: #999;
  margin-bottom: 20px;
}

.news-main-image {
  width: 100%;
  border-radius: 8px;
  margin-bottom: 20px;
}

.news-article p {
  line-height: 1.6;
  margin-bottom: 20px;
}

.news-article blockquote {
  border-left: 4px solid var(--pink-dark);
  padding-left: 15px;
  font-style: italic;
  color: #555;
  margin: 20px 0;
}

.news-gallery {
  display: flex;
  gap: 20px;
  margin-top: 20px;
}
.news-gallery img {
  flex: 1;
  border-radius: 8px;
  object-fit: cover;
}

/* Sidebar */
.news-sidebar {
  flex: 1;
  min-width: 250px;
}

.ad-banner img {
  width: 100%;
  border-radius: 8px;
  margin-bottom: 30px;
}

.sidebar-section h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.tags a {
  display: inline-block;
  margin: 4px;
  padding: 6px 12px;
  background: #f2f2f2;
  border-radius: 20px;
  font-size: 0.85rem;
  text-decoration: none;
  color: #333;
}

.tags a:hover {
  background: var(--pink-light);
  color: #fff;
}



/* ========================= */
/* KONTAKT                   */
/* ========================= */
.contact-section {
  padding: 60px 20px;
  background: #f9f9f9;
}

.contact-header {
  text-align: center;
  margin-bottom: 40px;
}

.contact-header h1 {
  font-size: 2.5rem;
  margin-bottom: 10px;
}

.contact-header p {
  font-size: 0.9rem;
  color: #777;
}

.contact-header a {
  text-decoration: none;
  color: var(--pink-dark);
}

.contact-container {
  display: flex;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto 40px auto;
  flex-wrap: wrap;
}

.contact-info {
  flex: 1;
  min-width: 280px;
}

.contact-info h3 {
  margin-top: 20px;
  font-size: 1.2rem;
}

.contact-info p {
  margin: 8px 0;
  color: #444;
}

.contact-info a {
  color: var(--pink-dark);
  text-decoration: none;
}
.contact-info a:hover {
  text-decoration: underline;
}

.contact-form {
  flex: 1;
  min-width: 280px;
}

.contact-form form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-form input,
.contact-form textarea {
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1rem;
  width: 100%;
}

.btn.contact-btn {
  background: #388e3c;
  color: #fff;
  padding: 12px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-weight: bold;
  transition: background 0.3s ease;
}

.btn.contact-btn:hover {
  background: #2e7030;
}

.map iframe {
  border-radius: 12px;
}



/* ========================= */
/* OM OSS                    */
/* ========================= */
.about-header {
  text-align: center;
  padding: 60px 20px 30px;
  background: #f9f9f9;
}

.about-header h1 {
  font-size: 2.5rem;
  margin-bottom: 10px;
}

.about-header p {
  font-size: 0.9rem;
  color: #777;
}
.about-header a {
  text-decoration: none;
  color: var(--pink-dark);
}

/* Sektion med text + bild */
.about-section {
  padding: 60px 20px;
  background: #fff;
}
.about-section.reverse {
  background: #fdfdfd;
}
.about-content {
  display: flex;
  gap: 40px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
}
.about-text {
  flex: 1;
}
.about-text h4 {
  color: var(--cta-red);
  font-size: 0.9rem;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.about-text h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}
.about-text p {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 20px;
}
.about-image {
  flex: 1;
}
.about-image img {
  width: 100%;
  border-radius: 12px;
}

/* Extra sektion */
.about-extra {
  text-align: center;
  padding: 60px 20px;
  background: #fff;
}
.about-extra h4 {
  color: var(--cta-red);
  text-transform: uppercase;
  margin-bottom: 10px;
}
.about-extra h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}
.about-extra p {
  max-width: 700px;
  margin: 0 auto 40px;
  color: #555;
}
.extra-gallery {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}
.extra-gallery img {
  width: 300px;
  border-radius: 12px;
  object-fit: cover;
}



/* ========================= */
/* FAQ                       */
/* ========================= */
.faq-section {
  padding: 60px 20px;
  background: #f9f9f9;
}

.faq-header {
  text-align: center;
  margin-bottom: 40px;
}

.faq-header h1 {
  font-size: 2.5rem;
  margin-bottom: 10px;
}

.faq-header p {
  font-size: 0.9rem;
  color: #777;
}

.faq-header a {
  text-decoration: none;
  color: var(--pink-dark);
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-container h2 {
  font-size: 1.8rem;
  margin-bottom: 20px;
  text-align: left;
}


/* ========================= */
/* PARISAREN PROMO SECTION   */
/* ========================= */
.parisaren-promo {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 25px;
  padding: 70px 30px;
  background: repeating-linear-gradient(
    90deg,
    #fff 0px,
    #fff 40px,
    rgba(250,180,194,0.15) 40px,
    rgba(250,180,194,0.15) 80px
  );
}

.parisaren-promo .promo-box {
  position: relative;
  height: 380px;
  background-size: cover;
  background-position: center;
  border-radius: 25px;
  overflow: hidden;
  border: 5px solid #fff;
  box-shadow: 0 6px 18px rgba(0,0,0,0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.parisaren-promo .promo-box::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(250,180,194,0.5), rgba(255,255,255,0.3));
  z-index: 1;
}

.parisaren-promo .promo-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.25);
}

.promo-text {
  position: absolute;
  bottom: 25px;
  left: 25px;
  right: 25px;
  color: #fff;
  z-index: 2;
  text-align: center;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.promo-text h4 {
  color: #fff;
  font-size: 0.9rem;
  margin-bottom: 6px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.promo-text h2 {
  font-family: 'Pacifico', cursive;
  font-size: 2rem;
  margin: 0 0 10px;
  color: #fff;
  text-shadow: 2px 2px #e88b9f;
}

.promo-text p {
  font-size: 1rem;
  color: #fff;
}

.promo-text span {
  color: #fff;
  background: var(--pink-dark);
  padding: 3px 10px;
  border-radius: 12px;
  font-weight: bold;
}

.btn.retro {
  display: inline-block;
  margin-top: 10px;
  background: #fff;
  color: var(--pink-dark);
  padding: 10px 20px;
  border-radius: 25px;
  font-weight: bold;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.2s ease;
  box-shadow: 0 3px 6px rgba(0,0,0,0.2);
}

.btn.retro:hover {
  background: var(--pink-light);
  color: #fff;
}

@media (max-width: 768px) {
  .parisaren-promo .promo-box {
    height: 300px;
  }
  .promo-text h2 {
    font-size: 1.6rem;
  }
}
/* Ta bort understrykning på kategorilänkar */
.category {
  text-decoration: none;
}

/* Se till att texten inte ändrar färg som länk */
.category h3 {
  text-decoration: none;
  color: #333;
}

/* Och vid hover — använd din tidigare stil */
.category:hover h3 {
  color: #fff;
  text-decoration: none;
}
/* Liten badge på kategoribilder */
.category-img {
  position: relative;
}

.category-badge {
  position: absolute;
  top: 6px;
  left: 6px;
  background: var(--pink-dark);
  color: #fff;
  font-size: 0.75rem;
  font-weight: bold;
  padding: 4px 8px;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.2);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}


/* ============================= */
/* Underrätter / Storlekar       */
/* ============================= */
.meny50-huvudratt {
  font-weight: bold;
  font-size: 1.25rem;
  color: #fff;
  margin-top: 14px;
}

.meny50-sublist {
  list-style: none;
  padding: 0;
  margin: 6px 0 14px 30px; /* lite större indrag */
  font-family: 'Arial Black', sans-serif;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.9);
}

.meny50-sublist li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 6px 0;
}

.meny50-sublist .meny50-dots {
  flex-grow: 1;
  border-bottom: 1px dotted rgba(255,255,255,0.8);
  margin: 0 10px;
  height: 12px;
}

.meny50-sublist .meny50-price {
  font-weight: bold;
  color: #fff;
  font-size: 1rem;
  opacity: 0.9;
}

/* ============================= */
/* Skylt: Meny ej serveras       */
/* ============================= */
.meny50-closed-inline {
  background: #eb8990;
  color: #fff;
  border: 2px solid #fff;
  border-radius: 10px;
  padding: 10px 15px;
  margin: 0 auto 20px auto;
  display: inline-block;
  text-align: center;
  font-size: 1rem;
  font-weight: bold;
  box-shadow: 0 0 12px rgba(0,0,0,0.15);
}
.meny50-closed-inline small {
  display: block;
  margin-top: 3px;
  font-size: 0.85rem;
}

/* ============================= */
/* Grön informationsrad          */
/* ============================= */
.meny50-openinfo {
  margin-top: 6px;
  font-size: 0.9rem;
  color: #b4f5b4;
  text-shadow: 0 1px 2px rgba(0,0,0,0.15);
}
