  /* --- 2026 DESIGN SYSTEM: LYSERØD FEBER THEME --- */
  *,
  *::before,
  *::after {
      box-sizing: border-box;
  }

  :root {
      /* Palette: Deep Black / Giro Pink */
      --color-dark: #111111;
      --color-primary: #E7005A;
      --color-leaf: #b30048;
      --color-accent: #ffffff;
      --color-light-pink: #fdf5f8;
      /* Italian Tricolore Accents */
      --giro-green: #008C45;
      --giro-white: #ffffff;
      --giro-red: #CD212A;
      /* Functional Colors */
      --bg-body: #ffffff;
      /* Visual rest */
      --bg-card: #ffffff;
      --bg-alt: #fdf5f8;
      /* Soft pink rest area */
      --text-main: var(--color-dark);
      --text-muted: #666666;
      --border-subtle: rgba(231, 0, 90, 0.1);
      /* UI Elements */
      --radius-sm: 8px;
      --radius-md: 16px;
      --radius-lg: 24px;
      --shadow-card: 0 4px 20px rgba(0, 0, 0, 0.04);
      --shadow-hover: 0 15px 35px rgba(231, 0, 90, 0.1);
      /* Typography */
      --font-heading: 'Sora', sans-serif;
      --font-body: 'Fira Sans', sans-serif;
  }

  body {
      font-family: var(--font-body);
      background-color: var(--bg-body);
      color: var(--text-main);
      margin: 0;
      padding: 0;
      line-height: 1.6;
      -webkit-font-smoothing: antialiased;
  }

  /* --- VISUAL REST & TRICOLORE --- */
  .section-white {
      background-color: #ffffff;
  }

  .section-soft-pink {
      background-color: var(--bg-alt);
  }

  .tricolore-accent {
      height: 4px;
      width: 80px;
      display: flex;
      margin: 15px auto 0;
      border-radius: 50px;
      overflow: hidden;
  }

  .tri-green {
      flex: 1;
      background: var(--giro-green);
  }

  .tri-white {
      flex: 1;
      background: #ddd;
  }

  .tri-red {
      flex: 1;
      background: var(--giro-red);
  }

  .section-header .tricolore-accent {
      margin: 15px auto 25px;
  }

  /* --- SKELETON LOADER --- */
  .skeleton {
      background: #eee;
      background: linear-gradient(110deg, #ececec 8%, #f5f5f5 18%, #ececec 33%);
      border-radius: var(--radius-md);
      background-size: 200% 100%;
      animation: skeleton-shine 1.5s linear infinite;
  }

  @keyframes skeleton-shine {
      to {
          background-position-x: -200%;
      }
  }

  .skeleton-card {
      height: 400px;
      display: flex;
      flex-direction: column;
      padding: 15px;
      gap: 12px;
      background: #fff;
      border: 1px solid #eee;
      border-radius: var(--radius-md);
  }

  .skeleton-img {
      height: 200px;
      width: 100%;
      border-radius: var(--radius-sm);
  }

  .skeleton-brand {
      height: 12px;
      width: 40%;
      border-radius: 4px;
  }

  .skeleton-title {
      height: 20px;
      width: 90%;
      border-radius: 4px;
  }

  .skeleton-price {
      height: 25px;
      width: 60%;
      border-radius: 4px;
      margin-top: auto;
  }

  .skeleton-btn {
      height: 40px;
      width: 100%;
      border-radius: var(--radius-sm);
  }

  article {
      width: 100% !important;
      max-width: 100% !important;
  }

  h1,
  h2,
  h3 {
      font-family: var(--font-heading);
      font-weight: 800;
      line-height: 1.1;
  }

  /* 1. Global nulstilling af links i kampagnen (vinder over shoppens CSS) */
  /* Vi bruger 'body' for at gøre reglen tungere */
  body .lyseroed-feber-campaign a {
      text-decoration: none !important;
      color: var(--color-primary) !important;
      /* Standard link-farve er nu den flotte Giro-pink */
  }

  /* 2. Beskyttelse af knapper (Specificitets-boost) */
  /* Ved at gentage klassen .btn-bundle.btn-bundle gør vi reglen ekstremt stærk */
  body .lyseroed-feber-campaign .btn-buy.btn-buy,
  body .lyseroed-feber-campaign .btn-bundle.btn-bundle,
  body .lyseroed-feber-campaign .promo-btn.promo-btn {
      color: #ffffff !important;
      /* Tvinger teksten til at være hvid uanset hvad */
      text-decoration: none !important;
  }

  /* 3. Specifik farve for 'Vis på kort' links, der skal være mørke */
  body .lyseroed-feber-campaign .btn-maps.btn-maps {
      color: var(--color-dark) !important;
  }

  /* 4. Hover effekter (vigtigt at de også vinder) */
  body .lyseroed-feber-campaign a:hover {
      text-decoration: underline !important;
  }

  body .lyseroed-feber-campaign .btn-bundle:hover {
      color: var(--color-primary) !important;
      background-color: #ffffff !important;
      text-decoration: none !important;
  }

  footer {
      margin-top: 0px !important;
  }

  /* --- HERO SECTION: GIRO THEME --- */
  .campaign-hero {
      background-color: var(--color-dark);
      background-image: url('https://images.unsplash.com/photo-1541625602330-2277a4c46182?auto=format&fit=crop&q=80&w=2670');
      /* Placeholder cycling image */
      background-size: cover;
      background-position: center;
      color: white;
      padding: 80px 20px 100px;
      position: relative;
      text-align: center;
      overflow: hidden;
      min-height: 600px;
      display: flex;
      align-items: center;
      justify-content: center;
  }

  .hero-overlay {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: linear-gradient(180deg, rgba(17, 17, 17, 0.7) 0%, rgba(231, 0, 90, 0.6) 100%);
      z-index: 1;
  }

  .hero-content {
      position: relative;
      z-index: 2;
      max-width: 900px;
      margin: 0 auto;
  }

  .campaign-tagline {
      color: var(--color-accent);
      font-weight: 600;
      letter-spacing: 2px;
      text-transform: uppercase;
      margin-bottom: 15px;
      display: inline-block;
      border: 1px solid var(--color-accent);
      padding: 5px 15px;
      border-radius: 50px;
      font-size: 0.85rem;
      background-color: rgba(231, 0, 90, 0.8);
  }

  .campaign-hero h1 {
      font-size: clamp(2.5rem, 6vw, 5.5rem);
      /* Responsive typography, slightly larger for Lyserød Feber */
      margin: 0 0 20px 0;
      letter-spacing: -1px;
      text-transform: uppercase;
  }

  .campaign-hero p {
      font-size: 1.25rem;
      color: #ffffff;
      max-width: 600px;
      margin: 0 auto 30px;
      font-weight: 400;
  }

  /* --- BENTO GRID CONCEPT SECTION (Modern 2026 Layout) --- */
  .concept-section {
      max-width: 1200px;
      margin: -60px auto 60px;
      /* Pull up into Hero */
      padding: 0 20px;
      position: relative;
      z-index: 10;
  }

  .bento-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 20px;
  }

  .bento-card {
      background: rgba(255, 255, 255, 0.95);
      backdrop-filter: blur(10px);
      padding: 30px;
      border-radius: var(--radius-md);
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
      border: 1px solid rgba(255, 255, 255, 0.5);
      transition: transform 0.3s ease;
      display: flex;
      flex-direction: column;
      align-items: flex-start;
  }

  .bento-card:hover {
      transform: translateY(-5px);
  }

  .bento-icon {
      width: 50px;
      height: 50px;
      background: var(--color-light-pink);
      color: var(--color-primary);
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 20px;
  }

  .bento-icon svg {
      width: 28px;
      height: 28px;
  }

  .bento-card h3 {
      font-size: 1.5rem;
      margin: 0 0 10px 0;
      color: var(--color-dark);
  }

  .bento-card p {
      font-size: 1rem;
      color: var(--text-muted);
      margin: 0;
  }

  /* Special styling for the "Prices" card to make it pop */
  .bento-card.highlight {
      background: var(--color-primary);
      color: var(--color-accent);
      border: none;
  }

  .bento-card.highlight .bento-icon {
      background: rgba(0, 0, 0, 0.1);
      color: var(--color-accent);
  }

  .bento-card.highlight h3,
  .bento-card.highlight p {
      color: var(--color-accent);
  }

  /* --- MAIN LAYOUT --- */
  .main-layout {
      max-width: 1400px;
      margin: 0 auto;
      padding: 0 20px 80px;
  }

  @media (min-width: 1024px) {
      .main-layout {
          display: grid;
          grid-template-columns: 280px 1fr;
          gap: 40px;
          align-items: flex-start;
      }
  }

  /* Filter Section */
  .filter-section {
      margin-bottom: 40px;
      position: sticky;
      top: 10px;
      z-index: 100;
  }

  @media (min-width: 1024px) {
      .filter-section {
          top: 40px;
          margin-bottom: 0;
      }
  }

  .filter-bar {
      background: #fff;
      padding: 15px;
      border-radius: var(--radius-md);
      box-shadow: var(--shadow-card);
      border: 1px solid var(--border-subtle);
      display: flex;
      flex-direction: column;
  }

  .filter-content {
      display: flex;
      flex-direction: column;
      gap: 15px;
  }

  .filter-toggle {
      display: none;
      width: 100%;
      background: none;
      border: none;
      padding: 5px 0;
      font-size: 1rem;
      font-weight: 700;
      color: var(--color-primary);
      text-align: left;
      cursor: pointer;
      justify-content: space-between;
      align-items: center;
  }

  .filter-toggle svg {
      width: 20px;
      height: 20px;
      transition: transform 0.3s ease;
  }

  .filter-toggle.active svg {
      transform: rotate(180deg);
  }

  @media (max-width: 1023px) {
      .filter-toggle {
          display: flex;
      }

      .filter-content {
          display: none;
          margin-top: 15px;
          padding-top: 15px;
          border-top: 1px solid #eee;
      }

      .filter-content.active {
          display: flex;
      }
  }

  @media (min-width: 1024px) {
      .filter-bar {
          padding: 25px;
      }
  }

  .filter-select {
      padding: 12px 20px;
      border-radius: 50px;
      border: 1px solid #ddd;
      background-color: #fff;
      font-size: 0.9rem;
      font-weight: 600;
      color: var(--text-main);
      cursor: pointer;
      outline: none;
      min-width: 140px;
      background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23E7005A' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
      background-repeat: no-repeat;
      background-position: right 15px center;
      background-size: 14px;
      -webkit-appearance: none;
      appearance: none;
  }

  @media (min-width: 1024px) {
      .filter-select {
          width: 100%;
          border-radius: var(--radius-sm);
      }
  }

  .filter-select:hover,
  .filter-select:focus {
      border-color: var(--color-primary);
      background-color: var(--color-light-pink);
  }

  .result-count {
      width: 100%;
      text-align: center;
      font-size: 0.9rem;
      color: var(--text-muted);
      margin-top: 10px;
  }

  @media (min-width: 1024px) {
      .result-count {
          text-align: left;
          padding-top: 15px;
          border-top: 1px solid #eee;
          order: 10;
      }
  }

  /* --- PRODUCT GRID --- */
  .product-grid {
      display: grid;
      grid-template-columns: repeat(1, 1fr);
      gap: 20px;
  }

  @media (min-width: 768px) {
      .product-grid {
          grid-template-columns: repeat(2, 1fr);
      }
  }

  @media (min-width: 1024px) {
      .product-grid {
          grid-template-columns: repeat(3, 1fr);
          grid-auto-flow: dense;
      }
  }

  .product-card {
      background: var(--bg-card);
      border-radius: var(--radius-md);
      border: 1px solid transparent;
      overflow: hidden;
      display: flex;
      flex-direction: column;
      position: relative;
      box-shadow: var(--shadow-card);
      transition: all 0.3s ease;
  }

  .product-card:hover {
      transform: translateY(-5px);
      box-shadow: var(--shadow-hover);
      border-color: var(--color-primary);
  }

  .product-image-wrap {
      width: 100%;
      aspect-ratio: 4/3;
      overflow: hidden;
      background: #fff;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 15px;
      position: relative;
  }

  .product-image-wrap img {
      max-width: 100%;
      max-height: 100%;
      object-fit: contain;
      transition: transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  }

  .product-card:hover .product-image-wrap img {
      transform: scale(1.08);
  }

  .product-info {
      padding: 15px;
      display: flex;
      flex-direction: column;
      flex-grow: 1;
      background: #fff;
      border-top: 1px solid var(--border-subtle);
  }

  .product-brand {
      font-size: 0.7rem;
      text-transform: uppercase;
      font-weight: 800;
      color: var(--color-primary);
      letter-spacing: 1.5px;
      margin-bottom: 2px;
  }

  .product-title {
      font-size: 1.05rem;
      margin: 0 0 8px 0;
      color: var(--color-dark);
      font-weight: 700;
      display: -webkit-box;
      -webkit-line-clamp: 2;
      -webkit-box-orient: vertical;
      overflow: hidden;
      line-height: 1.3;
      height: 2.6em;
      text-decoration: none;
  }

  .price-wrapper {
      margin-top: auto;
      display: flex;
      align-items: baseline;
      gap: 10px;
      margin-bottom: 12px;
  }

  .current-price {
      font-size: 1.5rem;
      font-weight: 900;
      color: var(--color-dark);
      letter-spacing: -0.5px;
  }

  .old-price {
      font-size: 0.95rem;
      color: var(--text-muted);
      text-decoration: line-through;
      opacity: 0.6;
  }

  .btn-buy {
      width: 100%;
      background: var(--color-dark);
      color: #fff;
      text-align: center;
      padding: 12px;
      border-radius: var(--radius-sm);
      font-weight: 700;
      font-size: 0.85rem;
      transition: all 0.3s ease;
      text-transform: uppercase;
      letter-spacing: 1px;
      border: none;
  }

  .product-card:hover .btn-buy {
      background: var(--color-primary);
      transform: translateY(-2px);
      box-shadow: 0 5px 15px rgba(231, 0, 0, 0.2);
  }

  /* --- PROMO CARDS STYLING --- */
  .promo-card {
      background: var(--color-dark);
      color: #fff;
      padding: 40px 30px;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      text-align: center;
      border: none;
  }

  .promo-card.secondary {
      background: var(--color-light-pink);
      color: var(--color-dark);
      border: 1px solid var(--border-subtle);
  }

  .promo-card.secondary .promo-icon {
      background: rgba(0, 0, 0, 0.05);
      color: var(--color-primary);
  }

  .promo-card.secondary .promo-btn {
      background: var(--color-dark);
      color: #fff;
  }

  .promo-visual {
      margin-bottom: 25px;
  }

  .promo-icon {
      width: 64px;
      height: 64px;
      background: rgba(231, 0, 90, 0.1);
      color: var(--color-primary);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 15px;
  }

  .promo-card:not(.secondary) .promo-icon {
      background: rgba(255, 255, 255, 0.1);
      color: #fff;
  }

  .promo-title {
      font-family: var(--font-heading);
      font-size: 1.5rem;
      font-weight: 800;
      margin-bottom: 15px;
      line-height: 1.2;
  }

  .promo-text {
      font-size: 0.95rem;
      opacity: 0.9;
      margin-bottom: 25px;
      line-height: 1.5;
  }

  .promo-btn {
      background: var(--color-primary);
      color: #fff;
      padding: 12px 25px;
      border-radius: 50px;
      font-weight: 700;
      text-transform: uppercase;
      font-size: 0.8rem;
      letter-spacing: 1px;
      transition: all 0.3s ease;
  }

  .promo-btn:hover {
      transform: scale(1.05);
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  }

  @media (min-width: 1024px) {
      .promo-double {
          grid-column: 1 / span 2;
          /* Venstrestillet som standard */
          flex-direction: column !important;
          text-align: center !important;
          padding: 60px 40px !important;
          justify-content: center !important;
          gap: 30px;
      }

      .promo-right {
          grid-column: 2 / span 2;
          /* Højrestillet */
      }

      .promo-double .promo-visual {
          margin-bottom: 10px !important;
      }

      .promo-double .promo-content-wrap {
          align-items: center;
          max-width: 800px;
      }

      .promo-double .promo-title {
          font-size: 2.5rem;
          margin-bottom: 20px;
      }

      .promo-double .promo-text {
          font-size: 1.25rem;
          margin-bottom: 35px;
      }

      .promo-double .promo-icon {
          width: 100px;
          height: 100px;
      }

      .promo-double .promo-icon svg {
          width: 50px;
          height: 50px;
      }
  }

  .savings-badge {
      position: absolute;
      top: 15px;
      right: 15px;
      background: var(--color-primary);
      color: var(--color-accent);
      font-weight: 800;
      padding: 5px 12px;
      border-radius: 8px;
      font-size: 0.85rem;
      z-index: 5;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  }

  .savings-amount-badge {
      position: absolute;
      top: 50px;
      right: 15px;
      background: var(--color-dark);
      color: var(--color-primary);
      font-weight: 700;
      padding: 3px 10px;
      border-radius: 6px;
      font-size: 0.75rem;
      z-index: 5;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  }

  .mobile-filter-header,
  .filter-overlay {
      display: none;
  }

  @keyframes spin {
      100% {
          transform: rotate(360deg);
      }
  }

  /* Responsive Bento Overrides */
  @media (max-width: 768px) {
      .concept-section {
          display: none;
          /* Skjul USP på mobil for at få produkterne højere op */
      }

      .filter-section {
          margin-top: -50px;
          margin-bottom: 20px;
          position: sticky;
          top: 10px;
          z-index: 1000;
          padding: 0 10px;
      }

      .filter-bar {
          background: #fff;
          border-radius: 50px;
          padding: 10px 20px;
          box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
          display: flex;
          flex-direction: row;
          justify-content: space-between;
          align-items: center;
      }

      .filter-toggle {
          display: flex;
          width: auto;
          font-size: 0.9rem;
          font-weight: 700;
          color: var(--color-primary);
          padding: 5px 0;
      }

      /* Bottom Sheet Filter Mobile */
      .filter-content {
          position: fixed;
          bottom: -100%;
          left: 0;
          width: 100%;
          background: #fff;
          padding: 30px 20px 50px;
          border-radius: 30px 30px 0 0;
          box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.2);
          z-index: 2000;
          transition: bottom 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
          display: flex !important;
          flex-direction: column;
          gap: 20px;
      }

      .filter-content.active {
          bottom: 0;
      }

      .mobile-filter-header {
          display: flex;
          justify-content: space-between;
          align-items: center;
          margin-bottom: 10px;
      }

      .mobile-filter-header h3 {
          margin: 0;
          font-size: 1.2rem;
          color: var(--color-dark);
      }

      #closeFilters {
          background: var(--color-primary);
          color: #fff;
          border: none;
          padding: 10px 20px;
          border-radius: 50px;
          font-weight: 700;
          cursor: pointer;
      }

      .filter-overlay {
          position: fixed;
          top: 0;
          left: 0;
          width: 100%;
          height: 100%;
          background: rgba(0, 0, 0, 0.5);
          backdrop-filter: blur(4px);
          z-index: 1999;
          display: none;
      }

      .filter-overlay.active {
          display: block;
      }

      .result-count {
          width: auto;
          margin: 0;
          padding: 0;
          border: none;
          font-size: 0.8rem;
      }

      .campaign-hero {
          padding-top: 60px;
          padding-bottom: 80px;
          min-height: 350px;
      }

      .campaign-hero h1 {
          font-size: 2.2rem;
      }
  }

  /* --- BUNDLE SECTION STYLING --- */
  .bundle-section {
      background-color: var(--color-dark);
      padding: 100px 20px;
      color: white;
      position: relative;
  }

  .bundle-container {
      max-width: 1200px;
      margin: 0 auto;
  }

  .section-header {
      text-align: center;
      margin-bottom: 60px;
  }

  .section-header h2 {
      font-size: 3rem;
      margin: 10px 0;
      color: var(--color-primary);
  }

  .section-header p {
      font-size: 1.1rem;
      color: rgba(255, 255, 255, 0.7);
      max-width: 600px;
      margin: 0 auto;
  }

  .bundle-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 40px;
  }

  .bundle-card-featured {
      background: #1a1a1a;
      border-radius: var(--radius-lg);
      overflow: hidden;
      display: grid;
      grid-template-columns: 1fr;
      border: 1px solid rgba(231, 0, 90, 0.2);
      transition: transform 0.3s ease;
  }

  @media (min-width: 900px) {
      .bundle-card-featured {
          grid-template-columns: 45% 1fr;
      }

      .bundle-card-featured:nth-child(even) {
          grid-template-columns: 1fr 45%;
      }

      .bundle-card-featured:nth-child(even) .bundle-image-box {
          order: 2;
      }

      .bundle-card-featured:nth-child(even) .bundle-info-box {
          order: 1;
      }
  }

  .bundle-card-featured:hover {
      transform: scale(1.02);
      border-color: var(--color-primary);
  }

  .bundle-image-box {
      position: relative;
      background: #fff;
      padding: 20px;
      display: flex;
      align-items: center;
      justify-content: center;
  }

  .bundle-image-box img {
      max-width: 100%;
      height: auto;
      object-fit: contain;
  }

  .bundle-badge-top {
      position: absolute;
      top: 20px;
      left: 20px;
      background: var(--color-primary);
      color: white;
      padding: 8px 15px;
      border-radius: 50px;
      font-weight: 800;
      font-size: 0.9rem;
      z-index: 10;
  }

  .bundle-info-box {
      padding: 50px;
      display: flex;
      flex-direction: column;
  }

  .bundle-category {
      color: var(--color-primary);
      text-transform: uppercase;
      font-weight: 800;
      letter-spacing: 2px;
      font-size: 0.8rem;
      margin-bottom: 10px;
  }

  .bundle-info-box h3 {
      font-size: 2.2rem;
      margin-bottom: 20px;
  }

  .bundle-info-box p {
      color: rgba(255, 255, 255, 0.8);
      margin-bottom: 30px;
      font-size: 1.1rem;
  }

  .bundle-includes {
      list-style: none;
      padding: 0;
      margin: 0 0 40px 0;
  }

  .bundle-includes li {
      margin-bottom: 12px;
      display: flex;
      align-items: center;
      gap: 15px;
      font-weight: 600;
  }

  .bundle-includes li span {
      color: var(--color-primary);
      font-weight: 900;
  }

  .bundle-footer {
      margin-top: auto;
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 20px;
  }

  .bundle-price-tag {
      display: flex;
      flex-direction: column;
  }

  .price-old {
      color: rgba(255, 255, 255, 0.4);
      text-decoration: line-through;
      font-size: 1.1rem;
  }

  .price-current {
      font-size: 2.5rem;
      font-weight: 900;
      color: #fff;
  }

  .btn-bundle {
      background: var(--color-primary);
      color: white;
      padding: 18px 40px;
      border-radius: 50px;
      font-weight: 800;
      text-transform: uppercase;
      letter-spacing: 1px;
      transition: all 0.3s ease;
  }

  .btn-bundle:hover {
      background: #fff;
      color: var(--color-primary);
      transform: translateY(-3px);
      box-shadow: 0 10px 20px rgba(231, 0, 90, 0.3);
  }

  /* --- STORE SECTION STYLING --- */
  .store-section {
      background-color: #fff;
      padding: 100px 20px;
  }

  .store-container {
      max-width: 1200px;
      margin: 0 auto;
  }

  .section-header.dark h2 {
      color: var(--color-dark);
  }

  .section-header.dark p {
      color: var(--text-muted);
  }

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

  .store-card {
      background: var(--bg-body);
      padding: 30px;
      border-radius: var(--radius-md);
      border: 1px solid var(--border-subtle);
      display: flex;
      flex-direction: column;
      transition: all 0.3s ease;
  }

  .store-card:hover {
      transform: translateY(-5px);
      border-color: var(--color-primary);
      box-shadow: var(--shadow-card);
  }

  .store-card h3 {
      font-size: 1.5rem;
      margin: 0 0 10px 0;
      color: var(--color-dark);
  }

  .store-address {
      font-size: 0.95rem;
      color: var(--text-muted);
      margin-bottom: 20px;
      font-weight: 500;
  }

  .store-contact {
      display: flex;
      flex-direction: column;
      gap: 8px;
      margin-bottom: 25px;
      padding-bottom: 20px;
      border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  }

  .store-contact a {
      color: var(--color-primary);
      font-weight: 600;
      font-size: 0.9rem;
      text-decoration: none;
  }

  .store-contact a:hover {
      text-decoration: underline;
  }

  .btn-maps {
      margin-top: auto;
      color: var(--color-dark);
      font-weight: 800;
      font-size: 0.85rem;
      text-transform: uppercase;
      letter-spacing: 1px;
      display: flex;
      align-items: center;
      gap: 5px;
  }

  .btn-maps:hover {
      color: var(--color-primary);
  }

  /* --- NEAREST STORE HIGHLIGHT --- */
  .store-card.is-nearest {
      border: 2px solid var(--color-primary);
      position: relative;
      transform: scale(1.02);
      box-shadow: 0 10px 25px rgba(231, 0, 90, 0.1);
  }

  .nearest-badge {
      position: absolute;
      top: -12px;
      left: 20px;
      background: var(--color-primary);
      color: #fff;
      padding: 4px 15px;
      border-radius: 50px;
      font-size: 0.75rem;
      font-weight: 800;
      text-transform: uppercase;
      letter-spacing: 1px;
      box-shadow: 0 4px 10px rgba(231, 0, 90, 0.2);
  }

  @media (max-width: 768px) {
      .store-section {
          padding: 60px 15px;
      }

      .section-header h2 {
          font-size: 2rem;
      }
  }
