/** Shopify CDN: Minification failed

Line 1349:21 Expected identifier but found whitespace
Line 1349:23 Unexpected "{"
Line 1349:32 Expected ":"
Line 1350:10 Expected identifier but found whitespace
Line 1350:12 Unexpected "{"
Line 1350:21 Expected ":"

**/
/* SHOPIFY_STYLESHEETS_VERSION: 1.0 */


/* CSS from section stylesheet tags */
/* START_SECTION:cart (INDEX:3) */
.cart-page {
    padding: 40px 20px;
    max-width: 1200px;
    margin: 0 auto;
  }

  .cart-title {
    font-size: 11px;
    letter-spacing: 1px;
    margin-bottom: 30px;
    font-weight: normal;
  }

  .cart-form {
    display: flex;
    flex-direction: column;
    gap: 30px;
  }

  .cart-items-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
  }

  .cart-item-row {
    display: grid;
    grid-template-columns: 120px 1fr auto;
    gap: 20px;
    padding-bottom: 30px;
    border-bottom: 1px solid #000000;
  }

  .cart-item-image {
    width: 120px;
    height: 120px;
    overflow: hidden;
  }

  .cart-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  .cart-item-details {
    display: flex;
    flex-direction: column;
    gap: 5px;
  }

  .cart-item-title {
    color: #000000;
    text-decoration: none;
    font-weight: normal;
    font-size: 11px;
  }

  .cart-item-title:hover {
    text-decoration: underline;
  }

  .cart-item-variant {
    opacity: 0.7;
  }

  .cart-item-price {
    font-weight: bold;
    font-size: 11px;
  }

  .cart-item-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: flex-end;
    justify-content: flex-start;
  }

  .cart-item-quantity {
    display: flex;
    align-items: center;
  }

  .quantity-selector {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
  }

  .quantity-btn {
    background: transparent;
    border: none;
    padding: 5px 10px;
    cursor: pointer;
    font-family: 'Courier New', 'Courier', monospace;
    font-size: 18px;
    color: #000000;
    line-height: 1;
    text-align: center;
    transition: opacity 0.2s ease;
  }

  .quantity-btn:hover {
    opacity: 0.6;
  }

  .quantity-input {
    width: 60px;
    padding: 8px 5px;
    border: 1px solid #000000;
    font-size: 12px;
    font-family: 'Courier New', 'Courier', monospace;
    background: #FFFFFF;
    color: #000000;
    text-align: center;
    outline: none;
    -moz-appearance: textfield;
    box-sizing: border-box;
  }

  .quantity-input::-webkit-outer-spin-button,
  .quantity-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
  }

  .cart-remove {
    color: #000000;
    text-decoration: underline;
    font-size: 11px;
    font-family: 'Courier New', 'Courier', monospace;
    margin-top: 8px;
    display: inline-block;
  }

  .cart-remove:hover {
    opacity: 0.7;
  }

  .cart-footer {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding-top: 20px;
    border-top: 1px solid #000000;
  }

  .cart-total {
    font-weight: bold;
    font-size: 11px;
  }

  .cart-total p {
    font-size: 11px;
  }

  .cart-checkout {
    padding: 12px 20px;
    border: 1px solid #000000;
    background: #000000;
    color: #FFFFFF;
    font-size: 12px;
    font-family: 'Courier New', 'Courier', monospace;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
    width: fit-content;
  }

  .cart-checkout:hover {
    background: #FFFFFF;
    color: #000000;
  }

  .cart-empty {
    text-align: center;
    padding: 60px 20px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
  }

  .continue-shopping {
    padding: 10px 20px;
    border: 1px solid #000000;
    color: #000000;
    text-decoration: none;
    font-size: 12px;
    font-family: 'Courier New', 'Courier', monospace;
  }

  .continue-shopping:hover {
    background: #000000;
    color: #FFFFFF;
  }

  @media (max-width: 768px) {
    .cart-item-row {
      grid-template-columns: 1fr;
      gap: 15px;
    }

    .cart-item-image {
      width: 100%;
      height: auto;
      aspect-ratio: 1;
    }

    .cart-item-actions {
      align-items: flex-start;
    }
  }
/* END_SECTION:cart */

/* START_SECTION:collection (INDEX:4) */
.collection-page {
    padding: 30px 20px;
  }

  .collection-title {
    font-size: 11px;
    letter-spacing: 1px;
    margin-bottom: 20px;
    font-weight: normal;
  }

  .collection-products {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 15px;
  }

  @media screen and (max-width: 749px) {
    .collection-page {
      padding: 20px 15px;
      margin-top: 60px;
    }

    .collection-products {
      grid-template-columns: repeat(3, 1fr);
      gap: 12px;
    }

    .collection-title {
      font-size: 10px;
      margin-bottom: 20px;
    }

    .product-title {
      font-size: 8px;
    }

    .product-price {
      font-size: 8px;
    }
  }

  .collection-product {
    display: flex;
    flex-direction: column;
  }

  .product-link {
    color: #000000;
    text-decoration: none;
    display: flex;
    flex-direction: column;
  }

  .product-image {
    width: 100%;
    aspect-ratio: 1;
    overflow: hidden;
    margin-bottom: 8px;
  }

  .product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  .product-info {
    display: flex;
    flex-direction: column;
    gap: 3px;
    text-align: center;
  }

  .product-title {
    font-size: 9px;
    letter-spacing: 1px;
    font-weight: normal;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.3;
    min-height: 2.6em;
    text-align: center;
  }

  .product-price {
    font-size: 9px;
    letter-spacing: 1px;
    font-weight: bold;
    text-align: center;
  }

  .product-link:hover .product-title {
    text-decoration: underline;
  }

  .pagination {
    grid-column: 1 / -1;
    margin-top: 40px;
    display: flex;
    justify-content: center;
    gap: 10px;
  }

  .pagination a,
  .pagination span {
    padding: 5px 10px;
    border: 1px solid #000000;
    color: #000000;
    text-decoration: none;
    font-size: 11px;
    font-family: 'Courier New', 'Courier', monospace;
  }

  .pagination .current {
    background: #000000;
    color: #FFFFFF;
  }

  .pagination a:hover {
    background: #000000;
    color: #FFFFFF;
  }
