/** Shopify CDN: Minification failed

Line 8:0 Unexpected "{"
Line 8:1 Expected identifier but found "%"
Line 11:1 Expected identifier but found "%"

**/
{% comment %}
  Modern Footer Design
  Following Shopify theme development best practices
{% endcomment %}

/* Modern Footer Variables */
:root {
  --footer-bg: rgb(var(--color-background));
  --footer-text: rgb(var(--color-foreground));
  --footer-text-muted: rgba(var(--color-foreground), 0.7);
  --footer-accent: rgb(var(--color-button));
  --footer-border: rgba(var(--color-foreground), 0.1);
  --footer-spacing: 1rem;
  --footer-spacing-mobile: 0.75rem;
}

/* Modern Footer Base */
.footer {
  background: var(--footer-bg);
  border-top: 1px solid var(--footer-border);
  position: relative;
  overflow: hidden;
}

/* Footer Main Logo */
.footer__main-logo {
  max-width: 180px; /* Größer */
  height: auto;
  margin: 0 auto 1.5rem auto; /* Zentrieren */
  display: block;
  filter: brightness(0) invert(1);
}

/* Footer Newsletter Description - Larger Text */
.footer__newsletter-description {
  font-size: 1.3rem; /* Größer */
  line-height: 1.6;
  margin-top: 1rem;
  text-align: center; /* Zentrieren */
}

.footer__newsletter-description p {
  margin-bottom: 0.75rem;
  font-size: 1.3rem; /* Größer */
}

/* Modern Footer Content Top */
.footer__content-top {
  padding: var(--footer-spacing) 0;
  position: relative;
}

@media screen and (max-width: 749px) {
  .footer__content-top {
    padding: var(--footer-spacing-mobile) 0;
  }
}

/* Modern Footer Grid */
.footer__blocks-wrapper {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--footer-spacing);
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

@media screen and (min-width: 750px) {
  .footer__blocks-wrapper {
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: start;
  }
}

@media screen and (min-width: 990px) {
  .footer__blocks-wrapper {
    grid-template-columns: 2fr 1fr;
    gap: 6rem;
  }
}

/* Modern Footer Block */
.footer-block {
  margin: 0;
}

/* Modern Brand Information */
.footer-block__brand-info {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

/* Modern Logo Styling */
.footer-block__brand-info h2 {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--footer-text);
  margin: 0;
  line-height: 1.1;
  letter-spacing: -0.02em;
  font-family: var(--font-heading-family);
}

@media screen and (max-width: 749px) {
  .footer-block__brand-info h2 {
    font-size: 2rem;
  }
}

/* Modern Mission Statement */
.footer-block__brand-info .rte {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--footer-text-muted);
  max-width: 400px;
}

.footer-block__brand-info .rte p {
  margin: 0 0 1rem 0;
}

.footer-block__brand-info .rte p:last-child {
  margin-bottom: 0;
}

/* Modern Links Section */
.footer-block--menu {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-block__heading {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--footer-text);
  margin: 0 0 1.5rem 0;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* Modern Link List - Mobile First (Vertical) */
.footer-block__details-content {
  margin: 0;
}

.footer-block__details-content ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-block__details-content li {
  margin: 0;
}

.footer-block__details-content .list-menu__item--link {
  color: var(--footer-text-muted);
  text-decoration: none;
  font-size: 1.1rem; /* Größer */
  font-weight: 500; /* Etwas fetter */
  transition: all 0.2s ease;
  display: inline-block;
  padding: 0.25rem 0;
}

.footer-block__details-content .list-menu__item--link:hover {
  color: var(--footer-accent);
  transform: translateX(4px);
}

/* Desktop Horizontal Layout */
@media screen and (min-width: 750px) {
  .footer-block__details-content ul {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 2rem;
    align-items: center;
  }
  
  .footer-block__details-content .list-menu__item--link {
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
  }
  
  .footer-block__details-content .list-menu__item--link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(var(--color-button), 0.1), transparent);
    transition: left 0.5s ease;
  }
  
  .footer-block__details-content .list-menu__item--link:hover {
    color: var(--footer-accent);
    background: rgba(var(--color-button), 0.05);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(var(--color-button), 0.15);
  }
  
  .footer-block__details-content .list-menu__item--link:hover::before {
    left: 100%;
  }
  
  .footer-block__details-content .list-menu__item--link:active {
    transform: translateY(0);
    box-shadow: 0 2px 6px rgba(var(--color-button), 0.1);
  }
}

/* Modern Footer Bottom */
.footer__content-bottom {
  border-top: 1px solid var(--footer-border);
  padding: 1.5rem 0;
  background: rgba(var(--color-foreground), 0.02);
}

.footer__content-bottom-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  flex-wrap: wrap;
  gap: 1rem;
}

@media screen and (max-width: 749px) {
  .footer__content-bottom-wrapper {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }
}

/* Modern Copyright */
.footer__copyright {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 0;
}

@media screen and (max-width: 749px) {
  .footer__copyright {
    flex-direction: column;
    gap: 0.5rem;
  }
}

.copyright__content {
  font-size: 0.9rem;
  color: var(--footer-text-muted);
  margin: 0;
}