/* --- ANYDAY FINANSIERING THEME --- */

:root {
  --brand: #00589d;
  --brand-dark: #00447a;
  --anyday: #1B1A19;
  --accent: #2486f0;
  --bg-light: #fcfbfa;
  --text-primary: #111111;
  --text-secondary: #555555;
  --text-muted: #888888;
  --border-color: rgba(0, 0, 0, 0.06);
  --success: #1f8c2f;
  --radius-lg: 24px;
  --radius-md: 16px;

  /* Anyday-inspired Pastel Palette */
  --anyday-mint: #e6f7f1;
  --anyday-sand: #f9f6f0;
  --anyday-blue: #f0f4ff;

  /* Resurs Bank Branding */
  --resurs: #003057;
  --resurs-light: #e6edf2;

  /* High-end Motion Choreography */
  --ease-out: cubic-bezier(0.23, 1, 0.32, 1);
  --ease-in-out: cubic-bezier(0.77, 0, 0.175, 1);
  --spring: cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.anyday-page-body {
  font-family: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  background-color: #ffffff;
  color: var(--text-primary);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.6;
}

/* Global Animation Classes */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  filter: blur(4px);
  transition: opacity 800ms var(--ease-out), transform 800ms var(--ease-out), filter 800ms var(--ease-out);
  will-change: transform, opacity, filter;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

.stagger-grid>* {
  opacity: 0;
  transform: translateY(15px);
  transition: opacity 600ms var(--ease-out), transform 600ms var(--ease-out);
}

.stagger-grid.visible>*:nth-child(1) { transition-delay: 0ms; opacity: 1; transform: translateY(0); }
.stagger-grid.visible>*:nth-child(2) { transition-delay: 100ms; opacity: 1; transform: translateY(0); }
.stagger-grid.visible>*:nth-child(3) { transition-delay: 200ms; opacity: 1; transform: translateY(0); }
.stagger-grid.visible>*:nth-child(4) { transition-delay: 300ms; opacity: 1; transform: translateY(0); }

/* Hero Section */
.anyday-hero {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  min-height: 650px;
  background: #ffffff;
  position: relative;
  overflow: hidden;
}

.anyday-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
  opacity: 0.015;
  pointer-events: none;
  z-index: 5;
}