/* END_SECTION:collection */

/* START_SECTION:collections (INDEX:5) */
.collections {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(min(var(--collection-card-size), 100%), 1fr));
    gap: var(--grid-gap);
  }
  .collections--compact {
    --collection-card-size: 160px;
  }
  .collections--full {
    --collection-card-size: 280px;
  }
  .collection-card {
    display: flex;
    flex-direction: column;
    width: 100%;
  }
/* END_SECTION:collections */

/* START_SECTION:community-gallery-plus (INDEX:6) */
.community-gallery-plus {
    padding: 60px 20px;
    min-height: 100vh;
  }

  .community-gallery-plus__container {
    max-width: 1400px;
    margin: 0 auto;
  }

  .community-gallery-plus__grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: var(--grid-gap, 20px);
  }

  .community-gallery-plus__card {
    cursor: pointer;
    overflow: hidden;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1),
                box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    aspect-ratio: 4/5;
  }

  .community-gallery-plus__card:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  }

  .community-gallery-plus__card-image {
    width: 100%;
    height: 100%;
    overflow: hidden;
  }

  .community-gallery-plus__card-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    aspect-ratio: 4/5;
  }

  .community-gallery-plus__card:hover .community-gallery-plus__card-image img {
    transform: scale(1.1);
  }

  /* Modal Styles */
  .community-gallery-plus__modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
  }

  .community-gallery-plus__modal[aria-hidden="false"] {
    display: flex;
  }

  .community-gallery-plus__modal-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
  }

  .community-gallery-plus__modal-content {
    position: relative;
    background: #fff;
    border-radius: 16px;
    max-width: 1200px;
    width: 100%;
    height: 90vh;
    max-height: 90vh;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    z-index: 1;
    display: flex;
    flex-direction: column;
  }

  .community-gallery-plus__modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    border: none;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: background 0.2s;
  }

  .community-gallery-plus__modal-close svg {
    width: 24px;
    height: 24px;
  }

  .community-gallery-plus__modal-close:hover {
    background: rgba(255, 255, 255, 1);
  }

  .community-gallery-plus__modal-body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    height: 100%;
    overflow: hidden;
    align-items: stretch;
  }

  .community-gallery-plus__modal-media {
    position: relative;
    background: #f5f5f5;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    height: 100%;
    overflow: hidden;
    padding: 0;
  }

  .community-gallery-plus__modal-gallery {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 40px;
    overflow-y: auto;
    overflow-x: hidden;
    height: 100%;
    align-items: center;
    justify-content: flex-start;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
  }

  /* Ensure desktop gallery is scrollable */
  @media screen and (min-width: 1025px) {
    .community-gallery-plus__modal-gallery {
      overflow-y: auto;
      overflow-x: hidden;
    }
  }

  .community-gallery-plus__modal-gallery img {
    width: 100%;
    max-width: 100%;
    height: auto;
    aspect-ratio: 4/5;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    display: block;
    flex-shrink: 0;
  }

  .community-gallery-plus__modal-gallery-nav {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 5;
  }

  .community-gallery-plus__modal-nav-btn {
    width: 44px;
    height: 44px;
    border: none;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
  }

  .community-gallery-plus__modal-nav-btn:hover {
    background: rgba(255, 255, 255, 1);
  }

  .community-gallery-plus__modal-nav-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
  }

  .community-gallery-plus__modal-gallery-dots {
    display: none;
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    gap: 6px;
    z-index: 5;
    justify-content: center;
    align-items: center;
  }

  .community-gallery-plus__modal-gallery-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    border: none;
    cursor: pointer;
    padding: 0;
    transition: background 0.2s, transform 0.2s;
  }

  .community-gallery-plus__modal-gallery-dot.active {
    background: rgba(255, 255, 255, 1);
    transform: scale(1.2);
  }

  .community-gallery-plus__modal-info {
    padding: 60px 40px;
    overflow-y: auto;
    max-height: 90vh;
  }

  .community-gallery-plus__modal-header {
    margin-bottom: 32px;
    padding-bottom: 24px;
    border-bottom: 1px solid #e5e5e5;
  }

  .community-gallery-plus__modal-username {
    font-family: var(--heading-font-family);
    font-weight: var(--heading-font-weight);
    font-style: var(--heading-font-style);
    font-size: 28px;
    margin: 0 0 8px 0;
    letter-spacing: -0.5px;
  }

  .community-gallery-plus__modal-location {
    font-family: var(--body-font-family);
    font-weight: var(--body-font-weight);
    font-style: var(--body-font-style);
    font-size: 16px;
    color: #666;
    margin: 0;
  }

  .community-gallery-plus__modal-description {
    font-family: var(--body-font-family);
    font-weight: var(--body-font-weight);
    font-style: var(--body-font-style);
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 40px;
    color: #333;
  }

  .community-gallery-plus__modal-products {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }

  @media screen and (max-width: 749px) {
    .community-gallery-plus__modal-products {
      grid-template-columns: 1fr 1fr;
      gap: 12px;
    }
  }

  .community-gallery-plus__modal-product {
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  .community-gallery-plus__modal-product-image {
    width: 100%;
    aspect-ratio: 1;
    overflow: hidden;
    border-radius: 8px;
    background: #f5f5f5;
  }

  .community-gallery-plus__modal-product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  .community-gallery-plus__modal-product-title {
    font-family: var(--body-font-family);
    font-weight: var(--body-font-weight);
    font-style: var(--body-font-style);
    font-size: 14px;
    margin: 0;
    line-height: 1.4;
  }

  .community-gallery-plus__modal-product-price {
    font-family: var(--body-font-family);
    font-weight: var(--body-font-weight);
    font-style: var(--body-font-style);
    font-size: 14px;
    margin: 0;
  }

  /* Responsive */
  @media screen and (max-width: 1024px) {
    .community-gallery-plus__grid {
      grid-template-columns: repeat(3, 1fr);
    }

    .community-gallery-plus__modal-body {
      grid-template-columns: 1fr;
      max-height: 95vh;
    }

    .community-gallery-plus__modal-media {
      max-height: 50vh;
    }

    .community-gallery-plus__modal-gallery {
      flex-direction: row;
      overflow-x: auto;
      overflow-y: hidden;
      padding: 20px;
      gap: 16px;
      scroll-snap-type: x mandatory;
      -webkit-overflow-scrolling: touch;
    }

    .community-gallery-plus__modal-gallery img {
      min-width: 80%;
      aspect-ratio: 4/5;
      height: auto;
      object-fit: contain;
      scroll-snap-align: center;
    }

    .community-gallery-plus__modal-gallery-nav {
      display: none;
    }

    .community-gallery-plus__modal-info {
      padding: 40px 30px;
    }
  }

  @media screen and (max-width: 749px) {
    .community-gallery-plus {
      padding: 40px 15px;
    }

    .community-gallery-plus__grid {
      grid-template-columns: repeat(3, 1fr);
      gap: 12px;
    }

    .community-gallery-plus__modal-content {
      max-height: 95vh;
      border-radius: 12px;
    }

    .community-gallery-plus__modal-body {
      max-height: 95vh;
      gap: 0;
    }

    .community-gallery-plus__modal-media {
      max-height: 50vh;
      min-height: 50vh;
      padding-top: 0;
    }

    .community-gallery-plus__modal-gallery {
      max-height: 50vh;
      padding: 0;
      justify-content: flex-start;
      scroll-snap-type: x mandatory;
      -webkit-overflow-scrolling: touch;
    }

    .community-gallery-plus__modal-gallery img {
      min-width: 100%;
      width: 100%;
      aspect-ratio: 4/5;
      height: auto;
      object-fit: contain;
      scroll-snap-align: start;
      border-radius: 0;
      box-shadow: none;
    }

    .community-gallery-plus__modal-close {
      top: 10px;
      right: 10px;
      width: 28px;
      height: 28px;
    }

    .community-gallery-plus__modal-close svg {
      width: 16px;
      height: 16px;
    }

    .community-gallery-plus__modal-gallery-nav {
      display: none;
    }

    .community-gallery-plus__modal-gallery-dots {
      display: flex;
      bottom: 10px;
    }

    .community-gallery-plus__modal-info {
      padding: 30px 15px 20px 15px;
      max-height: 65vh;
      overflow-y: auto;
    }

    .community-gallery-plus__modal-header {
      margin-bottom: 16px;
      padding-bottom: 12px;
    }

    .community-gallery-plus__modal-username {
      font-size: 20px;
      margin-bottom: 4px;
    }

    .community-gallery-plus__modal-location {
      font-size: 14px;
    }

    .community-gallery-plus__modal-description {
      font-size: 14px;
      line-height: 1.5;
      margin-bottom: 20px;
    }

    .community-gallery-plus__modal-products {
      grid-template-columns: 1fr 1fr;
      gap: 10px;
    }
  }
/* END_SECTION:community-gallery-plus */

/* START_SECTION:custom-section (INDEX:7) */
.custom-section {
    position: relative;
    overflow: hidden;
    width: 100%;
  }
  .custom-section__background {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
  }
  .custom-section__background img {
    position: absolute;
    width: 100%;
    height: auto;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  .custom-section__content {
    display: grid;
    grid-template-columns: var(--content-grid);
  }
  .custom-section__content > * {
    grid-column: 2;
  }
/* END_SECTION:custom-section */

/* START_SECTION:footer (INDEX:11) */
.site-footer {
    padding: 30px 20px;
    border-top: 1px solid #000000;
    margin-top: 60px;
  }

  .footer-content {
    text-align: center;
  }

  .footer-text {
    font-size: 11px;
    letter-spacing: 1px;
    color: #000000;
  }
/* END_SECTION:footer */

/* START_SECTION:header (INDEX:12) */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    padding: 15px 20px;
    z-index: 1500;
    background: #FFFFFF;
    border-bottom: 1px solid #000000;
  }

  .header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 100%;
    position: relative;
  }

  .header-logo {
    flex: 0 0 auto;
  }

  .logo-link {
    color: #000000;
    text-decoration: none;
    display: block;
  }

  .logo-image {
    display: block;
    max-width: 100px;
    height: auto;
  }

  .logo-text {
    font-size: 11px;
    letter-spacing: 0.5px;
    font-family: 'Courier New', Courier, monospace;
  }

  .header-cart-icon {
    position: fixed;
    left: 50%;
    top: 15px;
    transform: translateX(-50%);
    background: none;
    border: none;
    cursor: pointer;
    color: #000000;
    padding: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1501;
  }

  .cart-icon-svg {
    width: 20px;
    height: 20px;
    stroke: #000000;
    stroke-width: 2;
    fill: none;
  }

  .cart-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background: #000000;
    color: #FFFFFF;
    font-size: 9px;
    font-family: 'Courier New', Courier, monospace;
    padding: 2px 5px;
    border-radius: 50%;
    min-width: 16px;
    height: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .header-menu-icon {
    flex: 0 0 auto;
    background: none;
    border: none;
    cursor: pointer;
    color: #000000;
    padding: 5px;
    display: none;
  }

  .menu-icon-svg {
    width: 24px;
    height: 24px;
    stroke: #000000;
    stroke-width: 2;
    fill: none;
  }

  /* Mobile styles */
  @media screen and (max-width: 749px) {
    .site-header {
      padding: 12px 15px;
    }

    .header-menu-icon.mobile-only {
      display: block;
    }

    .logo-image {
      max-width: 80px;
    }

    .cart-icon-svg {
      width: 18px;
      height: 18px;
    }
  }

  /* Desktop: Hide header on desktop since sidebar is visible */
  @media screen and (min-width: 750px) {
    .site-header {
      display: none;
    }
  }
