/** Shopify CDN: Minification failed

Line 54:12 Expected identifier but found whitespace
Line 54:14 Unexpected "{"
Line 54:23 Expected ":"
Line 54:70 Expected ":"

**/
/* Vyshyvanka Footer Styles */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

.vyshyvanka-footer {
  background: linear-gradient(135deg, #fefefe 0%, #f8f9fa 100%);
  border-top: 1px solid rgba(0,0,0,0.08);
  color: #333333;
  font-family: 'Poppins', sans-serif;
  position: relative;
  overflow: hidden;
}

.vyshyvanka-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    radial-gradient(circle at 20px 20px, rgba(220, 20, 60, 0.02) 2px, transparent 2px);
  background-size: 60px 60px;
  pointer-events: none;
  opacity: 0.5;
}

/* Logo Section */
.vyshyvanka-footer__logo-section {
  text-align: center;
  margin-bottom: 25px;
  position: relative;
  z-index: 2;
}

.vyshyvanka-footer__logo-link {
  display: inline-block;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.vyshyvanka-footer__logo-link:hover {
  opacity: 0.8;
}

.vyshyvanka-footer__logo-img {
  max-width: {{ section.settings.footer_logo_width | default: 180 }}px;
  height: auto;
}

.vyshyvanka-footer__logo-text {
  font-size: 24px;
  font-weight: 600;
  color: #333333;
  letter-spacing: 0.5px;
}

@media screen and (max-width: 768px) {
  .vyshyvanka-footer__logo-section {
    margin-bottom: 20px;
  }
  
  .vyshyvanka-footer__logo-img {
    max-width: 120px;
  }
  
  .vyshyvanka-footer__logo-text {
    font-size: 20px;
  }
}

/* Main Content - Horizontal Layout */
.vyshyvanka-footer__main {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 30px;
  margin-bottom: 30px;
  position: relative;
  z-index: 2;
  flex-wrap: wrap;
}

@media screen and (max-width: 768px) {
  .vyshyvanka-footer__main {
    flex-direction: column;
    gap: 20px;
    margin-bottom: 25px;
    text-align: center;
  }
}

/* Navigation Columns */
.vyshyvanka-footer__nav-column,
.vyshyvanka-footer__text-column,
.vyshyvanka-footer__brand-column {
  flex: 1;
  min-width: 180px;
}

@media screen and (max-width: 768px) {
  .vyshyvanka-footer__nav-column,
  .vyshyvanka-footer__text-column,
  .vyshyvanka-footer__brand-column {
    flex: none;
    width: 100%;
  }
}

.vyshyvanka-footer__nav-title,
.vyshyvanka-footer__text-title,
.vyshyvanka-footer__brand-title {
  font-size: 14px;
  font-weight: 600;
  color: #333333;
  margin: 0 0 12px 0;
  letter-spacing: 0.3px;
  position: relative;
  padding-bottom: 6px;
}

.vyshyvanka-footer__nav-title::after,
.vyshyvanka-footer__text-title::after,
.vyshyvanka-footer__brand-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 20px;
  height: 1px;
  background: #AD331D;
  border-radius: 1px;
}

@media screen and (max-width: 768px) {
  .vyshyvanka-footer__nav-title::after,
  .vyshyvanka-footer__text-title::after,
  .vyshyvanka-footer__brand-title::after {
    left: 50%;
    transform: translateX(-50%);
  }
}

.vyshyvanka-footer__nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 30px;
}

@media screen and (max-width: 768px) {
  .vyshyvanka-footer__nav-list {
    flex-direction: column;
    gap: 8px;
  }
}

.vyshyvanka-footer__nav-link {
  font-size: 13px;
  color: #666666;
  text-decoration: none;
  transition: color 0.3s ease;
}

.vyshyvanka-footer__nav-link:hover {
  color: #1a1a1a;
}

.vyshyvanka-footer__text-content,
.vyshyvanka-footer__brand-desc {
  font-size: 13px;
  color: #666666;
  line-height: 1.5;
}

