/** Shopify CDN: Minification failed

Line 17:0 Unexpected "{"
Line 17:1 Unexpected "{"
Line 17:10 Expected ":"
Line 20:27 Unexpected "{"
Line 20:36 Expected ":"
Line 20:43 Unexpected "{"
Line 439:0 Unexpected "{"
Line 439:1 Unexpected "{"
Line 439:15 Expected ":"

**/


/* CSS from section stylesheet tags */
{{ section.settings.nav_font | font_face: font_display: 'swap' }}

  /* CSS Custom Properties for better maintainability */
  .sottura-header-classic-{{ section.id }} {
    --header-height: 64px;
    --header-height-mobile: 56px;
    --header-bg: #fff;
    --header-border: #e5e5e5;
    --text-primary: #2d2a26;
    --text-hover: #000;
    --accent-color: #2d2a26;
    --transition-fast: 0.2s ease;
    --transition-medium: 0.3s ease;
    --border-radius: 4px;
    --shadow-light: 0 2px 8px rgba(0, 0, 0, 0.1);
    --z-index-header: 1000;
    --z-index-mobile-menu: 9999;
  }

  /* Base header styles */
  .sottura-header-classic {
    background: var(--header-bg);
    width: 100%;
    position: relative;
    z-index: var(--z-index-header);
    border-bottom: 1px solid #f7f7f7;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.03);

  }

  .sottura-header-classic__container {
    padding: 0 15px;
    height: var(--header-height);
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 100%;
    width: 100%;
    margin: 0 auto;
  }

  /* Logo styles */
  .sottura-header-classic__logo {
    flex-shrink: 0;
  }

  .sottura-header-classic__logo-link {
    color: var(--text-primary);
    text-decoration: none;
    display: block;
    transition: transform var(--transition-fast);
  }


  .sottura-header-classic__logo-svg {
    display: block;
    vertical-align: middle;
    width: 40px;
    height: 40px;
  }

  .sottura-header-classic__logo-img {
    display: block;
    width: auto;
    height: auto;
  }

  /* Navigation styles with dynamic font settings */
  .sottura-header-classic__nav {
    display: flex;
    white-space: nowrap;
    overflow: hidden;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    flex: 1;
    margin: 0 20px;
  }

  .sottura-header-classic__nav-link {
    display: inline-block;
    line-height: 15px;
    color: var(--text-primary);
    text-decoration: none;
    padding: 4px 8px;
    border-radius: var(--border-radius);
    position: relative;
    transition: color var(--transition-fast);
  }

  .sottura-header-classic__nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background-color: var(--accent-color);
    transition: all var(--transition-medium);
    transform: translateX(-50%);
  }

  .sottura-header-classic__nav-link:hover {
    color: var(--text-hover);
  }

  .sottura-header-classic__nav-link:hover::after {
    width: 100%;
  }

  .sottura-header-classic__nav-link--active {
    color: var(--text-hover);
  }

  .sottura-header-classic__nav-link--active::after {
    width: 100%;
  }

  /* Action buttons */
  .sottura-header-classic__actions {
    display: flex;
    align-items: center;
    gap: 18px;
    flex-shrink: 0;
  }

  .sottura-header-classic__action-link {
    display: flex;
    align-items: center;
    position: relative;
    color: var(--text-primary);
    text-decoration: none;
    padding: 4px;
    border-radius: var(--border-radius);
    transition: color var(--transition-fast), background-color var(--transition-fast);
  }

  .sottura-header-classic__action-link:hover {
    color: var(--text-hover);
    background-color: #f5f5f5;
  }

  .sottura-header-classic__icon {
    color: currentColor;
  }

  .sottura-header-classic__cart-count {
    position: absolute;
    top: -2px;
    right: -2px;
    background: var(--text-hover);
    color: var(--header-bg);
    font-size: 10px;
    font-weight: 700;
    line-height: 1;
    padding: 2px 4px;
    border-radius: 8px;
    min-width: 16px;
    text-align: center;
  }

  /* Mobile toggle button */
  .sottura-header-classic__mobile-toggle {
    display: none;
    background: none;
    border: none;
    padding: 4px;
    cursor: pointer;
    color: var(--text-primary);
    border-radius: var(--border-radius);
    transition: color var(--transition-fast), background-color var(--transition-fast);
    flex-shrink: 0;
  }

  .sottura-header-classic__mobile-toggle:hover {
    color: var(--text-hover);
    background-color: #f5f5f5;
  }

  /* Mobile menu overlay */
  .sottura-header-classic__mobile-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: calc(var(--z-index-mobile-menu) - 1);
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--transition-medium), visibility var(--transition-medium);
    pointer-events: none;
  }

  .sottura-header-classic__mobile-overlay--visible {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  /* Mobile menu */
  .sottura-header-classic__mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 90%;
    max-width: 480px;
    height: 100vh;
    background: #ffffff;
    z-index: var(--z-index-mobile-menu);
    transform: translateX(-100%);
    transition: transform var(--transition-medium);
    box-shadow: 2px 0 12px rgba(0, 0, 0, 0.15);
    overflow-y: auto;
    overflow-x: hidden;
    display: flex;
    flex-direction: column;
  }

  .sottura-header-classic__mobile-menu--open {
    transform: translateX(0);
  }

  .sottura-header-classic__mobile-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    padding: 8px;
    cursor: pointer;
    color: #2d2a26;
    border-radius: var(--border-radius);
    transition: color var(--transition-fast);
    z-index: 1;
  }

  .sottura-header-classic__mobile-close:hover {
    color: #000;
  }

  .sottura-header-classic__mobile-content {
    display: flex;
    flex-direction: column;
    padding: 32px 24px 32px 24px;
    flex: 1;
    min-height: 100vh;
  }

  .sottura-header-classic__mobile-nav {
    display: flex;
    flex-direction: column;
    width: 100%;
  }

  /* Accordion styles */
  .sottura-header-classic__mobile-accordion {
    border-bottom: 1px solid #e8e5df;
  }

  .sottura-header-classic__mobile-accordion-toggle {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: none;
    border: none;
    padding: 16px 0;
    cursor: pointer;
    line-height: 1.5rem;
    color: #2d2a26;
    text-align: left;
    transition: color var(--transition-fast);
  }

  .sottura-header-classic__mobile-accordion-toggle:hover {
    color: #000;
  }

  .sottura-header-classic__accordion-icon {
    transition: transform var(--transition-medium);
    flex-shrink: 0;
    width: 1.5rem;
    height: 1.5rem;
    stroke-width: 1;
  }

  .sottura-header-classic__mobile-accordion-toggle[aria-expanded="true"] .sottura-header-classic__accordion-icon {
    transform: rotate(180deg);
  }

  .sottura-header-classic__mobile-submenu {
    overflow: hidden;
    transition: max-height 0.4s ease-out, padding 0.4s ease-out;
    max-height: 0;
    padding: 0;
    background: transparent;
  }

  .sottura-header-classic__mobile-submenu--open {
    max-height: 2000px;
    padding: 8px 0 16px 0;
    transition: max-height 0.4s ease-in, padding 0.4s ease-in;
  }

  .sottura-header-classic__mobile-submenu-link {
    display: block;
    padding: 10px 16px;
    color: #2d2a26;
    text-decoration: none;
    transition: color var(--transition-fast), background-color var(--transition-fast);
  }

  .sottura-header-classic__mobile-submenu-link:hover {
    color: #000;
  }

  .sottura-header-classic__mobile-submenu-link--active {
    color: #000;
    font-weight: 600;
  }

  .sottura-header-classic__mobile-nav-link {
    display: block;
    padding: 16px 0;
    line-height: 1.5rem;
    color: #2d2a26;
    text-decoration: none;
    border-bottom: 1px solid #e8e5df;
    transition: color var(--transition-fast);
  }

  .sottura-header-classic__mobile-nav-link:hover {
    color: #000;
  }

  .sottura-header-classic__mobile-nav-link--active {
    color: #000;
  }

  /* Secondary menu section */
  .sottura-header-classic__mobile-secondary {
    margin-top: 30px;
    padding-top: 0;
    border-top: none;
  }

  /* Mobile footer */
  .sottura-header-classic__mobile-footer {
    margin-top: auto;
    padding-top: 60px;
    padding-bottom: 10px;
    border-top: none;
    display: flex;
    flex-direction: column;
    gap: 0;
  }

  .sottura-header-classic__mobile-footer-link {
    line-height: 1.5rem;
    color: #2d2a26;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    padding: 16px 0;
    border-bottom: 1px solid #e8e5df;
    transition: color var(--transition-fast);
  }

  .sottura-header-classic__mobile-footer-link:last-child {
    border-bottom: 1px solid #e8e5df;
  }

  .sottura-header-classic__mobile-footer-link:hover {
    color: #000;
  }

  /* Responsive Design */
  @media (max-width: 768px) {
    .sottura-header-classic__nav {
      display: none;
    }

    .sottura-header-classic__mobile-toggle {
      display: block;
    }

    .sottura-header-classic__container {
      padding: 0 10px;
    }

    .sottura-header-classic__actions {
      gap: 12px;
    }
  }

  @media (max-width: 480px) {
    .sottura-header-classic__logo-svg {
      /* Size controlled by inline style */
    }

    .sottura-header-classic__logo-img {
      /* Size controlled by inline style */
    }

    .sottura-header-classic__container {
      height: var(--header-height-mobile);
    }
  }

  /* Performance optimizations */
  @media (prefers-reduced-motion: reduce) {
    .sottura-header-classic *,
    .sottura-header-classic *::before,
    .sottura-header-classic *::after {
      animation-duration: 0.01ms !important;
      animation-iteration-count: 1 !important;
      transition-duration: 0.01ms !important;
    }
  }
{{ section_font | font_face: font_display: 'swap' }}