/* END_SECTION:header */

/* START_SECTION:hello-world (INDEX:13) */
.welcome {
    display: grid;
    grid-template-columns: var(--content-grid);
    background-color: #f6f6f7;
    padding: 72px 0;
  }

  .welcome-content {
    grid-column: 2;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    width: 100%;
    padding: 0 24px;
  }

  .welcome-description {
    max-width: 80ch;
    line-height: 1.4;
    margin-top: 1.5rem;
  }

  .icon {
    width: 300px;
  }

  .highlights {
    display: grid;
    gap: 2rem;
    grid-template-columns: repeat(3, 1fr);
    margin-top: 50px;
  }

  @media (max-width: 1100px) {
    .highlights {
      grid-template-columns: 1fr;
    }
  }

  .highlight {
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 24px;
    border-radius: 8px;
    background-color: #eef3ff;
    color: rgb(92, 95, 98);
    line-height: 1.4;
  }

  .highlight > * + * {
    margin-top: 1rem;
  }

  .highlight h3 {
    font-size: 1rem;
    color: rgb(32, 34, 35);
  }

  .highlight-description {
    flex: 1 1;
  }

  .highlight a {
    display: flex;
    width: fit-content;
    background-color: rgb(250, 251, 251);
    box-shadow: rgba(0, 0, 0, 0.2) 0px -3px 0px 0px inset, rgba(255, 255, 255, 0.9) 0px 2px 0px 0px inset;
    border: 1px solid rgb(140, 145, 150);
    border-radius: 4px;
    color: rgb(92, 95, 98);
    padding: 3px 10px 5px;
    text-decoration: none;
  }
