/** Shopify CDN: Minification failed

Line 104:1 Expected "}" to go with "{"

**/
/* Section Styling - Matches Shopify Theme */
.request-section {
    display: flex;
    justify-content: center;
    padding: 10px 10px;
    /*background: var(--color-background, #f9f9f9);
}

/* Center the container */
.request-container {
    max-width: 600px;
    text-align: center;
}

/* Title - Now Uses Shopify Theme Heading Styles */
.request-title {
    font-size: calc(var(--font-heading-scale) * 3rem)); /* Uses Shopify's theme setting */
    font-style: var(--font-heading-style, inherit);
    font-family: var(--font-heading-family, inherit); /* Inherits theme font */
    font-weight: var(--font-heading-weight, inherit); /* Uses the theme's weight */
    letter-spacing: calc(var(--font-heading-scale) * 0.06rem);
    color: rgb(var(--color-foreground)); /* Ensures it matches the Shopify theme */
    line-height: calc(1 + 0.3 / max(1, var(--font-heading-scale)));
    word-break: break-word;
    /*color: rgb(var(--color-foreground));
    text-transform: var(--text-transform, none); /* Matches theme settings */ 
    margin-bottom: 15px;
}

/* Subtitle - Matches Theme Body Text */
.request-subtitle {
    font-size: var(--font-body-scale, 1.2rem);
    font-family: var(--font-body-family, inherit);
    color: var(--color-text, inherit);
    margin-bottom: 20px;
}

/* Form Group - Keeps Inputs Below Labels */
.form-group {
    text-align: left;
    margin-bottom: 15px;
}

/* Label Styling */
.form-group label {
    font-family: var(--font-body-family, inherit);
    font-weight: var(--font-weight-bold, bold);
    display: block;
    margin-bottom: 5px;
    color: var(--color-text, inherit);
}

/* Input Field Styling */
.input {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--color-border, #ddd);
    border-radius: var(--border-radius, 6px);
    font-family: var(--font-body-family, inherit);
    font-size: var(--font-body-scale, 1rem);
    background-color: var(--color-background, #fff);
    color: var(--color-text, inherit);
}
.contact-email {
  color: #ffffff !important;      /* Link weiß */
  text-decoration: underline;     /* optional, kannst du auch weglassen */
}

.contact-email:hover {
  color: #ffffff !important;      /* beim Hover auch weiß lassen */
  opacity: 0.8;                   /* leichter Hover-Effekt */
}
/* Kontaktformular – Button wie Selkirk */
.contact-button {
  border: 1.5px solid #ffffff !important;
  color: #ffffff !important;
  background: transparent !important;
  padding: 12px 28px;
  border-radius: 6px;
  font-size: 15px;
  font-weight: 500;
  display: inline-block;
  transition: 0.25s ease;
}

.contact-button:hover {
  background: rgba(255, 255, 255, 0.1) !important;
  transform: translateY(-1px);
}

/* Kontaktformular – E-Mail-Link weiß */
.contact-email {
  color: #ffffff !important;
  text-decoration: underline;
}

.contact-email:hover {
  opacity: 0.8;
}