/** Shopify CDN: Minification failed

Line 348:0 Unexpected "}"

**/
  /* Base section styling */
  .brand-logo-reveal {
    padding: 4rem 1rem;
    box-sizing: border-box;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 90vh;
  }
  .container {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    padding-top: 20px;
  }
  .brand-logo-reveal__heading {
    margin-bottom: 40px;
  }
  .brand-logo-reveal__subtitle {
    margin-top: 15px;
    line-height: 1.4;
    font-weight: 400;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
  }
  .brand-logo-reveal__content {
    position: relative;
    min-height: 600px;
    width: 100%;
    max-width: 1200px; 
    margin: 0 auto;
    isolation: isolate;
  }
  .dynamic-connectors {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 3;
    pointer-events: none;
  }

  /* Central logo container (300x300) */
  .logo-parts-container {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 300px;
    height: 300px;
    transform: translate(-50%, -50%);
    z-index: 2;
  }

  /* Decorative border around the logo */
  .logo-border-part {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    z-index: 1;
    opacity: 0;
    pointer-events: none;
  }
  .logo-border-part img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  /* Smaller logo grid centered within the border */
  .logo-grid {
    position: absolute;
    width: 70%;
    height: 70%;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 0;
    z-index: 2;
  }
  .logo-part {
    max-height: 105px;
  }

  /* Curly braces: full height, offset further out and behind */
  .curly-brace {
    position: absolute;
    top: 0;
    bottom: 0;
    width: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    z-index: 0;
  }
  .curly-brace.left {
    left: -7rem;
  }
  .curly-brace.right {
    right: -7rem;
  }
  .curly-brace svg {
    height: 100%;
    width: auto;
    display: block;
  }

  /* Curly labels */
  .curly-label {
    position: absolute;
    font-size: 0.85rem;
    color: #333;
    white-space: nowrap;
    opacity: 0;
  }
  .curly-label.left {
    top: 50%;
    left: 0;
    transform: translate(-120%, -50%);
  }
  .curly-label.right {
    top: 50%;
    right: 0;
    transform: translate(120%, -50%);
  }

  /* Feature points */
  .brand-logo-reveal__feature {
    position: absolute;
    width: 220px;
    opacity: 0;
    z-index: 3;
    text-align: center;
  }
  .feature-content {
    background: none;
    color: #333;
    padding: 0.5rem;
    font-size: 0.95rem;
    line-height: 1.4;
  }

  /* Diagonally aligned feature blocks */
  .feature--top-left {
    top: 8%;
    left: 35%;
    transform: translate(-50%,-50%);
  }
  .feature--top-right {
    top: 8%;
    right: 35%;
    transform: translate(50%, -50%) ;
  }
  .feature--left-center {
    top: 50%;
    left: 0;
    transform: translate(-50%, -50%);
  }
  .feature--right-center {
    top: 50%;
    right: 0;
    transform: translate(50%, -50%);
  }
  .feature--bottom-left {
    bottom: 8%;
    left: 35%;
    transform: translate(-50%, 50%);
  }
  .feature--bottom-right {
    bottom: 8%;
    right: 35%;
    transform: translate(50%, 50%);
  }
.mobile-features-container {
  display: none;
}


.logo-info__wrapper {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr;
}
@media(min-width: 768px) {
  .logo-info__wrapper {
    grid-template-columns: 1fr 1fr 1fr;
  }
}
.legend-list {
  list-style: none;
  padding: 0;
}
.legend-item {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}
.legend-color {
  width: 16px;
  height: 16px;
  border-radius: 4px;
  margin-right: 10px;
}
.logo-info__logo-frame img {
  width: 100%;
  border: 3px solid #ccc;
  padding: 10px;
  background: white;
}
.color-breakdown {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.color-box {
  display: flex;
  align-items: center;
  gap: 8px;
}
.color-swatch {
  width: 20px;
  height: 20px;
  border-radius: 3px;
  border: 1px solid #999;
}


/* Mobile Styles */
@media (max-width: 767px) {
  .brand-logo-reveal {
    padding: 3rem 0;
  }
  
  .brand-logo-reveal__content {
    min-height: auto;
    padding-bottom: 2rem;
    display: flex;
    flex-direction: column;
  }

  .logo-parts-container {
    width: 300px;
    height: 300px;
    max-width: 80vw;
    max-height: 80vw;
    position: relative;
    order: 1;
  }

  .mobile-features-container {
    display: block;
    width: 90%;
    margin: 0 auto;
    padding: 0 1rem;
    order: 2;
  }
  
  /* NEW: Styles for the active feature container used by our JS */
  .active-feature {
    opacity: 0; /* Initial hidden state */
    transform: translateX(50px);
    transition: opacity 0.6s ease, transform 0.6s ease;
  }
  
  /* If you choose to add a "visible" class via JS, you can use this: */
  .active-feature.visible {
    opacity: 1;
    transform: translateX(0);
  }

  /* Hide desktop-specific feature elements */
  .brand-logo-reveal__features, .curly-label {
    display: none !important;
  }
}

/* Hide the grid by default */
.mobile-feature-grid {
  display: none;
}
.mobile-curly-labels {
  display: none;
}

/* Mobile view styling: display grid, two columns */
@media (max-width: 767px) {
  .mobile-feature-grid {
    display: block;
    margin-top: 50px; /* space from logo animation */
  }
  .mobile-feature-grid__row {
    display: flex;
    flex-direction: row;
    align-items: center;
    margin-bottom: 20px;
    padding: 0px 20px;
    transform: translateY(-10em);
  }
.mobile-feature-grid__text {
  flex: 2;
  padding: 10px;
}
.mobile-feature-grid__image {
  flex: 1;
  padding: 10px;
  max-width: 120px; /* Adjusted to be similar to the logo-part size */
}
.mobile-feature-grid__image img {
  width: 100%;
  height: auto;
  display: block;
  border: 3px solid #333476;
}

  .mobile-feature-grid__image img {
    width: 100%;
    height: auto;
    display: block;
    border: 3px solid #333476;
  }
   .mobile-curly-labels {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: column;
    transform: translatey(-10em);
  }
  .mobile-curly-labels__item {
    flex: 1;
    text-align: center; 
  }
}
}