/* END_SECTION:hello-world */

/* START_SECTION:homepage (INDEX:14) */
.homepage-section {
    padding: 30px 20px;
  }

  .products-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 15px;
  }

  @media screen and (max-width: 749px) {
    .homepage-section {
      padding: 20px 15px;
    }

    .products-grid {
      grid-template-columns: repeat(2, 1fr);
      gap: 12px;
    }

    .product-title {
      font-size: 8px;
    }

    .product-price {
      font-size: 8px;
    }
  }

  .product-card {
    display: flex;
    flex-direction: column;
  }

  .product-link {
    color: #000000;
    text-decoration: none;
    display: flex;
    flex-direction: column;
  }

  .product-image {
    width: 100%;
    aspect-ratio: 1;
    overflow: hidden;
    margin-bottom: 8px;
  }

  .product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  .product-info {
    display: flex;
    flex-direction: column;
    gap: 3px;
    text-align: center;
  }

  .product-title {
    font-size: 9px;
    letter-spacing: 1px;
    font-weight: normal;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.3;
    min-height: 2.6em;
    text-align: center;
  }

  .product-price {
    font-size: 9px;
    letter-spacing: 1px;
    font-weight: bold;
    text-align: center;
  }

  .product-link:hover .product-title {
    text-decoration: underline;
  }
/* END_SECTION:homepage */

