/** Shopify CDN: Minification failed

Line 150:10 Unexpected "{"
Line 150:19 Expected ":"
Line 151:14 Expected identifier but found whitespace
Line 151:16 Unexpected "{"
Line 151:25 Expected ":"
Line 151:76 Expected ":"
Line 152:17 Expected identifier but found whitespace
Line 152:19 Unexpected "{"
Line 152:28 Expected ":"
Line 152:82 Expected ":"
... and 10 more hidden warnings

**/
.contact-info-section {
  padding: 80px 0; /* Ökat från 60px till 80px för mer utrymme */
}

.contact-info__heading {
  text-align: center;
  margin-bottom: 10px;
  margin-top: 0; /* Tar bort eventuell margin upptill */
  font-size: 2.4rem;
  font-weight: 600;
}

.contact-info__subheading {
  text-align: center;
  margin-bottom: 10px;  /* Ändra från 40px till 10px (eller 5px) */
  color: rgba(var(--color-foreground), 0.7);
  font-size: 1.6rem;
}

/* Huvud-email högst upp - centrerad och med padding */
.contact-info__main--top {
  margin: 0 auto;
  padding: 10px 30px 5px;
  max-width: 600px;
  text-align: center;
  background: transparent;
  border: none;
}

.contact-info__main-heading {
  font-size: 1.8rem;
  margin-bottom: 15px;
  margin-top: 0;
}

.contact-info__main-email {
  font-size: 2.2rem;
  color: rgb(var(--color-link));
  text-decoration: none;
  font-weight: 500;
  display: inline-block;
  padding: 10px 20px;
  border-radius: 6px;
  transition: background 0.2s;
}

.contact-info__main-email:hover {
  text-decoration: underline;
  background: rgba(var(--color-link), 0.1);
}

.contact-info__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  max-width: 1200px;
  margin: -20px auto 0; /* Negativ margin uppe för att flytta upp */
}

.contact-info__card {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 20px;
  background: rgba(var(--color-background), 0.5);
  border-radius: 8px;
  border: 1px solid rgba(var(--color-foreground), 0.1);
  transition: transform 0.2s, box-shadow 0.2s;
}

.contact-info__card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.contact-info__flag {
  flex-shrink: 0;
  width: 40px;
  height: 30px;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.contact-info__flag img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.contact-info__flag-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  background: #f0f0f0;
  font-size: 10px;
  font-weight: bold;
  color: #666;
}

.contact-info__details {
  flex: 1;
}

.contact-info__country {
  margin: 0 0 8px 0;
  font-size: 1.6rem;
  font-weight: 600;
}

.contact-info__phone,
.contact-info__email {
  display: block;
  color: rgba(var(--color-foreground), 0.8);
  text-decoration: none;
  font-size: 1.4rem;
  margin-bottom: 4px;
  transition: color 0.2s;
}

.contact-info__phone:hover,
.contact-info__email:hover {
  color: rgb(var(--color-link));
}

.contact-info__label {
  color: rgba(var(--color-foreground), 0.5);
  font-size: 1.2rem;
  margin-right: 4px;
}

/* Padding i botten av sektionen */
.section-{{ section.id }}-padding {
  padding-top: {{ section.settings.padding_top | times: 0.75 | round: 0 }}px;
  padding-bottom: {{ section.settings.padding_bottom | times: 0.75 | round: 0 }}px;
}

@media screen and (min-width: 750px) {
  .section-{{ section.id }}-padding {
    padding-top: {{ section.settings.padding_top }}px;
    padding-bottom: {{ section.settings.padding_bottom }}px;
  }
}

@media screen and (max-width: 749px) {
  .contact-info-section {
    padding: 60px 0; /* Mindre på mobil */
  }
  
  .contact-info__grid {
    grid-template-columns: 1fr;
  }
  
  .contact-info__heading {
    font-size: 2rem;
  }
  
  .contact-info__main--top {
    margin: 15px auto 40px;
    padding: 20px;
  }
  
  .contact-info__main-email {
    font-size: 1.8rem;
  }
  
  .contact-info__card {
    padding: 15px;
  }
}
/* Desktop: Ingen klick på boxen */
@media screen and (min-width: 750px) {
  .contact-info__card {
    text-decoration: none;
    color: inherit;
    cursor: default;
    pointer-events: none;
  }
  
  /* Email-länk fungerar fortfarande */
  .contact-info__card .contact-info__email {
    pointer-events: auto;
    cursor: pointer;
  }
}

/* Mobil: Normal klickbar länk */
@media screen and (max-width: 749px) {
  .contact-info__card {
    cursor: pointer;
  }
}