.anyday-hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 100px 8vw;
  background: #ffffff;
  position: relative;
  z-index: 10;
  animation: heroFadeUp 800ms var(--ease-out) forwards;
}

@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(20px); filter: blur(4px); }
  to { opacity: 1; transform: translateY(0); filter: blur(0); }
}

.anyday-hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px;
  background: var(--bg-light);
  position: relative;
}

.hero-image-frame {
  width: 100%;
  height: 100%;
  min-height: 500px;
  background: #fff;
  padding: 12px;
  border-radius: 40px;
  border: 1px solid var(--border-color);
  box-shadow: 0 30px 60px -12px rgba(0, 0, 0, 0.1), inset 0 1px 1px rgba(255, 255, 255, 1);
  position: relative;
  overflow: hidden;
  animation: scaleIn 1500ms var(--ease-out) forwards;
}

@keyframes scaleIn {
  from { transform: scale(1.1); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

.anyday-hero-image {
  width: 100%;
  height: 100%;
  background-image: url('https://designcykler.dk//images/total-service-top-bg2.jpg');
  background-size: cover;
  background-position: center;
  border-radius: 30px;
}

.floating-badge {
  --x-pos: 0px;
  position: absolute;
  bottom: 40px;
  left: -30px;
  background: #ffffff;
  padding: 15px 25px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  border: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 20;
  animation: heroFadeUp 800ms var(--ease-out) 400ms backwards, floatBounce 4s ease-in-out 1200ms infinite;
}

@keyframes floatBounce {
  0%, 100% { transform: translateX(var(--x-pos)) translateY(0); }
  50% { transform: translateX(var(--x-pos)) translateY(-15px); }
}

.floating-badge img.badge-anyday { height: 32px; }
.floating-badge img.badge-resurs {
  height: 28px;
  margin-left: 15px;
  padding-left: 15px;
  border-left: 1px solid var(--border-color);
}

.floating-badge span { font-weight: 800; font-size: 14px; color: var(--text-primary); }
.eyebrow { font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.15em; color: var(--brand); margin-bottom: 20px; display: block; }

.anyday-header h1 {
  font-size: clamp(48px, 6vw, 80px);
  font-weight: 800;
  color: var(--text-primary);
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 30px;
}

.anyday-header h1 span.highlight { position: relative; display: inline-block; }
.anyday-header h1 span.highlight::after {
  content: "";
  position: absolute;
  bottom: 10%;
  left: 0;
  width: 100%;
  height: 35%;
  background-color: var(--anyday-mint);
  z-index: -1;
  transform: scaleX(0);
  transform-origin: right;
  animation: highlightGrow 1000ms var(--ease-out) 1200ms forwards;
}

@keyframes highlightGrow { to { transform: scaleX(1); } }
.anyday-header p { font-size: 19px; line-height: 1.6; color: var(--text-secondary); max-width: 520px; margin-bottom: 40px; }

.security-bar { display: flex; align-items: center; gap: 25px; }
.security-bar img { height: 24px; width: auto; }
.security-label { font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--text-muted); }

.section-pad { padding: 140px 28px; }
.section-heading { font-size: clamp(32px, 4vw, 44px); font-weight: 800; color: var(--text-primary); margin-bottom: 16px; letter-spacing: -0.02em; line-height: 1.1; }
.section-subtitle { font-size: 18px; color: var(--text-secondary); max-width: 600px; margin: 0 auto; line-height: 1.7; }
.section-header-center { text-align: center; margin-bottom: 80px; }

/* Calculator */
.calc-section { background: var(--bg-light); border-bottom: 1px solid var(--border-color); }
.calc-container {
  max-width: 1000px;
  margin: 0 auto;
  background: #ffffff;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-color);
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 1), 0 20px 60px rgba(0, 0, 0, 0.04);
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  overflow: hidden;
}