.copyright__content a {
  color: var(--footer-accent);
  text-decoration: none;
  transition: color 0.2s ease;
}

.copyright__content a:hover {
  color: var(--footer-text);
}

/* Modern Policies */
.policies {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.policies li {
  margin: 0;
}

.policies li::before {
  display: none;
}

.policies li a {
  font-size: 0.9rem;
  color: var(--footer-text-muted);
  text-decoration: none;
  transition: color 0.2s ease;
  padding: 0;
}

.policies li a:hover {
  color: var(--footer-accent);
}

/* Modern Payment Icons */
.footer__payment {
  margin: 0;
}

.list-payment {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.list-payment__item {
  margin: 0;
}

.list-payment__item svg {
  width: 32px;
  height: 20px;
  opacity: 0.7;
  transition: opacity 0.2s ease;
}

.list-payment__item:hover svg {
  opacity: 1;
}

/* Modern Social Icons */
.footer__list-social {
  margin: 0;
}

.footer__list-social .list-social {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 0;
  padding: 0;
}

.footer__list-social .list-social__item {
  margin: 0;
}

.footer__list-social .list-social__link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(var(--color-foreground), 0.1);
  color: var(--footer-text-muted);
  text-decoration: none;
  transition: all 0.2s ease;
}

.footer__list-social .list-social__link:hover {
  background: var(--footer-accent);
  color: var(--footer-bg);
  transform: translateY(-2px);
}

/* Modern Newsletter */
.footer-block--newsletter {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--footer-border);
}

.footer-block__newsletter {
  text-align: center;
}

.footer-block__newsletter h2 {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--footer-text);
  margin: 0 0 1rem 0;
}

/* Modern Newsletter Form */
.newsletter-form__field-wrapper {
  max-width: 400px;
  margin: 0 auto;
}

.newsletter-form .field {
  position: relative;
}

.newsletter-form .field__input {
  width: 100%;
  padding: 1rem 1.5rem;
  border: 1px solid var(--footer-border);
  border-radius: 50px;
  background: rgba(var(--color-foreground), 0.05);
  color: var(--footer-text);
  font-size: 0.95rem;
  transition: all 0.2s ease;
}

.newsletter-form .field__input:focus {
  outline: none;
  border-color: var(--footer-accent);
  background: rgba(var(--color-foreground), 0.08);
}

.newsletter-form .field__button {
  position: absolute;
  right: 4px;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--footer-accent);
  border: none;
  color: var(--footer-bg);
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.newsletter-form .field__button:hover {
  background: var(--footer-text);
  transform: translateY(-50%) scale(1.05);
}

/* Mobile Optimizations */
@media screen and (max-width: 749px) {
  .footer__blocks-wrapper {
    padding: 0 1rem;
    gap: var(--footer-spacing-mobile);
  }
  
  .footer__content-bottom-wrapper {
    padding: 0 1rem;
  }
  
  .footer-block__brand-info h2 {
    font-size: 1.8rem;
  }
  
  .footer-block__brand-info .rte {
    font-size: 0.95rem;
  }
  
  .footer-block__details-content .list-menu__item--link {
    font-size: 0.9rem;
  }
  
  .newsletter-form .field__input {
    padding: 0.875rem 1.25rem;
    font-size: 0.9rem;
  }
  
  .newsletter-form .field__button {
    width: 36px;
    height: 36px;
  }
}

/* Extra small screens - further optimizations */
@media screen and (max-width: 479px) {
  .footer-block__brand-info {
    gap: 0.75rem;
  }
  
  .footer-block__brand-info h2 {
    font-size: 1.6rem;
  }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
  .footer-block__details-content .list-menu__item--link,
  .footer__list-social .list-social__link,
  .newsletter-form .field__button,
  .copyright__content a,
  .policies li a {
    transition: none;
  }
  
  .footer-block__details-content .list-menu__item--link:hover,
  .footer__list-social .list-social__link:hover,
  .newsletter-form .field__button:hover {
    transform: none;
  }
}

/* Compact Footer Sections */
.footer__menu-section {
  padding: 0.5rem 0;
  border-top: 1px solid var(--footer-border);
}

.footer__bottom-section {
  padding: 0.5rem 0;
  border-top: 1px solid var(--footer-border);
}

.footer__copyright-section {
  padding: 0.5rem 0;
  border-top: 1px solid var(--footer-border);
}

/* Mobile Responsive - Even More Compact */
@media screen and (max-width: 749px) {
  .footer__newsletter-description {
    font-size: 1rem;
  }
  
  .footer__newsletter-description p {
    font-size: 1rem;
  }
  
  .footer__main-logo {
    max-width: 120px;
  }
}

/* Dark Mode Adjustments */
@media (prefers-color-scheme: dark) {
  .footer {
    background: rgba(var(--color-foreground), 0.02);
  }
  
  .footer__content-bottom {
    background: rgba(var(--color-foreground), 0.05);
  }
  
  .newsletter-form .field__input {
    background: rgba(var(--color-foreground), 0.1);
  }
  
  .newsletter-form .field__input:focus {
    background: rgba(var(--color-foreground), 0.15);
  }
}