/* START_SECTION:mailing-list (INDEX:15) */
.mailing-list-page {
    padding: 60px 20px;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .mailing-list-container {
    max-width: 500px;
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
    text-align: left !important;
  }

  .mailing-list-title {
    font-size: 11px;
    letter-spacing: 1px;
    margin-bottom: 30px;
    font-weight: normal;
    text-align: left !important;
    font-family: 'Courier New', 'Courier', monospace;
  }

  .mailing-list-description {
    font-size: 10px;
    line-height: 1.6;
    margin-bottom: 40px;
    text-align: left !important;
    color: #000000;
    font-family: 'Courier New', 'Courier', monospace;
  }

  .mailing-list-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: stretch;
    width: 100%;
  }

  .form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 100%;
  }

  .form-label {
    font-size: 11px;
    letter-spacing: 1px;
    color: #000000;
    font-family: 'Courier New', 'Courier', monospace;
  }

  .form-input {
    background: #FFFFFF;
    color: #000000;
    border: 1px solid #000000;
    padding: 12px 15px;
    font-size: 12px;
    font-family: 'Courier New', 'Courier', monospace;
    outline: none;
    width: 100%;
    box-sizing: border-box;
  }

  .form-input::placeholder {
    color: #000000;
    opacity: 0.5;
  }

  .form-input:focus {
    background: #000000;
    color: #FFFFFF;
  }

  .form-input:focus::placeholder {
    color: #FFFFFF;
    opacity: 0.7;
  }

  .form-submit {
    background: #000000;
    color: #FFFFFF;
    border: 1px solid #000000;
    padding: 12px 30px;
    font-size: 12px;
    letter-spacing: 1px;
    font-family: 'Courier New', 'Courier', monospace;
    cursor: pointer;
    outline: none;
    text-align: center;
    transition: all 0.2s ease;
    width: 100%;
  }

  .form-submit:hover {
    background: #FFFFFF;
    color: #000000;
  }

  .form-submit:active {
    transform: scale(0.98);
  }

  .mailing-list-message {
    margin-top: 20px;
    padding: 15px;
    text-align: left !important;
    font-size: 12px;
    font-family: 'Courier New', 'Courier', monospace;
    border: 1px solid #000000;
    width: 100%;
  }

  .mailing-list-message.success {
    background: #000000;
    color: #FFFFFF;
  }

  .mailing-list-message.error {
    background: #FFFFFF;
    color: #000000;
    border-color: #000000;
  }

  @media screen and (max-width: 749px) {
    .mailing-list-page {
      padding: 40px 20px;
    }

    .mailing-list-title {
      font-size: 12px;
      margin-bottom: 20px;
    }

    .mailing-list-description {
      font-size: 11px;
      margin-bottom: 30px;
    }
  }
/* END_SECTION:mailing-list */

/* START_SECTION:origin-story (INDEX:17) */
.origin-story-section {
    padding: 60px 20px;
    min-height: 100vh;
    background-color: {{ section.settings.background_color | default: '#FFFFFF' }};
    color: {{ section.settings.text_color | default: '#000000' }};
  }

  .origin-story-container {
    max-width: 1400px;
    margin: 0 auto;
  }

  .origin-story-title {
    font-size: 48px;
    font-weight: 600;
    margin: 0 0 20px 0;
    text-align: center;
    letter-spacing: -0.5px;
    font-family: 'Courier New', Courier, monospace;
    text-transform: uppercase;
  }

  .origin-story-subtitle {
    font-size: 20px;
    margin: 0 0 60px 0;
    text-align: center;
    line-height: 1.6;
    font-family: 'Courier New', Courier, monospace;
  }

  .origin-story-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
  }

  .origin-story-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .origin-story-main-text {
    font-size: 18px;
    line-height: 1.8;
    font-family: 'Courier New', Courier, monospace;
  }

  .origin-story-main-text p {
    margin: 0 0 20px 0;
  }

  .origin-story-main-text p:last-child {
    margin-bottom: 0;
  }

  .origin-story-image {
    width: 100%;
    overflow: hidden;
  }

  .origin-story-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
  }

  /* Mobile Styles */
  @media screen and (max-width: 749px) {
    .origin-story-section {
      padding: 40px 15px;
    }

    .origin-story-title {
      font-size: 32px;
      margin-bottom: 15px;
    }

    .origin-story-subtitle {
      font-size: 16px;
      margin-bottom: 40px;
    }

    .origin-story-content {
      grid-template-columns: 1fr;
      gap: 30px;
    }

    .origin-story-image {
      order: -1;
    }

    .origin-story-main-text {
      font-size: 16px;
      line-height: 1.6;
      padding: 0 10px;
    }
  }
/* END_SECTION:origin-story */

/* START_SECTION:page (INDEX:18) */
.page-content {
    padding: 40px 20px;
    max-width: 1400px;
    margin: 0 auto;
    text-align: left !important;
  }

  .page-title {
    font-size: 11px;
    letter-spacing: 1px;
    margin-bottom: 30px;
    font-weight: normal;
    text-align: left !important;
    font-family: 'Courier New', 'Courier', monospace;
  }

  .page-body {
    text-align: left !important;
  }

  .page-body h1,
  .page-body h2,
  .page-body h3,
  .page-body h4,
  .page-body h5,
  .page-body h6,
  .page-body p,
  .page-body div,
  .page-body span,
  .page-body section,
  .page-body article {
    text-align: left !important;
    font-family: 'Courier New', 'Courier', monospace;
  }

  .page-body * {
    text-align: left !important;
  }

  .page-body [style*="text-align: center"],
  .page-body [style*="text-align:center"],
  .page-body [style*="text-align: center;"],
  .page-body [style*="text-align:center;"] {
    text-align: left !important;
  }

  .page-content [style*="text-align: center"],
  .page-content [style*="text-align:center"],
  .page-content [style*="text-align: center;"],
  .page-content [style*="text-align:center;"] {
    text-align: left !important;
  }

  /* Force left alignment for all text elements */
  .page-content h1,
  .page-content h2,
  .page-content h3,
  .page-content h4,
  .page-content h5,
  .page-content h6,
  .page-content p,
  .page-content div,
  .page-content span {
    text-align: left !important;
  }
/* END_SECTION:page */