.vyshyvanka-footer__text-content p,
.vyshyvanka-footer__brand-desc p {
  margin: 0 0 8px 0;
}

.vyshyvanka-footer__text-content p:last-child,
.vyshyvanka-footer__brand-desc p:last-child {
  margin-bottom: 0;
}

/* Newsletter Section */
.vyshyvanka-footer__newsletter {
  background: #ffffff;
  border-radius: 16px;
  padding: 25px 20px;
  margin-bottom: 25px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.04);
  border: 1px solid rgba(0,0,0,0.04);
  text-align: center;
  position: relative;
}

@media screen and (max-width: 768px) {
  .vyshyvanka-footer__newsletter {
    padding: 20px 15px;
    margin-bottom: 20px;
  }
}

.vyshyvanka-footer__newsletter-title {
  font-size: 18px;
  font-weight: 600;
  color: #333333;
  margin: 0 0 15px 0;
  letter-spacing: 0.3px;
  position: relative;
  padding-bottom: 8px;
}

.vyshyvanka-footer__newsletter-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 30px;
  height: 1px;
  background: #AD331D;
  border-radius: 1px;
}

@media screen and (max-width: 768px) {
  .vyshyvanka-footer__newsletter-title {
    font-size: 16px;
  }
}

.vyshyvanka-footer__newsletter-form {
  max-width: 350px;
  margin: 0 auto;
  position: relative;
}

.vyshyvanka-footer__newsletter-wrapper {
  display: flex;
  align-items: center;
  background: #f8f9fa;
  border: 1px solid #e9ecef;
  border-radius: 25px;
  overflow: hidden;
  transition: border-color 0.3s ease;
  position: relative;
}

.vyshyvanka-footer__newsletter-wrapper:focus-within {
  border-color: #dc143c;
  background: #ffffff;
}

.vyshyvanka-footer__newsletter-input {
  flex: 1;
  border: none;
  background: transparent;
  padding: 12px 16px;
  font-size: 13px;
  color: #333333;
  outline: none;
  font-family: 'Poppins', sans-serif;
}

.vyshyvanka-footer__newsletter-input::placeholder {
  color: #999999;
}

.vyshyvanka-footer__newsletter-btn {
  width: 36px;
  height: 36px;
  background: #1a1a1a;
  border: none;
  border-radius: 50%;
  margin: 2px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s ease;
  flex-shrink: 0;
}

.vyshyvanka-footer__newsletter-btn:hover {
  background: #000000;
}

.vyshyvanka-footer__newsletter-btn svg {
  color: #ffffff;
  width: 14px;
  height: 14px;
}

.vyshyvanka-footer__newsletter-error,
.vyshyvanka-footer__newsletter-success {
  margin-top: 12px;
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 12px;
  text-align: center;
}

.vyshyvanka-footer__newsletter-error {
  background: rgba(239, 68, 68, 0.1);
  color: #dc2626;
  border: 1px solid rgba(239, 68, 68, 0.2);
}

.vyshyvanka-footer__newsletter-success {
  background: rgba(34, 197, 94, 0.1);
  color: #16a34a;
  border: 1px solid rgba(34, 197, 94, 0.2);
}

/* Social Icons */
.vyshyvanka-footer__social {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 40px;
}

@media screen and (max-width: 768px) {
  .vyshyvanka-footer__social {
    margin-bottom: 30px;
  }
}

.vyshyvanka-footer__social-link {
  width: 48px;
  height: 48px;
  background: #f8f9fa;
  border: 1px solid #e9ecef;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #666666;
  text-decoration: none;
  transition: all 0.3s ease;
}

.vyshyvanka-footer__social-link:hover {
  background: #dc143c;
  color: #ffffff;
  border-color: #dc143c;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(220, 20, 60, 0.25);
}