.calc-input-side { padding: 60px; border-right: 1px solid var(--border-color); }
.provider-tabs { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 40px; background: var(--bg-light); padding: 6px; border-radius: 14px; border: 1px solid var(--border-color); }
.anyday-page-body .tab-btn.tab-btn { padding: 14px; border: none !important; background: none !important; border-radius: 10px; font-family: inherit; font-weight: 700; font-size: 14px; cursor: pointer; transition: all 200ms var(--ease-out); color: var(--text-muted) !important; display: flex; align-items: center; justify-content: center; gap: 8px; text-decoration: none !important; }
.anyday-page-body .tab-btn img { height: 20px; filter: grayscale(1) opacity(0.5); transition: all 200ms var(--ease-out); }
.anyday-page-body .tab-btn.active.active { background-color: #ffffff !important; color: var(--text-primary) !important; box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05); }
.anyday-page-body .tab-btn.active.active img { filter: none; }

.result-pane { display: none; animation: fadeIn 300ms var(--ease-out); }
.result-pane.active { display: block; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }

.calc-result-side { padding: 60px; background: linear-gradient(145deg, #faf9f8 0%, #f0f2f5 100%); }
.calc-label { display: block; font-size: 13px; font-weight: 700; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 16px; }

.price-input-wrap { position: relative; margin-bottom: 32px; }
.price-input-wrap input {
  width: 100%;
  padding: 24px;
  font-size: 36px;
  font-family: inherit;
  font-weight: 800;
  border: 2px solid var(--border-color);
  border-radius: var(--radius-md);
  outline: none;
  background: #ffffff;
  color: var(--brand);
  transition: all 200ms var(--ease-out);
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.02);
}

.price-input-wrap input:focus { border-color: var(--brand); box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.02), 0 0 0 4px rgba(0, 88, 157, 0.1); }
.price-input-wrap span { position: absolute; right: 24px; top: 50%; transform: translateY(-50%); font-size: 20px; font-weight: 700; color: var(--text-muted); }
.calc-info { font-size: 15px; color: var(--text-secondary); line-height: 1.7; }

.result-item { display: flex; justify-content: space-between; margin-bottom: 20px; font-size: 16px; color: var(--text-secondary); font-weight: 500; }
.result-item.total { margin-top: 40px; padding-top: 30px; border-top: 1px solid var(--border-color); color: var(--text-primary); font-weight: 800; font-size: 20px; }
.result-price { font-weight: 700; color: var(--text-primary); }

/* USP & Steps */
.usp-section { background: #ffffff; border-bottom: 1px solid var(--border-color); }
.usp-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; max-width: 1200px; margin: 0 auto; }
.usp-item { display: flex; flex-direction: column; padding: 48px; border-radius: var(--radius-lg); transition: transform 300ms var(--ease-out); }
.usp-item:hover { transform: translateY(-5px); }

.anyday-usp .usp-item:nth-child(1) { background-color: var(--anyday-mint); }
.anyday-usp .usp-item:nth-child(2) { background-color: var(--anyday-sand); }
.anyday-usp .usp-item:nth-child(3) { background-color: var(--anyday-blue); }

.usp-item .icon { width: 40px; height: 40px; color: var(--brand); margin-bottom: 24px; stroke-width: 1.5; }
.usp-item h3 { font-size: 22px; font-weight: 700; margin-bottom: 16px; letter-spacing: -0.01em; }
.usp-item p { font-size: 15px; color: var(--text-secondary); line-height: 1.6; }

.steps-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 24px; max-width: 1200px; margin: 0 auto; }
.step-item { background: #ffffff; padding: 40px 30px; border-radius: var(--radius-lg); border: 1px solid var(--border-color); transition: all 300ms var(--ease-out); display: flex; flex-direction: column; align-items: center; text-align: center; }
.step-item:hover { border-color: var(--brand); box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04); }
.step-number { width: 56px; height: 56px; background: var(--brand); color: #ffffff; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 20px; margin: 0 auto 30px; box-shadow: 0 8px 20px rgba(0, 88, 157, 0.2); }
.step-item h3 { font-size: 20px; font-weight: 700; margin-bottom: 12px; letter-spacing: -0.01em; }
.step-item p { font-size: 15px; color: var(--text-secondary); }

.info-section { background-color: var(--anyday-sand); color: var(--text-primary); }
.info-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 40px; max-width: 1200px; margin: 0 auto; }
.info-item { background: #ffffff; padding: 40px; border-radius: var(--radius-lg); box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02); }
.info-item h3 { font-size: 20px; margin-bottom: 16px; font-weight: 700; color: var(--brand); }
.info-item p { font-size: 16px; line-height: 1.7; opacity: 0.85; }

/* FAQ */
.faq-grid { max-width: 800px; margin: 0 auto; }
.faq-item { background: #ffffff; border: 1px solid var(--border-color); border-radius: var(--radius-md); margin-bottom: 16px; overflow: hidden; box-shadow: 0 2px 10px rgba(0, 0, 0, 0.01); transition: transform 160ms var(--ease-out); }
.faq-toggle { width: 100%; padding: 28px 32px; border: none; background: none; cursor: pointer; display: flex; justify-content: space-between; align-items: center; font-size: 18px; font-weight: 700; text-align: left; color: var(--text-primary); font-family: inherit; }
.faq-toggle:hover { background-color: #fafafa; }
.faq-content { display: grid !important; grid-template-rows: 0fr; transition: grid-template-rows 350ms var(--ease-out); font-size: 16px; color: var(--text-secondary); line-height: 1.7; }
.faq-content-inner { overflow: hidden; padding: 0 32px; transition: padding 350ms var(--ease-out); }
details[open] .faq-content { grid-template-rows: 1fr; }
details[open] .faq-content-inner { padding: 0 32px 32px; }
.faq-icon { font-size: 24px; font-weight: 300; color: var(--text-muted); transition: transform 300ms var(--ease-out); }
details[open] .faq-icon { transform: rotate(45deg); }

/* CTA */
.cta-section {
  background: #ffffff;
  text-align: center;
}

.cta-content {
  max-width: 700px;
  margin: 0 auto;
}

/* CTA & Button Physics - Forced for CMS */
.anyday-page-body .cta-btn.cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: var(--brand) !important;
  color: #ffffff !important;
  padding: 20px 48px;
  border-radius: 100px;
  font-weight: 700;
  font-size: 18px;
  text-decoration: none !important;
  letter-spacing: 0.02em;
  margin-top: 40px;
  transition: all 200ms var(--ease-out);
  box-shadow: 0 10px 30px rgba(0, 88, 157, 0.2);
}

.anyday-page-body .cta-btn:hover {
  background-color: var(--brand-dark) !important;
  color: #ffffff !important;
  transform: scale(1.02);
  box-shadow: 0 15px 40px rgba(0, 88, 157, 0.25);
  text-decoration: none !important;
}

.anyday-page-body .cta-btn:active {
  transform: scale(0.97);
}
.footer-note { margin-top: 60px; font-size: 13px; color: var(--text-muted); max-width: 600px; margin-left: auto; margin-right: auto; text-align: center; }

@media (max-width: 1024px) {
  .anyday-hero { grid-template-columns: 1fr; }
  .anyday-hero-visual { padding: 40px 20px; order: 2; }
  .hero-image-frame { min-height: 350px; }
  .anyday-hero-content { padding: 80px 40px; order: 1; text-align: center; }
  .anyday-header p { margin: 0 auto 40px; }
  .calc-container { grid-template-columns: 1fr; }
  .calc-input-side { border-right: none; border-bottom: 1px solid var(--border-color); padding: 40px 30px; }
  .calc-result-side { padding: 40px 30px; }
  .floating-badge { --x-pos: -50%; left: 50%; bottom: 60px; }
  .security-bar { justify-content: center; }
}

@media (max-width: 768px) {
  .section-pad { padding: 80px 24px; }
  .anyday-header h1 { font-size: 40px; }
  .anyday-header p { font-size: 16px; }
  .price-input-wrap input { font-size: 28px; padding: 16px; }
}