/* START_SECTION:product (INDEX:20) */
.product-page {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    padding: 40px 20px;
    max-width: 1400px;
    margin: 0 auto;
  }

  .product-media {
    position: relative;
  }

  .product-image-slider {
    position: relative;
    width: 100%;
  }

  .product-slider-container {
    position: relative;
    width: 100%;
    aspect-ratio: 1;
    overflow: hidden;
  }

  .product-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }

  .product-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  .slider-controls {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 10px;
    pointer-events: none;
  }

  .slider-btn {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid #000000;
    color: #000000;
    width: 40px;
    height: 40px;
    cursor: pointer;
    font-size: 18px;
    font-family: 'Courier New', 'Courier', monospace;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: all;
    transition: all 0.2s ease;
  }

  .slider-btn:hover {
    background: #000000;
    color: #FFFFFF;
  }

  .slider-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 15px;
  }

  .slider-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    border: 1px solid #000000;
    background: transparent;
    cursor: pointer;
    padding: 0;
    transition: all 0.2s ease;
  }

  .slider-dot.active {
    background: #000000;
  }

  .product-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  .product-header {
    display: flex;
    flex-direction: column;
    gap: 5px;
    align-items: flex-start;
  }

  .product-title {
    font-size: 10px;
    letter-spacing: 1px;
    font-weight: normal;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.3;
    min-height: 2.6em;
    text-align: left;
  }

  .product-price {
    font-size: 11px;
    letter-spacing: 1px;
    font-weight: bold;
    text-align: left;
  }

  .product-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
  }

  .product-description {
    font-size: 10px;
    line-height: 1.6;
    max-width: 500px;
    text-align: left;
  }

  .product-form {
    margin-top: 20px;
    width: 100%;
  }

  .product-form-inner {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
    width: 100%;
  }

  .variant-selector {
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: flex-start;
    width: 100%;
  }

  .cart-actions-wrapper {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: flex-start;
    width: 100%;
  }

  .quantity-selector {
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: flex-start;
  }

  .variant-selector label,
  .quantity-selector label {
    font-size: 11px;
    letter-spacing: 1px;
    font-weight: normal;
    margin-bottom: 5px;
    text-align: left;
  }

  .variant-select {
    padding: 8px 10px;
    border: 1px solid #000000;
    background: #FFFFFF;
    color: #000000;
    font-size: 12px;
    font-family: 'Courier New', 'Courier', monospace;
    cursor: pointer;
    outline: none;
    text-align: left;
    width: 100%;
    max-width: 300px;
  }

  .quantity-controls {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
    width: fit-content;
  }

  .quantity-controls .quantity-btn {
    background: transparent;
    border: none;
    padding: 5px 10px;
    cursor: pointer;
    font-family: 'Courier New', 'Courier', monospace;
    font-size: 18px;
    color: #000000;
    line-height: 1;
    text-align: center;
    transition: opacity 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .quantity-controls .quantity-btn:hover {
    opacity: 0.6;
  }

  .quantity-input {
    width: 70px;
    padding: 8px 10px;
    border: 1px solid #000000;
    background: #FFFFFF;
    color: #000000;
    font-size: 12px;
    font-family: 'Courier New', 'Courier', monospace;
    outline: none;
    text-align: center;
    -moz-appearance: textfield;
    box-sizing: border-box;
  }

  .quantity-input::-webkit-outer-spin-button,
  .quantity-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
  }

  .quantity-input:focus {
    background: #F5F5F5;
  }

  .quantity-input::-webkit-outer-spin-button,
  .quantity-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
  }

  .add-to-cart {
    padding: 12px 30px;
    border: 1px solid #000000;
    background: #000000;
    color: #FFFFFF;
    font-size: 12px;
    font-family: 'Courier New', 'Courier', monospace;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
    width: 100%;
    max-width: 300px;
    transition: all 0.2s ease;
  }

  .add-to-cart:hover:not(:disabled) {
    background: #FFFFFF;
    color: #000000;
  }

  .add-to-cart:active:not(:disabled) {
    transform: scale(0.98);
  }

  .add-to-cart:disabled {
    opacity: 0.5;
    cursor: not-allowed;
  }

  .recommended-products {
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px solid #000000;
  }

  .recommended-title {
    font-size: 11px;
    letter-spacing: 1px;
    margin-bottom: 20px;
    font-weight: normal;
  }

  .recommended-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
  }

  .recommended-product {
    color: #000000;
    text-decoration: none;
    display: flex;
    flex-direction: column;
  }

  .recommended-image {
    width: 100%;
    aspect-ratio: 1;
    overflow: hidden;
    margin-bottom: 8px;
  }

  .recommended-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  .recommended-info {
    display: flex;
    flex-direction: column;
    gap: 3px;
    text-align: center;
  }

  .recommended-name {
    font-size: 9px;
    letter-spacing: 1px;
    font-weight: normal;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.3;
    min-height: 2.6em;
    text-align: center;
  }

  .recommended-price {
    font-size: 9px;
    letter-spacing: 1px;
    font-weight: bold;
    text-align: center;
  }

  @media screen and (max-width: 749px) {
    .product-page {
      grid-template-columns: 1fr;
      gap: 25px;
      padding: 20px 15px;
    }

    .product-header {
      margin-top: 10px;
    }

    .product-title {
      font-size: 11px;
    }

    .product-price {
      font-size: 12px;
    }

    .product-description {
      font-size: 11px;
    }

    .variant-select,
    .add-to-cart {
      max-width: 100%;
    }

    .quantity-input {
      width: 60px;
    }

    .recommended-grid {
      grid-template-columns: repeat(2, 1fr);
      gap: 12px;
    }

    .recommended-name {
      font-size: 8px;
    }

    .recommended-price {
      font-size: 8px;
    }

    .slider-btn {
      width: 35px;
      height: 35px;
      font-size: 16px;
    }
  }