/* Bottom Section */
.vyshyvanka-footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 30px 0;
  border-top: 1px solid rgba(0,0,0,0.08);
  gap: 20px;
  flex-wrap: wrap;
}

@media screen and (max-width: 768px) {
  .vyshyvanka-footer__bottom {
    flex-direction: column;
    text-align: center;
    gap: 20px;
    padding: 20px 0;
  }
}

/* Localization */
.vyshyvanka-footer__localization {
  display: flex;
  gap: 20px;
}

@media screen and (max-width: 768px) {
  .vyshyvanka-footer__localization {
    justify-content: center;
    flex-wrap: wrap;
  }
}

/* Localization Forms */
.localization-form {
  margin: 0;
}

.vyshyvanka-footer__country,
.vyshyvanka-footer__language {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.vyshyvanka-footer__country label,
.vyshyvanka-footer__language label {
  font-size: 12px;
  font-weight: 500;
  color: #999999;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.vyshyvanka-footer__selector {
  padding: 8px 12px;
  border: 1px solid #e9ecef;
  border-radius: 8px;
  background: #ffffff;
  font-size: 13px;
  color: #333333;
  font-family: 'Poppins', sans-serif;
  cursor: pointer;
  transition: all 0.3s ease;
}

.vyshyvanka-footer__selector:hover,
.vyshyvanka-footer__selector:focus {
  border-color: #AD331D;
  outline: none;
}

/* Payment Icons */
.vyshyvanka-footer__payment {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
}

@media screen and (max-width: 768px) {
  .vyshyvanka-footer__payment {
    justify-content: center;
  }
}

.vyshyvanka-footer__payment-icon {
  background: #ffffff;
  border: 1px solid #e9ecef;
  border-radius: 8px;
  padding: 8px 12px;
  transition: all 0.3s ease;
  box-shadow: 0 2px 4px rgba(0,0,0,0.04);
  line-height: 1;
}

.vyshyvanka-footer__payment-icon:hover {
  background: #f8f9fa;
  border-color: #AD331D;
  transform: translateY(-1px);
}

.vyshyvanka-footer__payment-svg {
  height: 20px;
  width: auto;
  opacity: 0.7;
}

/* Copyright */
.vyshyvanka-footer__copyright {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(0,0,0,0.06);
  margin-top: 20px;
}

.vyshyvanka-footer__copyright p {
  font-size: 12px;
  color: #999999;
  margin: 0 0 12px 0;
}

.vyshyvanka-footer__policies {
  display: flex;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}

.vyshyvanka-footer__policies a {
  font-size: 11px;
  color: #666666;
  text-decoration: none;
  padding: 4px 8px;
  transition: color 0.3s ease;
  position: relative;
}

.vyshyvanka-footer__policies a:hover {
  color: #AD331D;
}

.vyshyvanka-footer__policies a:not(:last-child)::after {
  content: '•';
  position: absolute;
  right: -4px;
  color: #cccccc;
}

@media screen and (max-width: 480px) {
  .vyshyvanka-footer__policies {
    flex-direction: column;
    gap: 4px;
  }
  
  .vyshyvanka-footer__policies a::after {
    display: none;
  }
}

/* Animation Effects */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.vyshyvanka-footer__logo-section,
.vyshyvanka-footer__nav-column,
.vyshyvanka-footer__text-column,
.vyshyvanka-footer__brand-column,
.vyshyvanka-footer__newsletter,
.vyshyvanka-footer__social {
  animation: fadeInUp 0.6s ease forwards;
}

.vyshyvanka-footer__logo-section { animation-delay: 0.1s; }
.vyshyvanka-footer__nav-column:nth-child(1) { animation-delay: 0.2s; }
.vyshyvanka-footer__nav-column:nth-child(2) { animation-delay: 0.3s; }
.vyshyvanka-footer__nav-column:nth-child(3) { animation-delay: 0.4s; }
.vyshyvanka-footer__newsletter { animation-delay: 0.5s; }
.vyshyvanka-footer__social { animation-delay: 0.6s; }