/* ============================================
   RETAIL SYSTEM STYLES
   ============================================ */

/* ===== RETAIL LOGIN PAGE ===== */
.retail-login-page {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 20px;
  background-color: #111111;
}

.retail-login-container {
  max-width: 460px;
  width: 100%;
}

/* Header */
.retail-login-header {
  text-align: center;
  margin-bottom: 40px;
}

.retail-login-header h1 {
  font-size: 2.4rem;
  margin: 0 0 15px 0;
  color: #fff;
  text-transform: uppercase;
  font-family: "CustomHeadingFont", sans-serif;
}

.retail-login-header p {
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  margin: 0;
}

/* Form wrapper */
.retail-login-form-wrapper {
  margin-bottom: 30px;
}

/* Error / success messages */
.retail-login-error {
  background: rgba(220, 53, 69, 0.12);
  border: 1px solid rgba(220, 53, 69, 0.3);
  color: #ff6b6b;
  padding: 12px 16px;
  border-radius: 8px;
  margin-bottom: 20px;
  font-size: 14px;
  backdrop-filter: blur(10px);
}

.retail-login-success {
  background: rgba(40, 167, 69, 0.12);
  border: 1px solid rgba(40, 167, 69, 0.3);
  color: #51cf66;
  padding: 12px 16px;
  border-radius: 8px;
  margin-bottom: 20px;
  font-size: 14px;
  backdrop-filter: blur(10px);
}

/* Field groups */
.retail-field-group {
  margin-bottom: 20px;
}

.retail-field-group label {
  display: block;
  margin-bottom: 8px;
  color: #ccc;
  font-size: 14px;
  font-weight: 500;
}

/* Glass effect inputs */
.retail-input {
  width: 100%;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  font-size: 15px;
  color: #fff;
  box-sizing: border-box;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition:
    background 0.3s,
    border-color 0.3s,
    box-shadow 0.3s;
}

.retail-input::placeholder {
  color: rgba(255, 255, 255, 0.35);
}

.retail-input:focus {
  outline: none;
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--accentColor);
  box-shadow: 0 0 0 3px rgba(255, 94, 0, 0.15);
}

/* Form actions */
.retail-form-actions {
  margin-top: 24px;
}

.retail-remember-me {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  cursor: pointer;
  color: rgba(255, 255, 255, 0.5);
  font-size: 14px;
}

.retail-remember-me input[type="checkbox"] {
  accent-color: var(--accentColor);
}

/* Login button */
.retail-login-btn {
  width: 100%;
  padding: 14px;
  background: var(--accentColor);
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition:
    opacity 0.3s,
    transform 0.15s;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-family: "CustomHeadingFont", sans-serif;
}

.retail-login-btn:hover {
  opacity: 0.9;
}

/* Lost password */
.retail-lost-password {
  text-align: center;
  margin-top: 16px;
}

.retail-lost-password a {
  color: rgba(255, 255, 255, 0.4);
  font-size: 13px;
  text-decoration: none;
  transition: color 0.3s;
}

.retail-lost-password a:hover {
  color: var(--accentColor);
}

/* Info box - Bli återförsäljare (glass) */
.retail-login-info {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 28px;
  border-radius: 10px;
  margin-top: 30px;
  text-align: center;
}

.retail-login-info h3 {
  font-size: 18px;
  margin: 0 0 10px 0;
  color: #fff;
  font-family: "CustomHeadingFont", sans-serif;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.retail-login-info p {
  color: rgba(255, 255, 255, 0.55);
  font-size: 14px;
  line-height: 1.6;
  margin: 0 0 8px 0;
}

.retail-contact-info {
  margin-top: 16px;
  color: rgba(255, 255, 255, 0.55);
}

.retail-contact-info p {
  margin: 4px 0;
}

.retail-contact-info a {
  color: var(--accentColor);
  text-decoration: none;
  transition: opacity 0.3s;
}

.retail-contact-info a:hover {
  opacity: 0.8;
}

/* Responsive */
@media (max-width: 560px) {
  .retail-login-header h1 {
    font-size: 1.6rem;
    letter-spacing: 2px;
  }
}

.retail-benefits {
  background: #fff;
  padding: 20px;
  border: 2px solid #e1e8ed;
  border-radius: 8px;
}

.retail-benefits h3 {
  font-size: 18px;
  margin-bottom: 15px;
  color: #333;
}

.retail-benefits ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.retail-benefits li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  color: #555;
}

.retail-benefits li svg {
  color: var(--accentColor, #007bff);
  flex-shrink: 0;
}

/* ===== RETAIL DASHBOARD PAGE ===== */
.retail-dashboard-page {
  background: #f8f9fa;
  min-height: 80vh;
}

.retail-dashboard-header {
  text-align: center;
  margin-bottom: 40px;
}

.retail-dashboard-header h1 {
  font-size: 36px;
  margin-bottom: 10px;
  color: #333;
}

.retail-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #d4edda;
  color: #155724;
  padding: 10px 20px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
}