/* END_SECTION:product */

/* START_SECTION:search (INDEX:21) */
.search-results {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 15px;
  }

  .search-result {
    display: flex;
    flex-direction: column;
  }

  .search-result__image {
    margin-bottom: 8px;
  }

  .search-result__content {
    text-align: center;
  }

  .search-result__content p {
    font-size: 9px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.3;
    min-height: 2.6em;
    text-align: center;
  }

  .search-result__content a {
    font-weight: bold;
    color: #000000;
  }

  .search-results .prev,
  .search-results .page,
  .search-results .next {
    grid-column: 1 / -1;
  }

  @media screen and (max-width: 749px) {
    .search-results {
      grid-template-columns: repeat(3, 1fr);
      gap: 10px;
    }
  }
/* END_SECTION:search */

/* CSS from block stylesheet tags */
/* START_BLOCK:group (INDEX:29) */
.group {
    display: flex;
    flex-wrap: nowrap;
    overflow: hidden;
    width: 100%;
  }

  .group--horizontal {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 0 var(--padding);
  }

  .group--vertical {
    flex-direction: column;
    align-items: var(--alignment);
    padding: var(--padding) 0;
  }
/* END_BLOCK:group */

/* START_BLOCK:text (INDEX:30) */
.text {
    text-align: var(--text-align);
  }
  .text--title {
    font-size: 2rem;
    font-weight: 700;
  }
  .text--subtitle {
    font-size: 1.5rem;
  }
/* END_BLOCK:text */

/* CSS from snippet stylesheet tags */
/* START_SNIPPET:cart-drawer (INDEX:31) */
.cart-drawer-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1900;
  }

  .cart-drawer {
    position: fixed;
    top: 0;
    right: 0;
    width: 400px;
    height: 100vh;
    background: #FFFFFF;
    color: #000000;
    z-index: 2000;
    border-left: 1px solid #000000;
    overflow-y: auto;
  }

  /* Mobile: Full width cart drawer */
  @media screen and (max-width: 749px) {
    .cart-drawer {
      width: 100%;
      max-width: 100%;
    }
  }

  .cart-drawer-content {
    display: flex;
    flex-direction: column;
    height: 100%;
  }

  .cart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid #000000;
  }

  .cart-close {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 20px;
    color: #000000;
    font-family: 'Courier New', Courier, monospace;
  }

  .cart-items {
    flex: 1;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  .cart-item {
    display: flex;
    gap: 15px;
    padding-bottom: 20px;
    border-bottom: 1px solid #000000;
    align-items: flex-start;
  }

  .cart-item-image {
    width: 80px;
    height: 80px;
    flex-shrink: 0;
  }

  .cart-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .cart-item-details {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 5px;
  }

  .cart-item-title {
    font-weight: bold;
    color: #000000;
    text-decoration: none;
    display: block;
    font-size: 11px;
  }

  .cart-item-title:hover {
    text-decoration: underline;
  }

  .cart-item-variant {
    opacity: 0.7;
  }

  .cart-item-price {
    font-weight: bold;
    font-size: 11px;
  }

  .cart-item-controls {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 0;
    align-items: flex-end;
  }

  .quantity-form {
    margin: 0;
  }

  .quantity-selector {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
  }

  .quantity-btn {
    background: transparent;
    border: none;
    padding: 5px 10px;
    cursor: pointer;
    font-family: 'Courier New', Courier, monospace;
    font-size: 18px;
    color: #000000;
    line-height: 1;
    text-align: center;
    transition: opacity 0.2s ease;
  }

  .quantity-btn:hover {
    opacity: 0.6;
  }

  .quantity-input {
    width: 50px;
    padding: 6px 5px;
    border: 1px solid #000000;
    font-size: 11px;
    font-family: 'Courier New', Courier, monospace;
    background: #FFFFFF;
    color: #000000;
    text-align: center;
    outline: none;
    -moz-appearance: textfield;
    box-sizing: border-box;
  }

  .quantity-input::-webkit-outer-spin-button,
  .quantity-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
  }

  .cart-remove {
    color: #000000;
    text-decoration: underline;
    font-family: 'Courier New', Courier, monospace;
    font-size: 11px;
    cursor: pointer;
  }

  .cart-remove:hover {
    opacity: 0.7;
  }

  .cart-empty {
    text-align: center;
    padding: 40px 20px;
  }

  .cart-footer {
    padding: 20px;
    border-top: 1px solid #000000;
    display: flex;
    flex-direction: column;
    gap: 15px;
  }

  .cart-total {
    font-weight: bold;
    font-size: 11px;
  }

  .cart-total p {
    font-size: 11px;
  }

  .cart-checkout {
    display: block;
    text-align: center;
    padding: 10px;
    background: #000000;
    color: #FFFFFF;
    text-decoration: none;
    font-family: 'Courier New', Courier, monospace;
    border: 1px solid #000000;
  }

  .cart-checkout {
    width: 100%;
  }

  .cart-checkout:hover {
    background: #FFFFFF;
    color: #000000;
  }

  .cart-view {
    display: block;
    text-align: center;
    padding: 10px;
    background: #FFFFFF;
    color: #000000;
    text-decoration: underline;
    font-family: 'Courier New', Courier, monospace;
    border: 1px solid #000000;
    font-size: 11px;
  }

  .cart-view:hover {
    background: #000000;
    color: #FFFFFF;
    text-decoration: none;
  }
/* END_SNIPPET:cart-drawer */

/* START_SNIPPET:image (INDEX:52) */
.image {
    display: block;
    position: relative;
    overflow: hidden;
    width: 100%;
    height: auto;
  }

  .image > img {
    width: 100%;
    height: auto;
  }
/* END_SNIPPET:image */

/* START_SNIPPET:sidebar-navigation (INDEX:55) */
.menu-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1700;
    display: none;
  }

  .fixed-sidebar {
    position: fixed;
    left: 0;
    top: 0;
    width: 140px;
    height: 100vh;
    background: #FFFFFF;
    color: #000000;
    z-index: 1000;
    overflow-y: auto;
    border-right: 1px solid #FFFFFF;
  }

  .sidebar-mobile-header {
    display: none;
  }

  .menu-title {
    font-size: 11px;
    letter-spacing: 1px;
    font-weight: normal;
    font-family: 'Courier New', Courier, monospace;
  }

  .menu-close {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 24px;
    color: #000000;
    font-family: 'Courier New', Courier, monospace;
    padding: 0;
    line-height: 1;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .mobile-only {
    display: none;
  }

  .sidebar-content {
    padding: 15px 12px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    height: 100vh;
  }

  .logo-link {
    color: #000000;
    text-decoration: none;
    display: block;
  }

  .logo-image {
    display: block;
    max-width: 100%;
    height: auto;
  }

  .logo-text {
    font-size: 11px;
    letter-spacing: 0.5px;
    font-family: 'Courier New', Courier, monospace;
  }

  .sidebar-nav {
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
  }

  .nav-link {
    color: #000000;
    text-decoration: none;
    font-size: 11px;
    letter-spacing: 0.5px;
    padding: 3px 0;
    display: block;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: 'Courier New', Courier, monospace;
  }

  .nav-link:hover {
    text-decoration: underline;
  }

  .nav-link-dropdown {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
  }

  .dropdown-icon {
    margin-left: 8px;
    font-size: 10px;
  }

  .nav-dropdown {
    display: flex;
    flex-direction: column;
  }

  .dropdown-menu {
    margin-top: 6px;
    margin-left: 10px;
    display: flex;
    flex-direction: column;
    gap: 4px;
  }

  .dropdown-item {
    color: #000000;
    text-decoration: none;
    font-size: 10px;
    letter-spacing: 0.5px;
    padding: 2px 0;
  }

  .dropdown-item:hover {
    text-decoration: underline;
  }

  .sidebar-cart {
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px solid #000000;
  }

  .cart-link {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 8px;
    padding: 5px 0;
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    cursor: pointer;
  }

  .cart-icon-svg {
    width: 18px;
    height: 18px;
    stroke: #000000;
    fill: none;
    stroke-width: 1.5;
    flex-shrink: 0;
    transition: transform 0.2s ease;
  }

  .cart-link:hover .cart-icon-svg {
    transform: scale(1.1);
  }

  .cart-total-price {
    font-size: 11px;
    letter-spacing: 0.5px;
    font-weight: normal;
  }

  .cart-link:hover .cart-total-price {
    text-decoration: underline;
  }

  .cart-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    background: #000000;
    color: #FFFFFF;
    font-size: 8px;
    font-family: 'Courier New', Courier, monospace;
    padding: 1px 3px;
    border-radius: 50%;
    min-width: 14px;
    height: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .cart-label {
    font-size: 11px;
    letter-spacing: 0.5px;
  }

  .cart-total {
    font-size: 11px;
    letter-spacing: 0.5px;
    font-weight: normal;
  }

  .cart-link:hover {
    text-decoration: none;
  }

  .cart-link:hover .cart-label,
  .cart-link:hover .cart-total {
    text-decoration: underline;
  }

  .sidebar-footer {
    margin-top: auto;
    padding-top: 15px;
    flex-shrink: 0;
  }

  .sidebar-copyright {
    font-size: 8px;
    line-height: 1.4;
    color: #666666;
    margin: 0;
    font-family: 'Courier New', Courier, monospace;
    text-align: left;
  }

  .sidebar-copyright-link {
    color: #666666;
    text-decoration: none;
    font-weight: 600;
  }

  .sidebar-copyright-link:hover {
    text-decoration: underline;
    color: #000000;
  }

  /* Mobile styles */
  @media screen and (max-width: 749px) {
    .menu-backdrop.mobile-only {
      display: block;
    }

    .fixed-sidebar {
      width: 100%;
      max-width: 320px;
      transform: translateX(-100%);
      transition: transform 0.3s ease;
      border-right: 1px solid #000000;
      z-index: 1800;
    }

    .fixed-sidebar.menu-open {
      transform: translateX(0);
    }

    .sidebar-mobile-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 15px 20px;
      border-bottom: 1px solid #000000;
    }

    .mobile-only {
      display: block;
    }

    .sidebar-content {
      padding: 0;
    }

    .sidebar-logo {
      padding: 20px;
      border-bottom: 1px solid #000000;
    }

    .sidebar-nav {
      padding: 20px;
    }

    .nav-link {
      font-size: 12px;
      padding: 8px 0;
    }

    .dropdown-item {
      font-size: 11px;
      padding: 6px 0;
    }
  }

  /* Desktop: Always visible */
  @media screen and (min-width: 750px) {
    .fixed-sidebar {
      display: block !important;
      transform: translateX(0) !important;
    }

    .fixed-sidebar.menu-open {
      transform: translateX(0) !important;
    }

    .menu-backdrop.mobile-only {
      display: none !important;
    }
  }
/* END_SNIPPET:sidebar-navigation */