.retail-dashboard-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-bottom: 50px;
}

.retail-dashboard-card {
  background: white;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  text-decoration: none;
  transition: all 0.3s;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.retail-dashboard-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.retail-card-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.retail-card-icon img,
.retail-card-icon svg {
  width: 100%;
  height: 100%;
  color: var(--accentColor, #007bff);
}

.retail-dashboard-card h3 {
  font-size: 20px;
  margin-bottom: 10px;
  color: #333;
}

.retail-dashboard-card p {
  color: #666;
  font-size: 14px;
  margin-bottom: 15px;
  flex-grow: 1;
}

.retail-card-arrow {
  font-size: 24px;
  color: var(--accentColor, #007bff);
  position: absolute;
  bottom: 20px;
  right: 20px;
}

.retail-latest-products {
  margin-bottom: 50px;
}

.retail-latest-products h2 {
  font-size: 28px;
  margin-bottom: 30px;
  color: #333;
}

.retail-products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 24px;
}

/* Visa mer knapp */
.retail-load-more-container {
  grid-column: 1 / -1;
  display: flex;
  justify-content: center;
  margin-top: 20px;
}

.retail-load-more-btn {
  background: var(--accentColor, #007bff);
  color: white;
  border: none;
  padding: 12px 32px;
  font-size: 18px;
  font-family: "CustomHeadingFont", sans-serif;
  cursor: pointer;
  transition: all 0.3s ease;
}

.retail-load-more-btn:hover {
  background: #000;
}

.retail-quick-links {
  background: white;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.retail-quick-links h2 {
  font-size: 24px;
  margin-bottom: 20px;
  color: #333;
}

.retail-links-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 15px;
}

.retail-quick-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 20px;
  background: #f8f9fa;
  border-radius: 8px;
  text-decoration: none;
  color: #333;
  transition: all 0.3s;
}

.retail-quick-link:hover {
  background: var(--accentColor, #007bff);
  color: white;
}

.retail-quick-link svg {
  transition: transform 0.3s;
}

.retail-quick-link:hover svg {
  transform: translateX(5px);
}

/* ===== RETAIL SHOP PAGE ===== */
.retail-shop-page {
  background: #f8f9fa;
  min-height: 80vh;
}

.retail-shop-hero {
  background: linear-gradient(
    135deg,
    var(--accentColor, #007bff) 0%,
    #0056b3 100%
  );
  color: white;
  padding: 60px 0;
  text-align: center;
}

.retail-hero-content h1 {
  font-size: 42px;
  margin-bottom: 15px;
}

.retail-hero-content p {
  font-size: 18px;
  opacity: 0.9;
}

.retail-categories-section {
  padding: 50px 0;
}

.retail-categories-section h2 {
  font-size: 32px;
  margin-bottom: 30px;
  color: #333;
}

.retail-categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
  margin-bottom: 50px;
}

.retail-category-card {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  text-decoration: none;
  display: block;
  transition: transform 0.3s;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.retail-category-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.retail-category-image {
  height: 200px;
  background-size: cover;
  background-position: center;
  position: relative;
}

.retail-category-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.2),
    rgba(0, 0, 0, 0.6)
  );
}

.retail-category-info {
  padding: 20px;
  background: white;
}

.retail-category-info h3 {
  font-size: 18px;
  margin-bottom: 5px;
  color: #333;
}

.retail-category-count {
  font-size: 14px;
  color: #666;
}

.retail-all-products-section {
  padding: 50px 0;
}

.retail-section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
}

.retail-product-count {
  background: var(--accentColor, #007bff);
  color: white;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
}

.retail-no-products {
  text-align: center;
  padding: 60px 20px;
  background: white;
  border-radius: 12px;
}

.retail-no-products p {
  font-size: 16px;
  color: #666;
  margin: 10px 0;
}

.retail-pagination {
  margin-top: 40px;
  text-align: center;
}

.retail-pagination .page-numbers {
  display: inline-block;
  padding: 10px 15px;
  margin: 0 5px;
  background: white;
  border: 2px solid #e1e8ed;
  border-radius: 6px;
  text-decoration: none;
  color: #333;
  transition: all 0.3s;
}

.retail-pagination .page-numbers:hover,
.retail-pagination .page-numbers.current {
  background: var(--accentColor, #007bff);
  color: white;
  border-color: var(--accentColor, #007bff);
}

/* ===== RESPONSIVE STYLES ===== */
@media (max-width: 768px) {
  .retail-login-container {
    padding: 0;
  }

  .retail-dashboard-header h1 {
    font-size: 28px;
  }

  .retail-dashboard-cards {
    grid-template-columns: 1fr;
  }

  .retail-hero-content h1 {
    font-size: 32px;
  }

  .retail-categories-grid {
    grid-template-columns: 1fr;
  }

  .retail-section-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }

  .retail-products-grid {
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 15px;
  }

  .retail-links-grid {
    grid-template-columns: 1fr;
  }
}

/* ===== BODY CLASS SPECIFIC STYLES ===== */
body.retail-user
  .woocommerce-MyAccount-navigation
  ul
  li.woocommerce-MyAccount-navigation-link--retail-shop {
  background: var(--accentColor, #007bff);
}

body.retail-user
  .woocommerce-MyAccount-navigation
  ul
  li.woocommerce-MyAccount-navigation-link--retail-shop
  a {
  color: white;
}

body.retail-subdomain .topbar {
  background: var(--accentColor, #007bff);
  color: white;
}

/* ===== RETAIL BADGE ON PRODUCTS ===== */
.retail-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  background: var(--accentColor, #007bff);
  color: white;
  padding: 5px 12px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  z-index: 10;
  letter-spacing: 0.5px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.product.retail-only {
  position: relative;
}

/* Dölj retail-produkter för icke-retail användare */
body:not(.retail-user) .product.retail-only {
  display: none !important;
}

/* ===== RETAIL DASHBOARD PAGE STYLES ===== */

/* Dölj breadcrumbs och annan WooCommerce-output på retail-sidor */
.woocommerce-breadcrumb {
  display: none;
}

/* Säkerställ att retail-dashboard syns korrekt */
.retail-dashboard-page {
  background: #fcfcfc;
  min-height: 80vh;
}

.retail-dashboard-header {
  text-align: center;
  margin-bottom: 40px;
}

.retail-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 0.4;
  z-index: 1;
}

.retail-dashboard-header h1 {
  font-size: 36px;
  margin-bottom: 10px;
  color: #333;
}

.retail-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #d4edda;
  color: #155724;
  padding: 10px 20px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
}

.retail-dashboard-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-bottom: 50px;
}

.retail-dashboard-card {
  background: white;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  text-decoration: none;
  transition: all 0.3s;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.retail-dashboard-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.retail-card-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.retail-card-icon img,
.retail-card-icon svg {
  width: 100%;
  height: 100%;
  color: var(--accentColor, #007bff);
}

.retail-dashboard-card h3 {
  font-size: 20px;
  margin-bottom: 10px;
  color: #333;
}

.retail-dashboard-card p {
  color: #666;
  font-size: 14px;
  margin-bottom: 15px;
  flex-grow: 1;
}

.retail-card-arrow {
  font-size: 24px;
  color: var(--accentColor, #007bff);
  position: absolute;
  bottom: 20px;
  right: 20px;
}

.retail-latest-products {
  margin-bottom: 50px;
}

.retail-latest-products h2 {
  font-size: 28px;
  margin-bottom: 30px;
  color: #333;
}

/* Produkt-filtrering */
.retail-product-filters {
  max-width: 1400px;
  margin: 0 auto 30px;
  padding: 0 20px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  border-top: 1px solid #e0e0e0;
  padding-top: 2rem;
}

.retail-filter-btn {
  border: 2px solid #333;
  background: transparent;
  color: #333;
  font-size: 20px;
  font-family: "CustomHeadingFont", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: all 0.3s;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 0;
  padding: 1.4rem 2rem;
}

.retail-filter-btn:hover {
  background: #333;
  color: white;
}

.retail-filter-btn.active {
  background: var(--accentColor, #ff5e00);
  border-color: var(--accentColor, #ff5e00);
  color: white;
}

/* Produkt Grid - 4 per rad, max 8 produkter */
.retail-products-grid {
  display: none;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

@media (max-width: 768px) {
  .retail-products-grid {
    padding: 0;
  }
}

.retail-products-grid.active {
  display: grid;
}

.retail-product-item {
  background: white;
  border: 1px solid #e0e0e0;
  overflow: hidden;
  transition: all 0.3s;
  position: relative;
  display: flex;
  flex-direction: column;
}

.retail-product-item:hover {
  transform: translateY(-2px);
}

.retail-product-item .retail-product-card-link {
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.retail-product-item .retail-add-to-cart-wrap {
  padding: 0 15px 15px;
}

.retail-product-item .retail-add-to-cart-wrap .button {
  width: 90%;
  border: 1px solid var(--accentColor3);
  background: transparent;
  color: #000;
  text-decoration: none;
  border-radius: 0px;
  text-align: end;
  font-size: 18px;
  line-height: 1.2;
  padding: 10px 14px;
  text-transform: uppercase;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  transition: all 0.2s ease;
  font-family: "CustomHeadingFont", sans-serif;
}

.retail-product-item .retail-add-to-cart-wrap .button:hover {
  background: #000;
  color: #fff;
}

.retail-product-item .retail-add-to-cart-wrap .added_to_cart {
  display: inline-block;
  margin-top: 8px;
  font-size: 13px;
}

.retail-product-item .product-image-container {
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: #f5f5f5;
  position: relative;
}

.retail-product-item .product-image-container img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: white;
}

.retail-products-section {
  padding: 40px 20px;
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .retail-products-section {
    padding: 40px 0px;
  }
}

.retail-quick-links {
  background: white;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.retail-quick-links h2 {
  font-size: 24px;
  margin-bottom: 20px;
  color: #333;
}

.retail-links-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 15px;
}

.retail-quick-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 20px;
  background: #f8f9fa;
  border-radius: 8px;
  text-decoration: none;
  color: #333;
  transition: all 0.3s;
}

.retail-quick-link:hover {
  background: var(--accentColor, #007bff);
  color: white;
}

.title-stock-div-retail {
  padding: 15px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex-grow: 1;
}

.title-stock-div-retail h2 {
  font-size: 25px;
  margin: 0;
  line-height: 1.3;
  min-height: 40px;
  padding: 0 !important;
}

.title-stock-div-retail .stock-status {
  font-size: 12px;
  display: flex;
  align-items: center;
  gap: 5px;
}

.title-stock-div-retail .cta-div {
  margin-top: auto;
  padding: 0;
}

.title-stock-div-retail .price {
  font-size: 20px;
  font-family: "CustomHeadingFont", sans-serif;
}

.retail-taxonomy-grid-wrapper {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Smooth scroll */
html {
  scroll-behavior: smooth;
}

/* Hero Section */
.retail-hero-section {
  padding: 80px 0 100px 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 50vh;
}

/* Jumping arrow animation (samma som startsidan) */
.retail-hero-section::after {
  content: "";
  position: absolute;
  bottom: 50px;
  left: 50%;
  transform: translateX(-50%);
  width: 30px;
  height: 30px;
  background-image: url("/wp-content/uploads/2025/02/arrow-jumping.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  animation: jumpAnimation 1.5s infinite ease-in-out;
  z-index: 3;
}

@keyframes jumpAnimation {
  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }
  50% {
    transform: translateX(-50%) translateY(10px);
  }
}

@media (max-width: 768px) {
  .retail-hero-section {
    min-height: 60vh;
    padding: 60px 0 80px 0;
  }

  .retail-hero-section::after {
    bottom: 35px;
  }
}

.retail-hero-content {
  text-align: left;
  color: white;
  position: relative;
  z-index: 2;
  max-width: 1600px;
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
}

/* Företagsinformation - Header sektion */
.retail-company-header {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 20px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.retail-company-logo {
  max-width: 200px;
  min-width: 120px;
  height: auto;
  display: flex;
  align-items: center;
}

.retail-company-logo img {
  width: 100%;
  height: auto;
  max-height: 80px;
  object-fit: contain;
  object-position: left center;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.3));
  background: rgba(255, 255, 255, 0.95);
  padding: 15px 20px;
  border-radius: 8px;
}

.retail-profile-picture {
  width: 200px;
  height: auto;
  padding: 5px 1rem;
  flex-shrink: 0;
  overflow: hidden;
  background-color: white;
  position: relative;
  border-radius: 5px;
  border: 3px solid rgba(255, 255, 255, 0.9);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.retail-profile-picture img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media (max-width: 768px) {
  .retail-company-header {
    margin-bottom: 20px;
  }

  .retail-company-logo {
    max-width: 160px;
    min-width: 100px;
  }

  .retail-company-logo img {
    max-height: 60px;
    padding: 12px 16px;
  }
}

.retail-hero-content h1 {
  font-size: 5rem;
  margin: 0;
  margin-bottom: 20px;
  font-weight: 700;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 15px;
  flex-wrap: wrap;
}

.retail-hero-content h1 .company-name {
  color: var(--accentColor, #ff5e00);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

@media (max-width: 992px) {
  .retail-hero-content h1 {
    font-size: 4rem;
  }
}

@media (max-width: 768px) {
  .retail-hero-content h1 {
    font-size: 2.5rem;
  }
}

.retail-hero-content > p {
  font-size: 30px;
  max-width: 600px;
  margin: 0;
  margin-bottom: 30px;
  line-height: 1.4;
}

/* Guld stämpel / Verified Badge */
.verified-retailer-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accentColor, #ff5e00);
  color: #fff;
  padding: 10px 16px;
  border-radius: 30px;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 25px;
  box-shadow: 0 2px 8px rgba(255, 94, 0, 0.3);
}

.verified-retailer-badge svg {
  width: 20px;
  height: 20px;
  stroke: #fff;
  filter: drop-shadow(0 0 3px rgba(255, 255, 255, 0.5));
}

/* Modern Prisförklaring Badge */
.retail-price-badge-info {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  background: linear-gradient(135deg, #ff5e00 0%, #ff7a2e 100%);
  padding: 16px 24px;
  border-radius: 12px;
  margin-bottom: 40px;
  box-shadow: 0 4px 12px rgba(255, 94, 0, 0.25);
  transition: all 0.3s ease;
}

.retail-price-badge-info:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(255, 94, 0, 0.35);
}

.retail-price-badge-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  flex-shrink: 0;
}

.retail-price-badge-icon svg {
  width: 28px;
  height: 28px;
  color: #fff;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.retail-price-badge-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.retail-price-badge-label {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.3px;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.retail-price-badge-description {
  font-size: 13px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
  letter-spacing: 0.2px;
}

@media (max-width: 768px) {
  .retail-price-badge-info {
    padding: 14px 20px;
    gap: 12px;
  }

  .retail-price-badge-icon {
    width: 40px;
    height: 40px;
  }

  .retail-price-badge-icon svg {
    width: 24px;
    height: 24px;
  }

  .retail-price-badge-label {
    font-size: 15px;
  }

  .retail-price-badge-description {
    font-size: 12px;
  }
}

.retail-hero-stats {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  margin-top: 30px;
  display: none;
}

.stat-item {
  text-align: center;
}

.stat-item .stat-number {
  font-size: 32px;
}

.stat-item .stat-label {
  font-size: 14px;
  opacity: 0.9;
}

/* Section Headers */
.retail-section-header {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
  padding: 0 20px;
}

@media (max-width: 768px) {
  .retail-section-header {
    display: block;
  }
}

.retail-section-header h2 {
  font-size: 80px;
  margin: 0;
  margin-bottom: 0px;
  font-weight: 700;
  text-transform: uppercase;
}

@media (max-width: 768px) {
  .retail-section-header h2 {
    font-size: 52px;
  }
}

.retail-category-section h2 {
  color: #000;
}

.retail-section-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: "CustomHeadingFont", sans-serif;
  padding: 12px 24px;
  background: white;
  color: white;
  text-decoration: none;
  font-size: 20px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  transition: all 0.3s;
  background: var(--accentColor);

  &:hover {
    color: white;
    background: #000;
  }
}

/* Snabbsök produkter */
.retail-quick-search-section {
  background: #fff;
  padding: 40px 0;
  border-bottom: 1px solid #ececec;
}

.retail-quick-search-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

.retail-quick-search-inner h2 {
  margin: 0 0 8px;
  font-size: 48px;
  text-transform: uppercase;
}

.retail-quick-search-inner p {
  margin: 0 0 14px;
  font-size: 16px;
  color: #555;
}

.retail-quick-search-input-wrap {
  margin-top: 14px;
}

.retail-quick-search-input {
  width: 100%;
  height: 56px;
  border: 1px solid #d7d7d7;
  background: #fff;
  color: #111;
  padding: 0 16px;
  font-size: 17px;
  box-sizing: border-box;
}

.retail-quick-search-input:focus {
  outline: none;
  border-color: var(--accentColor, #ff5e00);
}

.retail-quick-search-status {
  min-height: 20px;
  margin: 8px 0 0;
  font-size: 14px;
  color: #666;
}

.retail-quick-search-results {
  margin-top: 10px;
  border: 1px solid #ececec;
  background: #fff;
  max-height: 430px;
  overflow-y: auto;
}

.retail-quick-search-results:empty {
  display: none;
}

.retail-quick-search-more {
  margin-top: 10px;
  display: flex;
  justify-content: center;
}

.retail-quick-search-load-more {
  min-width: 180px;
  height: 42px;
  padding: 0 18px;
  border: 1px solid var(--accentColor3);
  background: #fff;
  color: var(--accentColor3);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  cursor: pointer;
}

.retail-quick-search-load-more:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

.retail-quick-result-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 14px;
  border-bottom: 1px solid #efefef;
}

.retail-quick-result-item:last-child {
  border-bottom: 0;
}

.retail-quick-result-main {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.retail-quick-result-image {
  width: 56px;
  height: 56px;
  flex-shrink: 0;
  background: #f8f8f8;
}

.retail-quick-result-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.retail-quick-result-meta {
  min-width: 0;
}

.retail-quick-result-name {
  font-size: 15px;
  font-weight: 700;
  color: #1c1c1c;
}

.retail-quick-result-sku {
  margin-top: 2px;
  font-size: 13px;
  color: #666;
}

.retail-quick-result-price {
  margin-top: 4px;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.retail-quick-discount-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 2px 8px;
  border-radius: 9999px;
  background: var(--accentColor3);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.4;
}

.retail-quick-result-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.retail-quick-result-qty {
  width: 72px;
  height: 40px;
  padding: 0 8px;
  border: 1px solid #d7d7d7;
  box-sizing: border-box;
  font-size: 14px;
}

.retail-quick-add-btn {
  height: 40px;
  padding: 0 14px;
  border: 1px solid var(--accentColor3);
  background: var(--accentColor3);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  cursor: pointer;
}

.retail-quick-add-btn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

.retail-quick-cart-feedback {
  min-height: 22px;
  margin: 10px 0 0;
  font-size: 14px;
  color: #0c773e;
  padding-top: 1rem;
}

.retail-quick-cart-feedback.is-error {
  color: #b42318;
}

.retail-quick-cart-link {
  color: var(--accentColor, #ff5e00);
  font-weight: 700;
  text-decoration: none;
}

@media (max-width: 768px) {
  .retail-quick-search-section {
    padding: 20px 0;
  }

  .retail-quick-search-inner {
    padding: 0 10px;
  }

  .retail-quick-search-inner h2 {
    font-size: 34px;
  }

  .retail-quick-result-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .retail-quick-result-actions {
    width: 100%;
  }

  .retail-quick-search-load-more {
    width: 100%;
  }

  .retail-quick-result-qty {
    width: 90px;
  }

  .retail-quick-add-btn {
    flex: 1;
  }
}

/* Smal kontakt CTA */
.retail-quick-contact-cta {
  background: var(--accentColor3);
  border-bottom: 1px solid #dee2e6;
  padding: 20px 0;
}

.retail-quick-contact-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 0 20px;
  max-width: 1400px;
  margin: 0 auto;
}

.retail-quick-contact-text {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 18px;
  font-weight: 600;
  color: white;
}

.retail-quick-contact-text svg {
  color: var(--accentColor, #ff5e00);
  flex-shrink: 0;
}

.retail-quick-contact-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: var(--accentColor3);
  color: white;
  border: 2px solid var(--accentColor4);
  text-decoration: none;
  font-family: "CustomHeadingFont", sans-serif;
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: 0.5px;

  transition: all 0.3s;
  white-space: nowrap;
}

.retail-quick-contact-btn:hover {
  color: white;
}

.retail-quick-contact-btn svg {
  transition: transform 0.3s;
}

.retail-quick-contact-btn:hover svg {
  transform: translateY(3px);
}

/* Monterat och klart CTA (50/50) */
.retail-montering-cta {
  background: var(--accentColor3);
  padding: 40px 0;
}

.retail-montering-cta-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: stretch;
}

.retail-montering-cta-content {
  background: var(--accentColor3);
  color: white;
  padding: 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 18px;
}

.retail-montering-cta-content h2 {
  margin: 0;
  color: white;
  font-size: 68px;
  line-height: 1;
  text-transform: uppercase;
}

.retail-montering-cta-content p {
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 20px;
  line-height: 1.5;
  max-width: 520px;
}

.retail-montering-cta-content .retail-section-cta {
  width: fit-content;
}

.retail-montering-cta-image {
  min-height: 360px;
}

.retail-montering-cta-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media (max-width: 768px) {
  .retail-quick-contact-cta {
    padding: 15px 0;
  }

  .retail-quick-contact-inner {
    flex-direction: column;
    text-align: center;
    gap: 15px;
    padding: 0 10px;
  }

  .retail-quick-contact-text {
    font-size: 16px;
    flex-direction: column;
    gap: 8px;
  }

  .retail-quick-contact-btn {
    width: 96%;
    justify-content: center;
    padding: 14px 20px;
  }

  .retail-montering-cta {
    padding: 24px 0;
  }

  .retail-montering-cta-inner {
    grid-template-columns: 1fr;
  }

  .retail-montering-cta-content {
    padding: 32px 20px;
  }

  .retail-montering-cta-content h2 {
    font-size: 46px;
  }

  .retail-montering-cta-content p {
    font-size: 17px;
  }

  .retail-montering-cta-content .retail-section-cta {
    justify-content: center;
  }

  .retail-montering-cta-image {
    min-height: 220px;
  }
}

/* Sections */
.retail-products-section,
.retail-category-section {
  padding: 40px 20px;
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .retail-products-section,
  .retail-category-section {
    padding: 40px 0px;
  }
}

.retail-category-section {
  background: #f9f9f9;
  padding-top: 5rem;
  padding-bottom: 5rem;
}

/* Grid Wrappers */
.retail-filtered-products-wrapper {
  max-width: 1400px;
  margin: 0 auto;
  overflow: hidden;
  padding: 0 20px;
}

@media (max-width: 768px) {
  .retail-filtered-products-wrapper {
    padding: 0 0px;
  }
}

/* Badges */
.new-product-badge,
.campaign-badge,
.bestseller-badge,
.recommended-badge,
.favorite-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  color: white;
  padding: 5px 12px;
  font-size: 12px;
  font-weight: 700;
  z-index: 10;
}

.new-product-badge {
  background: #0c773e;
}

.campaign-badge {
  background: #ff3333;
}

.bestseller-badge {
  background: #000;
}

.recommended-badge {
  background: var(--accentColor, #ff5e00);
}

.favorite-badge {
  background: var(--accentColor, #ff5e00);
}

/* Contact CTA Section */
.retail-contact-cta-inner {
  margin: 0 auto;
  text-align: center;
  color: white;
  background: #000;
  padding: 100px 50px;
}

@media (max-width: 768px) {
  .retail-contact-cta-inner {
    padding: 50px 20px;
  }
}

.retail-contact-cta h2 {
  font-size: 42px;
  margin-bottom: 20px;
  font-weight: 700;
  color: white;
  margin-top: 0;
}

.retail-contact-cta-message {
  font-size: 18px;
  margin-bottom: 30px;
  opacity: 0.9;
}

.retail-contact-cta-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}

.retail-contact-cta-header.no-contact-person {
  justify-content: center;
}

.retail-contact-image {
  flex: 0 0 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.retail-contact-image img {
  width: 100%;
  max-width: 400px;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  background: white;
  border-radius: 50%;
  border: 4px solid white;
}

.retail-contact-cta-text {
  flex: 0 0 50%;
  text-align: left;
  order: 1;
}

.retail-contact-info-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 30px;
}

.retail-contact-info-item {
  display: flex;
  align-items: center;
  gap: 15px;
  text-align: left;
}

.retail-contact-icon {
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.retail-contact-info-content {
  flex: 1;
}

.retail-contact-info-label {
  font-size: 13px;
  opacity: 0.7;
  margin-bottom: 3px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.retail-contact-info-value {
  font-size: 18px;
  font-weight: 600;
}

.retail-contact-info-value a {
  font-size: 18px;
  font-weight: 600;
  color: white;
  text-decoration: none;
  transition: opacity 0.3s;
}

.retail-contact-cta-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  background: var(--accentColor, #ff5e00);
  color: white;
  text-decoration: none;
  font-weight: 700;
  font-family: "CustomHeadingFont", sans-serif;
  font-size: 20px;
  text-transform: uppercase;
  transition: all 0.3s;
}

.retail-contact-cta-button:hover {
  color: white;
}

.retail-sticky-salesperson-popup {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 320px;
  max-width: calc(100% - 48px);
  background: #000;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.16);
  z-index: 999;
  overflow: hidden;
  box-sizing: border-box;
}

.retail-sticky-salesperson-summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px;
  cursor: pointer;
  list-style: none;
}

.retail-sticky-salesperson-summary::-webkit-details-marker {
  display: none;
}

.retail-sticky-salesperson-title {
  font-size: 20px;

  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin: 0;
  color: #fff;
  font-family: "CustomHeadingFont", sans-serif;
}

.retail-sticky-salesperson-toggle {
  width: 8px;
  height: 8px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(45deg);
  transition: transform 0.2s ease;
}

.retail-sticky-salesperson-popup[open] .retail-sticky-salesperson-toggle {
  transform: rotate(-135deg);
}

.retail-sticky-salesperson-content {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.retail-sticky-salesperson-image {
  width: 64px;
  height: 64px;
  flex-shrink: 0;
}

.retail-sticky-salesperson-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.25);
}

.retail-sticky-salesperson-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}

.retail-sticky-salesperson-name {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.2;
}

.retail-sticky-salesperson-link {
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  line-height: 1.3;
  word-break: break-word;
}

.retail-sticky-salesperson-link:hover {
  text-decoration: underline;
  color: var(--accentColor, #ff5e00);
}

/* Empty state messages */
.retail-empty-message {
  text-align: center;
  color: #666;
}

/* Responsive Media Queries */
@media (max-width: 992px) {
  .retail-products-grid.active {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .retail-dashboard-header h1 {
    font-size: 28px;
  }

  .retail-dashboard-cards {
    grid-template-columns: 1fr;
  }

  .retail-links-grid {
    grid-template-columns: 1fr;
  }

  .retail-products-grid.active {
    grid-template-columns: repeat(1, 1fr);
    gap: 10px;
  }

  .retail-product-filters {
    gap: 6px;
  }

  .retail-filter-btn {
    padding: 18px 18px;
    font-size: 16px;
  }

  .retail-product-item .product-image-container {
    aspect-ratio: 1 / 1;
  }

  .title-stock-div-retail {
    padding: 10px;
  }

  .title-stock-div-retail h2 {
    font-size: 20px;
    min-height: 35px;
  }

  .title-stock-div-retail .price {
    font-size: 20px;
    font-family: "CustomHeadingFont", sans-serif;
  }

  .retail-taxonomy-grid-wrapper {
    padding: 0 10px;
  }

  .retail-contact-cta-header {
    flex-direction: column;
    gap: 30px;
  }

  .retail-contact-image {
    order: 1;
  }

  .retail-contact-image img {
    max-width: 200px;
  }

  .retail-contact-cta-text {
    order: 2;
  }

  .retail-contact-cta h2 {
    font-size: 32px;
  }

  .retail-sticky-salesperson-popup {
    right: 10px;
    bottom: 10px;
    left: 10px;
    width: auto;
    max-width: none;
  }

  .retail-sticky-salesperson-name {
    font-size: 16px;
  }
}

/* ============================================
   MARKNADSMATERIAL SECTION
   ============================================ */

.retail-marknadsmaterial {
  padding: 0;
  max-width: 1200px;
  margin: 0 auto;
}

.retail-marknadsmaterial h2 {
  font-size: 35px;
  margin-bottom: 12px;
  color: #333;
  font-weight: 700;
}

.marknadsmaterial-intro {
  font-size: 15px;
  color: #666;
  margin-bottom: 32px;
  line-height: 1.6;
}

.marknadsmaterial-user-section {
  margin-top: 40px;
}

.marknadsmaterial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 20px;
  margin-top: 24px;
}

.marknadsmaterial-item {
  display: flex;
  gap: 16px;
  padding: 20px;
  background: #fff;
  border: 1px solid #e5e5e5;

  transition: all 0.3s ease;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
  align-items: flex-start;
}

.marknadsmaterial-content {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.marknadsmaterial-title {
  font-size: 20px;
  font-weight: 700;
  color: #333;
  margin: 0;
  line-height: 1.3;
}

.marknadsmaterial-description {
  font-size: 13px;
  color: #666;
  margin: 0;
  line-height: 1.5;
}

.marknadsmaterial-meta {
  display: flex;
  flex-direction: column;
  gap: 2px;
  font-size: 12px;
  color: #999;
  margin-top: 4px;
}

.marknadsmaterial-meta .file-name {
  font-weight: 500;
  color: #666;
  font-size: 12px;
}

.marknadsmaterial-meta .file-size {
  font-size: 11px;
  color: #999;
}

.marknadsmaterial-actions {
  display: flex;
  flex-direction: row;
  gap: 8px;
  flex-shrink: 0;
  margin-top: 12px;
}

.marknadsmaterial-download-btn,
.marknadsmaterial-view-btn {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 6px !important;
  padding: 8px 14px !important;
  font-size: 13px !important;
  font-weight: 600 !important;
  border-radius: 0 !important;
  transition: all 0.2s ease !important;
  text-decoration: none !important;
  white-space: nowrap !important;
  border: none !important;
  cursor: pointer !important;
}

.marknadsmaterial-download-btn {
  background: var(--accentColor) !important;
  color: #fff !important;
  border: 1px solid var(--accentColor) !important;
}

.marknadsmaterial-download-btn:hover {
  background: var(--accentColor) !important;

  box-shadow: 0 3px 8px rgba(255, 94, 0, 0.3) !important;
  color: #fff !important;
}

.marknadsmaterial-view-btn {
  background: #f5f5f5 !important;
  color: #666 !important;
  border: 1px solid #e0e0e0 !important;
}

.marknadsmaterial-view-btn:hover {
  background: #e8e8e8 !important;
  color: #333 !important;
  border-color: #d0d0d0 !important;
}

.marknadsmaterial-download-btn svg,
.marknadsmaterial-view-btn svg {
  width: 14px !important;
  height: 14px !important;
}

/* Empty State */
.marknadsmaterial-empty {
  text-align: center;
  padding: 60px 20px;
  background: #f9f9f9;
  border-radius: 8px;
  margin-top: 24px;
  border: 1px solid #e5e5e5;
}

.marknadsmaterial-empty .empty-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #e8e8e8;
  border-radius: 50%;
}

.marknadsmaterial-empty .empty-icon svg {
  width: 32px;
  height: 32px;
  color: #999;
}

.marknadsmaterial-empty h3 {
  font-size: 20px;
  color: #333;
  margin: 0 0 8px 0;
  font-weight: 700;
}

.marknadsmaterial-empty p {
  font-size: 14px;
  color: #666;
  margin: 0;
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 768px) {
  .marknadsmaterial-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .marknadsmaterial-item {
    flex-direction: row;
    gap: 12px;
    padding: 16px;
  }

  .marknadsmaterial-icon {
    width: 40px;
    height: 40px;
  }

  .marknadsmaterial-icon svg {
    width: 20px;
    height: 20px;
  }

  .marknadsmaterial-actions {
    flex-direction: column;
    width: 100%;
    margin-top: 8px;
  }

  .marknadsmaterial-download-btn,
  .marknadsmaterial-view-btn {
    width: 90%;
    padding: 10px 14px;
    font-size: 12px;
  }

  .retail-marknadsmaterial h2 {
    font-size: 24px;
  }

  .marknadsmaterial-intro {
    font-size: 14px;
    margin-bottom: 24px;
  }

  .marknadsmaterial-title {
    font-size: 15px;
  }

  .marknadsmaterial-description {
    font-size: 12px;
  }

  .marknadsmaterial-empty {
    padding: 40px 20px;
  }

  .marknadsmaterial-empty .empty-icon {
    width: 56px;
    height: 56px;
  }

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

  .marknadsmaterial-empty h3 {
    font-size: 18px;
  }

  .marknadsmaterial-empty p {
    font-size: 13px;
  }
}
