/** Shopify CDN: Minification failed

Line 1548:1 Expected identifier but found "{"
Line 1548:2 Unexpected "{"
Line 1548:17 Expected ":"
Line 1548:21 Unexpected "{"
Line 1987:1 Expected identifier but found "{"
Line 1987:2 Unexpected "{"
Line 1987:17 Expected ":"
Line 1987:21 Unexpected "{"
Line 2321:1 Expected identifier but found "{"
Line 2321:2 Unexpected "{"
... and 6 more hidden warnings

**/
/* SHOPIFY_STYLESHEETS_VERSION: 1.0 */


/* CSS from section stylesheet tags */
/* START_SECTION:all-products (INDEX:1) */
.all-products {
  padding: 2rem 0;
}

.all-products__container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 1rem;
}

.all-products__heading {
  text-align: center;
  margin-bottom: 2rem;
  font-size: 2rem;
  font-weight: 600;
}

.product-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.product-item {
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.product-item:hover {
  transform: translateY(-2px);
}

.product-link {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: var(--color-foreground);
}

.product-image {
  width: 100%;
  height: 60vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-thumbnail {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-details {
  padding: 2rem;
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
  width: 100%;
}

.product-title {
  font-size: 1rem;
  font-weight: 400;
  text-transform: uppercase;
  margin: 0 0 0.5rem 0;
  line-height: 1.3;
}

.product-price {
  font-size: 0.8rem;
  font-weight: 400;
  margin: 0 0 0.5rem 0;
  color: var(--home-price-color);
}

.product-compare-price {
  font-size: 1rem;
  text-decoration: line-through;
  opacity: 0.7;
  margin: 0 0 0.5rem 0;
}

.product-description {
  font-size: 0.9rem;
  opacity: 0.8;
  margin: 0;
  line-height: 1.4;
}

.no-products {
  text-align: center;
  font-size: 1.125rem;
  opacity: 0.7;
  padding: 2rem;
}

.pagination {
  margin-top: 2rem;
  text-align: center;
}

/* Responsive adjustments */
@media (max-width: 640px) {
  .all-products__container {
    padding: 0 0.5rem;
  }
  
  .product-details {
    padding: 1.5rem;
  }
  
  .product-title {
    font-size: 1rem;
  }
  
  .product-price {
    font-size: 0.8rem;
  }
}
/* END_SECTION:all-products */

/* START_SECTION:cart (INDEX:2) */
.cart-page {
  padding: 2rem 0;
  min-height: 100vh;
  background-color: var(--color-background);
}

.cart-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 1rem;
}

.cart-header {
  text-align: center;
  margin-bottom: 3rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.cart-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin: 0 0 0.5rem 0;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.cart-count {
  font-size: 1rem;
  opacity: 0.7;
  margin: 0;
}

.cart-items {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.cart-item {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 1.5rem;
  background-color: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0;
}

.cart-item-image {
  flex-shrink: 0;
  width: 80px;
  height: 80px;
  overflow: hidden;
  border-radius: 0;
}

.cart-item-thumbnail,
.cart-item-placeholder {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cart-item-details {
  flex: 1;
  min-width: 0;
}

.cart-item-title {
  font-size: 1.125rem;
  font-weight: 600;
  margin: 0 0 0.5rem 0;
  line-height: 1.3;
}

.cart-item-link {
  color: var(--color-foreground);
  text-decoration: none;
}

.cart-item-link:hover {
  text-decoration: underline;
}

.cart-item-variant {
  font-size: 0.9rem;
  opacity: 0.7;
  margin: 0 0 0.5rem 0;
}

.cart-item-price {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.cart-item-price-current {
  font-size: 1rem;
  font-weight: 600;
}

.cart-item-price-original {
  font-size: 0.9rem;
  text-decoration: line-through;
  opacity: 0.6;
}

.cart-item-price-unit {
  font-size: 0.8rem;
  opacity: 0.5;
  font-style: italic;
}

.cart-item-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-shrink: 0;
}

.cart-item-quantity {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.quantity-label {
  font-size: 0.8rem;
  opacity: 0.7;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.quantity-controls {
  display: flex;
  align-items: center;
  border-radius: 0;
}

.btn-quantity {
  width: 32px;
  height: 32px;
  border: none;
  background-color: transparent;
  color: var(--color-foreground);
  font-size: 1.2rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.btn-quantity:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.btn-quantity:active {
  background-color: rgba(255, 255, 255, 0.2);
}

.quantity-input {
  width: 60px;
  padding: 0.5rem;
  border: none;
  background-color: transparent;
  color: var(--color-foreground);
  font-size: 0.9rem;
  text-align: center;
  border-radius: 0;
}

.quantity-input:focus {
  outline: none;
  border-color: rgba(255, 255, 255, 0.6);
}

.btn-remove-item {
  padding: 0.5rem;
  background: none;
  border: 0px solid rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.6);
  cursor: pointer;
  border-radius: 0;
  transition: all 0.2s ease;
}

.btn-remove-item:hover {
  color: rgba(255, 255, 255, 0.8);
}

.cart-summary {
  padding: 2rem;
  background-color: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0;
}

.cart-subtotal,
.cart-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 0;
}

.cart-subtotal {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.cart-total {
  font-size: 1.25rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.cart-discounts {
  margin: 1rem 0;
}

.cart-discount {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 0;
  font-size: 0.9rem;
  color: #4ade80;
}

.cart-actions {
  display: flex;
  gap: 1rem;
  margin: 2rem 0 1rem 0;
}

.btn-update-cart,
.btn-checkout {
  padding: 1rem 2rem;
  border: none;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: 0;
  transition: all 0.2s ease;
}

.btn-update-cart {
  background-color: transparent;
  color: var(--color-foreground);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-update-cart:hover {
  background-color: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.5);
}

.btn-checkout {
  background-color: var(--color-foreground);
  color: var(--color-background);
  flex: 1;
}

.btn-checkout:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}

/* Spinner animations */
.spinner-circle {
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% { stroke-dashoffset: 32; }
  100% { stroke-dashoffset: 0; }
}



/* Price loading states */
.cart-item-price.loading .price-amount {
  display: none;
}

.cart-item-price.loading .price-spinner {
  display: inline-block;
}

/* Error styling */
.cart-error {
  margin-top: 1rem;
  padding: 1rem;
  background-color: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.3);
  border-radius: 0;
}

.error-message {
  color: #ef4444;
  margin: 0;
  font-size: 0.9rem;
  text-align: center;
}

.cart-note {
  font-size: 0.8rem;
  opacity: 0.6;
  text-align: center;
  margin: 0;
}

.cart-empty {
  text-align: center;
  padding: 4rem 2rem;
}

.cart-empty-icon {
  margin-bottom: 2rem;
  opacity: 0.3;
}

.cart-empty-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin: 0 0 1rem 0;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.cart-empty-message {
  font-size: 1rem;
  opacity: 0.7;
  margin: 0 0 2rem 0;
  line-height: 1.5;
}

.btn-continue-shopping {
  display: inline-block;
  padding: 1rem 2rem;
  background-color: var(--color-foreground);
  color: var(--color-background);
  text-decoration: none;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: 0;
  transition: all 0.2s ease;
}

.btn-continue-shopping:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}

/* Mobile responsive */
@media (max-width: 768px) {
  .cart-container {
    padding: 0 0.5rem;
  }
  
  .cart-title {
    font-size: 2rem;
  }
  
  .cart-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }
  
  .cart-item-actions {
    width: 100%;
    justify-content: space-between;
  }
  
  .cart-actions {
    flex-direction: column;
  }
  
  .btn-update-cart,
  .btn-checkout {
    width: 100%;
  }
}
/* END_SECTION:cart */

/* START_SECTION:contact (INDEX:3) */
.contact {
    padding: 2rem 0;
  }

  .contact__container {
    max-width: var(--max-page-width, 90rem);
    margin: 0 auto;
    padding: 0 var(--min-page-margin, 20px);
  }

  .contact__heading {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
    text-align: center;
  }

  .contact__subheading {
    font-size: 1.125rem;
    text-align: center;
    margin-bottom: 3rem;
    opacity: 0.8;
  }

  .contact__content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    max-width: 60rem;
    margin: 0 auto;
  }

  @media (min-width: 768px) {
    .contact__content {
      grid-template-columns: 2fr 1fr;
    }
  }

  .contact__form-wrapper {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: var(--input-corner-radius, 0px);
  }

  .contact__form-fields {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }

  .contact__form-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  @media (min-width: 768px) {
    .contact__form-row {
      grid-template-columns: 1fr 1fr;
    }
  }

  .contact__form-field {
    display: flex;
    flex-direction: column;
  }

  .contact__form-label {
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: var(--foreground-color, #FFFFFF);
  }

  .required {
    color: #ff6b6b;
  }

  .contact__form-input,
  .contact__form-textarea {
    padding: 0.75rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--input-corner-radius, 0px);
    background: rgba(255, 255, 255, 0.1);
    color: var(--foreground-color, #FFFFFF);
    font-size: 1rem;
    transition: border-color 0.2s ease;
  }

  .contact__form-input:focus,
  .contact__form-textarea:focus {
    outline: none;
    border-color: var(--foreground-color, #FFFFFF);
  }

  .contact__form-input::placeholder,
  .contact__form-textarea::placeholder {
    color: rgba(255, 255, 255, 0.6);
  }

  .contact__form-textarea {
    resize: vertical;
    min-height: 120px;
  }

  .contact__form-submit {
    background: var(--foreground-color, #FFFFFF);
    color: var(--background-color, #000000);
    border: none;
    padding: 1rem 2rem;
    border-radius: var(--input-corner-radius, 0px);
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: opacity 0.2s ease;
    align-self: flex-start;
  }

  .contact__form-submit:hover {
    opacity: 0.9;
  }

  .contact__success {
    background: rgba(76, 175, 80, 0.2);
    border: 1px solid rgba(76, 175, 80, 0.5);
    color: #4caf50;
    padding: 1rem;
    border-radius: var(--input-corner-radius, 0px);
    margin-bottom: 1.5rem;
  }

  .contact__errors {
    background: rgba(244, 67, 54, 0.2);
    border: 1px solid rgba(244, 67, 54, 0.5);
    color: #f44336;
    padding: 1rem;
    border-radius: var(--input-corner-radius, 0px);
    margin-bottom: 1.5rem;
  }

  .contact__errors h3 {
    margin: 0 0 0.5rem 0;
    font-size: 1rem;
  }

  .contact__errors ul {
    margin: 0;
    padding-left: 1rem;
  }

  .contact__info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
  }

  .contact__info-item {
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--input-corner-radius, 0px);
  }

  .contact__info-label {
    font-size: 1.125rem;
    font-weight: 600;
    margin: 0 0 0.5rem 0;
    color: var(--foreground-color, #FFFFFF);
  }

  .contact__info-value {
    margin: 0;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.5;
  }

  .contact__info-value a {
    color: var(--foreground-color, #FFFFFF);
    text-decoration: none;
  }

  .contact__info-value a:hover {
    text-decoration: underline;
  }
/* END_SECTION:contact */

/* START_SECTION:custom-section (INDEX:4) */
.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:5) */
.footer {
    margin-top: 4rem;
    padding: 3rem 0 2rem;
    border-top: 1px solid rgba(var(--color-foreground-rgb), 0.1);
  }

  .footer__content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
  }

  .footer__columns {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
  }

  @media (max-width: 990px) {
    .footer__columns {
      grid-template-columns: repeat(2, 1fr);
    }
  }

  @media (max-width: 640px) {
    .footer__columns {
      grid-template-columns: 1fr;
    }
  }

  .footer__column {
    display: flex;
    flex-direction: column;
  }

  .footer__heading {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
  }

  .footer__menu {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
  }

  .footer__menu a {
    color: var(--color-foreground);
    text-decoration: none;
    font-size: 0.875rem;
    transition: opacity 0.2s;
  }

  .footer__menu a:hover {
    opacity: 0.7;
  }

  .footer__social {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 1rem;
  }

  .footer__social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    color: var(--color-foreground);
    transition: opacity 0.2s;
  }

  .footer__social a:hover {
    opacity: 0.7;
  }

  .footer__newsletter-text {
    margin-bottom: 1rem;
    font-size: 0.875rem;
    line-height: 1.5;
  }

  .footer__newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }

  .footer__newsletter-success {
    color: green;
    font-size: 0.875rem;
  }

  .footer__newsletter-error {
    color: red;
    font-size: 0.875rem;
  }

  .footer__newsletter-input-wrapper {
    display: flex;
    gap: 0.5rem;
  }

  .footer__newsletter-input-wrapper input {
    flex: 1;
    padding: 0.75rem 1rem;
    border: 1px solid rgba(var(--color-foreground-rgb), 0.2);
    border-radius: 4px;
    font-size: 0.875rem;
  }

  .footer__newsletter-input-wrapper button {
    padding: 0.75rem 1.5rem;
    background-color: var(--color-foreground);
    color: var(--color-background);
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.875rem;
    font-weight: 600;
    transition: opacity 0.2s;
  }

  .footer__newsletter-input-wrapper button:hover {
    opacity: 0.8;
  }

  @media (max-width: 640px) {
    .footer__newsletter-input-wrapper {
      flex-direction: column;
    }
  }

  .footer__bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 2rem 0;
    border-top: 1px solid rgba(var(--color-foreground-rgb), 0.1);
  }

  @media (max-width: 990px) {
    .footer__bottom {
      flex-direction: column;
      text-align: center;
      gap: 1.5rem;
    }
  }

  .footer__copyright {
    font-size: 0.875rem;
  }

  .footer__links {
    display: flex;
    gap: 1.5rem;
  }

  @media (max-width: 640px) {
    .footer__links {
      flex-direction: column;
      gap: 0.75rem;
    }
  }

  .footer__links a,
  .footer__copyright a {
    text-decoration: none;
    color: var(--color-foreground);
    transition: opacity 0.2s;
  }

  .footer__links a:hover,
  .footer__copyright a:hover {
    opacity: 0.7;
  }

  .footer__payment {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
  }

  .footer__payment svg {
    width: 40px;
    height: auto;
  }
/* END_SECTION:footer */

/* START_SECTION:header (INDEX:6) */
.header {
    width: 100%;
    height: 5rem;
    background-color: var(--color-background);
    position: sticky;
    top: 0;
    z-index: 100;
  }
  
  .header__container {
    width: 100%;
    padding: 0 2rem;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  
  .header a {
    position: relative;
    text-decoration: none;
    color: var(--color-foreground);
    transition: opacity 0.2s ease;
  }
  
  .header a:hover {
    opacity: 0.8;
  }
  
  .header a sup {
    position: absolute;
    left: 100%;
    top: -0.5rem;
    background-color: var(--color-foreground);
    color: var(--color-background);
    border-radius: 50%;
    width: 1.2rem;
    height: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 600;
  }
  
  .header svg {
    width: 2rem;
    height: 2rem;
  }
  
  .header .header__menu,
  .header .header__icons {
    display: flex;
    gap: 1.5rem;
    align-items: center;
  }
  
  .header__logo {
    height: auto;
    max-height: 4rem;
    display: block;
  }
  
  .header__title h2 {
    margin: 0;
    font-size: 1.5rem;
    font-weight: 600;
  }
  
  .header__title h2 a {
    color: var(--color-foreground);
  }
  
  /* Mobile responsive */
  @media (max-width: 768px) {
    .header__container {
      padding: 0 1rem;
    }
    
    .header .header__menu,
    .header .header__icons {
      gap: 1rem;
    }
    
    .header__title h2 {
      font-size: 1.25rem;
    }
  }
/* END_SECTION:header */

/* START_SECTION:page-content (INDEX:7) */
.page-content {
    padding: 2rem 0;
  }

  .page-content__container {
    max-width: var(--max-page-width, 90rem);
    margin: 0 auto;
    padding: 0 var(--min-page-margin, 20px);
  }

  .page-content__wrapper {
    max-width: 60rem;
    margin: 0 auto;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
  }

  .page-content__wrapper h1,
  .page-content__wrapper h2,
  .page-content__wrapper h3,
  .page-content__wrapper h4,
  .page-content__wrapper h5,
  .page-content__wrapper h6 {
    color: var(--foreground-color, #FFFFFF);
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-weight: 600;
  }

  .page-content__wrapper h1:first-child,
  .page-content__wrapper h2:first-child,
  .page-content__wrapper h3:first-child,
  .page-content__wrapper h4:first-child,
  .page-content__wrapper h5:first-child,
  .page-content__wrapper h6:first-child {
    margin-top: 0;
  }

  .page-content__wrapper h1 {
    font-size: 2.25rem;
  }

  .page-content__wrapper h2 {
    font-size: 1.875rem;
  }

  .page-content__wrapper h3 {
    font-size: 1.5rem;
  }

  .page-content__wrapper h4 {
    font-size: 1.25rem;
  }

  .page-content__wrapper h5 {
    font-size: 1.125rem;
  }

  .page-content__wrapper h6 {
    font-size: 1rem;
  }

  .page-content__wrapper p {
    margin-bottom: 1.5rem;
  }

  .page-content__wrapper p:last-child {
    margin-bottom: 0;
  }

  .page-content__wrapper a {
    color: var(--foreground-color, #FFFFFF);
    text-decoration: underline;
    transition: text-decoration 0.2s ease;
  }

  .page-content__wrapper a:hover {
    text-decoration: none;
  }

  .page-content__wrapper ul,
  .page-content__wrapper ol {
    margin: 1.5rem 0;
    padding-left: 2rem;
  }

  .page-content__wrapper li {
    margin-bottom: 0.5rem;
  }

  .page-content__wrapper blockquote {
    border-left: 4px solid var(--foreground-color, #FFFFFF);
    padding-left: 1.5rem;
    margin: 2rem 0;
    font-style: italic;
    color: rgba(255, 255, 255, 0.9);
  }

  .page-content__wrapper img {
    max-width: 100%;
    height: auto;
    margin: 1.5rem 0;
    border-radius: var(--input-corner-radius, 0px);
  }

  .page-content__wrapper table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
  }

  .page-content__wrapper th,
  .page-content__wrapper td {
    padding: 0.75rem;
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  }

  .page-content__wrapper th {
    font-weight: 600;
    color: var(--foreground-color, #FFFFFF);
  }

  .page-content__wrapper hr {
    border: none;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    margin: 2rem 0;
  }

  .page-content__wrapper code {
    background: rgba(255, 255, 255, 0.1);
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-family: monospace;
    font-size: 0.875rem;
  }

  .page-content__wrapper pre {
    background: rgba(255, 255, 255, 0.1);
    padding: 1rem;
    border-radius: var(--input-corner-radius, 0px);
    overflow-x: auto;
    margin: 1.5rem 0;
  }

  .page-content__wrapper pre code {
    background: none;
    padding: 0;
  }
/* END_SECTION:page-content */

/* START_SECTION:page-header (INDEX:8) */
.page-header {
    padding: 2rem 0;
  }

  .page-header__container {
    max-width: var(--max-page-width, 90rem);
    margin: 0 auto;
    padding: 0 var(--min-page-margin, 20px);
  }

  .page-header__title {
    font-size: 2.5rem;
    font-weight: bold;
    margin: 0 0 1rem 0;
    text-align: center;
    color: var(--foreground-color, #FFFFFF);
  }

  .page-header__content {
    max-width: 60rem;
    margin: 0 auto;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.2;
  }

  .page-header__content h1,
  .page-header__content h2,
  .page-header__content h3,
  .page-header__content h4,
  .page-header__content h5,
  .page-header__content h6 {
    color: var(--foreground-color, #FFFFFF);
    margin-top: 2rem;
    margin-bottom: 1rem;
  }

  .page-header__content h1:first-child,
  .page-header__content h2:first-child,
  .page-header__content h3:first-child,
  .page-header__content h4:first-child,
  .page-header__content h5:first-child,
  .page-header__content h6:first-child {
    margin-top: 0;
  }

  .page-header__content p {
    margin-bottom: 1rem;
  }

  .page-header__content p:last-child {
    margin-bottom: 0;
  }

  .page-header__content a {
    color: var(--foreground-color, #FFFFFF);
    text-decoration: underline;
  }

  .page-header__content a:hover {
    text-decoration: none;
  }

  .page-header__content ul,
  .page-header__content ol {
    text-align: left;
    margin: 1rem 0;
    padding-left: 2rem;
  }

  .page-header__content li {
    margin-bottom: 0.5rem;
  }
/* END_SECTION:page-header */

/* START_SECTION:product (INDEX:10) */
.product-page {
  padding: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.product-container {
  width: 100%;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  position: relative;
}

.product-images {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: row;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
  padding-bottom: 45vh;
}

.product-image,
.product-image-placeholder {
  width: 100%;
  height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  object-fit: contain;
  object-position: center;
}

.product-image-element {
  width: 100%;
  height: 60vh;
  object-fit: contain;
  object-position: center;
  display: block;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
}

.product-page-details {
  position: fixed;
  text-align: left;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 600px;
  background-color: var(--color-background);
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding: 1.5rem;
  z-index: 1000;
  max-height: 60vh;
  overflow-y: auto;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
}



.product-page-description-section {
  margin-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1.5rem;
}

.product-page-title {
  font-size: 1.25rem;
  font-weight: 500;
  text-transform: uppercase;
  margin: 0 0 0.75rem 0;
  line-height: 1.3;
}

.product-page-pricing {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.product-page-price {
  font-size: 1rem;
  font-weight: 500;
  color: var(--color-foreground);
}

.product-page-compare-price {
  font-size: 0.9rem;
  text-decoration: line-through;
  opacity: 0.7;
}

.product-page-description-accordion {
  margin: 0;
  border: none;
  overflow: hidden;
}

.product-page-description-summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0rem;
  text-transform: uppercase;
  cursor: pointer;
  user-select: none;
  transition: background-color 0.2s ease;
}



.product-page-description-summary span {
  font-weight: 500;
  font-size: 0.95rem;
}

.product-page-accordion-icon {
  transition: transform 0.2s ease;
  color: var(--color-foreground);
}

.product-page-description-accordion[open] .product-page-accordion-icon {
  transform: rotate(90deg);
}

.product-page-description-content {
  padding: 1.5rem 0rem;
  line-height: 1.6;
  font-size: 0.9rem;
  max-height: 200px;
  overflow: auto;
}

.product-page-description-content p {
  margin-bottom: 1rem;
}

.product-page-description-content p:last-child {
  margin-bottom: 0;
}

.product-page-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.product-page-variants {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.product-page-form-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.product-page-variants {
  flex-shrink: 0;
}

.product-page-actions {
  flex: 1;
  display: flex;
  align-items: center;
}

.product-page-quantity {
  display: none;
}

.product-page-variants label,
.product-page-quantity label {
  font-weight: 400;
  font-size: 0.9rem;
  margin-bottom: 0.25rem;
  opacity: 0.9;
}

.variant-select,
.quantity-input {
  padding: 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background-color: #000000;
  color: var(--color-foreground);
  font-size: 0.9rem;
}

.variant-select:focus,
.quantity-input:focus {
  outline: none;
  border-color: rgba(255, 255, 255, 0.6);
}

.quantity-input {
  width: 80px;
}

.product-page-actions {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.btn-add-to-cart {
  width: 100%;
  padding: 0.875rem 1.5rem;
  background-color: var(--color-foreground);
  color: var(--color-background);
  border: none;
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: opacity 0.2s ease;
}

.btn-add-to-cart:hover:not(:disabled) {
  opacity: 0.9;
}

.btn-add-to-cart:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/* Mobile responsive */
@media (max-width: 768px) {
  .product-page-details {
    padding: 1rem;
    max-height: 50vh;
  }
  

  
  .product-page-title {
    font-size: 1.125rem;
  }
  
  .product-page-price {
    font-size: 0.95rem;
  }
  
  .product-page-description {
    font-size: 0.85rem;
  }
  
  .product-image,
  .product-image-placeholder {
    width: 100%;
    height: 60vh;
  }
  
  .product-images {
    padding-bottom: 65vh;
  }
}
/* END_SECTION:product */

/* START_SECTION:user-account (INDEX:11) */
.{{ section_class }} {
  padding-top: var(--section-padding-top, 40px);
  padding-bottom: var(--section-padding-bottom, 40px);
}

.user-account {
  max-width: 800px;
  margin: 0 auto;
}

.user-account__header {
  text-align: center;
  margin-bottom: 3rem;
}

.user-account__title {
  font-size: 2.5rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin: 0 0 1rem 0;
  color: var(--color-foreground);
}

.user-account__welcome {
  font-size: 1.125rem;
  opacity: 0.8;
  margin: 0;
  color: var(--color-foreground);
}

.user-account__content {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.user-account__section {
  background-color: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 2rem;
}

.user-account__section-title {
  font-size: 1.5rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin: 0 0 2rem 0;
  color: var(--color-foreground);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 1rem;
}

/* Profile Section */
.user-account__profile {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.user-account__profile-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.user-account__profile-item:last-child {
  border-bottom: none;
}

.user-account__label {
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-foreground);
  opacity: 0.8;
}

.user-account__value {
  color: var(--color-foreground);
  font-weight: 500;
}

.user-account__profile-actions {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Orders Section */
.user-account__orders {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.user-account__order {
  background-color: rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 2rem;
}

.user-account__order-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.user-account__order-info {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.user-account__order-number {
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-foreground);
}

.user-account__order-date {
  font-size: 0.9rem;
  opacity: 0.7;
  color: var(--color-foreground);
}

.user-account__order-status-badge {
  padding: 0.5rem 1rem;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: 0;
}

.user-account__order-status-badge--fulfilled {
  background-color: rgba(0, 255, 0, 0.1);
  color: #00ff00;
  border: 1px solid rgba(0, 255, 0, 0.3);
}

.user-account__order-status-badge--unfulfilled {
  background-color: rgba(255, 255, 0, 0.1);
  color: #ffff00;
  border: 1px solid rgba(255, 255, 0, 0.3);
}

.user-account__order-details {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2rem;
  margin-bottom: 1.5rem;
}

.user-account__order-items {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.user-account__order-item {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.user-account__order-item-image {
  width: 60px;
  height: 60px;
  flex-shrink: 0;
  overflow: hidden;
  border-radius: 0;
}

.user-account__order-item-image img,
.user-account__order-item-placeholder {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.user-account__order-item-details {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  min-width: 0;
}

.user-account__order-item-title {
  font-weight: 500;
  color: var(--color-foreground);
  line-height: 1.3;
}

.user-account__order-item-variant {
  font-size: 0.9rem;
  opacity: 0.7;
  color: var(--color-foreground);
}

.user-account__order-item-quantity {
  font-size: 0.8rem;
  opacity: 0.6;
  color: var(--color-foreground);
}

.user-account__order-more {
  font-size: 0.9rem;
  opacity: 0.7;
  color: var(--color-foreground);
  font-style: italic;
}

.user-account__order-total {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.25rem;
  flex-shrink: 0;
}

.user-account__order-total-label {
  font-size: 0.9rem;
  opacity: 0.7;
  color: var(--color-foreground);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.user-account__order-total-amount {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--color-foreground);
}

.user-account__order-actions {
  display: flex;
  justify-content: flex-end;
}

.user-account__orders-more {
  text-align: center;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Addresses Section */
.user-account__addresses {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.user-account__address {
  background-color: rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 2rem;
}

.user-account__address-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.user-account__address-title {
  font-size: 1.125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin: 0;
  color: var(--color-foreground);
}

.user-account__address-default-badge {
  padding: 0.25rem 0.75rem;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  background-color: rgba(255, 255, 255, 0.1);
  color: var(--color-foreground);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.user-account__address-details {
  margin-bottom: 1.5rem;
}

.user-account__address-text {
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--color-foreground);
  opacity: 0.9;
  margin: 0;
}

.user-account__address-actions {
  display: flex;
  justify-content: flex-end;
}

.user-account__addresses-more {
  text-align: center;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Empty States */
.user-account__empty {
  text-align: center;
  padding: 3rem 1rem;
}

.user-account__empty-icon {
  margin-bottom: 1.5rem;
  opacity: 0.3;
  color: var(--color-foreground);
}

.user-account__empty-title {
  font-size: 1.25rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin: 0 0 1rem 0;
  color: var(--color-foreground);
}

.user-account__empty-message {
  font-size: 0.9rem;
  opacity: 0.7;
  margin: 0 0 2rem 0;
  line-height: 1.5;
  color: var(--color-foreground);
}

/* Buttons */
.btn-user-account {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background-color: var(--color-foreground);
  color: var(--color-background);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border: 1px solid var(--color-foreground);
  border-radius: 0;
  transition: all 0.2s ease;
  cursor: pointer;
}

.btn-user-account:hover {
  background-color: transparent;
  color: var(--color-foreground);
  border-color: var(--color-foreground);
}

.btn-user-account--secondary {
  background-color: transparent;
  color: var(--color-foreground);
  border-color: rgba(255, 255, 255, 0.3);
}

.btn-user-account--secondary:hover {
  background-color: var(--color-foreground);
  color: var(--color-background);
  border-color: var(--color-foreground);
}

.btn-user-account--danger {
  background-color: transparent;
  color: #ff4444;
  border-color: #ff4444;
}

.btn-user-account--danger:hover {
  background-color: #ff4444;
  color: var(--color-background);
  border-color: #ff4444;
}

.user-account__actions {
  text-align: center;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .user-account__title {
    font-size: 2rem;
  }
  
  .user-account__section {
    padding: 1.5rem;
  }
  
  .user-account__order-details {
    flex-direction: column;
    gap: 1rem;
  }
  
  .user-account__order-total {
    align-items: flex-start;
  }
  
  .user-account__order-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }
  
  .user-account__address-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }
}
/* END_SECTION:user-account */

/* START_SECTION:user-addresses (INDEX:12) */
.{{ section_class }} {
  padding-top: var(--section-padding-top, 40px);
  padding-bottom: var(--section-padding-bottom, 40px);
}

.user-addresses {
  max-width: 1000px;
  margin: 0 auto;
}

.user-addresses__header {
  text-align: center;
  margin-bottom: 3rem;
}

.user-addresses__title {
  font-size: 2.5rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin: 0 0 1rem 0;
  color: var(--color-foreground);
}

.user-addresses__subtitle {
  font-size: 1.125rem;
  opacity: 0.8;
  margin: 0;
  color: var(--color-foreground);
}

.user-addresses__add-section {
  text-align: center;
  margin-bottom: 3rem;
}

.user-addresses__form-section {
  background-color: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 2rem;
  margin-bottom: 3rem;
}

.user-addresses__form-title {
  font-size: 1.5rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin: 0 0 2rem 0;
  color: var(--color-foreground);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 1rem;
}

.user-addresses__form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.user-addresses__form-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}

.user-addresses__errors {
  background-color: rgba(255, 68, 68, 0.1);
  border: 1px solid rgba(255, 68, 68, 0.3);
  padding: 1rem;
  margin-bottom: 1rem;
}

.user-addresses__error-title {
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin: 0 0 0.5rem 0;
  color: #ff4444;
}

.user-addresses__error-list {
  margin: 0;
  padding-left: 1rem;
  list-style: none;
}

.user-addresses__error-item {
  font-size: 0.9rem;
  color: #ff4444;
  margin-bottom: 0.25rem;
}

.user-addresses__error-item:before {
  content: "•";
  color: #ff4444;
  margin-right: 0.5rem;
}

.user-addresses__field {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.user-addresses__label {
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-foreground);
  opacity: 0.8;
}

.user-addresses__input,
.user-addresses__select {
  padding: 1rem;
  background-color: rgba(0, 0, 0, 0.3);
  color: var(--color-foreground);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 0;
  font-size: 1rem;
  font-family: inherit;
  transition: border-color 0.2s ease;
}

.user-addresses__input:focus,
.user-addresses__select:focus {
  outline: none;
  border-color: var(--color-foreground);
}

.user-addresses__input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.user-addresses__form-actions {
  display: flex;
  gap: 1rem;
  justify-content: flex-end;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.user-addresses__list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

.user-addresses__address {
  background-color: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 2rem;
}

.user-addresses__address-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.user-addresses__address-title {
  font-size: 1.125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin: 0;
  color: var(--color-foreground);
}

.user-addresses__address-default-badge {
  padding: 0.25rem 0.75rem;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  background-color: rgba(255, 255, 255, 0.1);
  color: var(--color-foreground);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.user-addresses__address-details {
  margin-bottom: 1.5rem;
}

.user-addresses__address-text {
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--color-foreground);
  opacity: 0.9;
}

.user-addresses__address-text p {
  margin: 0;
}

.user-addresses__address-actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.user-addresses__delete-form,
.user-addresses__default-form {
  display: inline;
}

/* Empty State */
.user-addresses__empty {
  text-align: center;
  padding: 4rem 1rem;
}

.user-addresses__empty-icon {
  margin-bottom: 2rem;
  opacity: 0.3;
  color: var(--color-foreground);
}

.user-addresses__empty-title {
  font-size: 1.5rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin: 0 0 1rem 0;
  color: var(--color-foreground);
}

.user-addresses__empty-message {
  font-size: 1rem;
  opacity: 0.7;
  margin: 0 0 2rem 0;
  line-height: 1.5;
  color: var(--color-foreground);
}

/* Buttons */
.btn-user-addresses {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background-color: var(--color-foreground);
  color: var(--color-background);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border: 1px solid var(--color-foreground);
  border-radius: 0;
  transition: all 0.2s ease;
  cursor: pointer;
  font-family: inherit;
}

.btn-user-addresses:hover {
  background-color: transparent;
  color: var(--color-foreground);
  border-color: var(--color-foreground);
}

.btn-user-addresses--primary {
  background-color: var(--color-foreground);
  color: var(--color-background);
}

.btn-user-addresses--secondary {
  background-color: transparent;
  color: var(--color-foreground);
  border-color: rgba(255, 255, 255, 0.3);
}

.btn-user-addresses--secondary:hover {
  background-color: var(--color-foreground);
  color: var(--color-background);
  border-color: var(--color-foreground);
}

.btn-user-addresses--danger {
  background-color: transparent;
  color: #ff4444;
  border-color: #ff4444;
}

.btn-user-addresses--danger:hover {
  background-color: #ff4444;
  color: var(--color-background);
  border-color: #ff4444;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .user-addresses__title {
    font-size: 2rem;
  }
  
  .user-addresses__form-section {
    padding: 1.5rem;
  }
  
  .user-addresses__form-grid {
    grid-template-columns: 1fr;
  }
  
  .user-addresses__form-actions {
    flex-direction: column;
  }
  
  .user-addresses__list {
    grid-template-columns: 1fr;
  }
  
  .user-addresses__address {
    padding: 1.5rem;
  }
  
  .user-addresses__address-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }
  
  .user-addresses__address-actions {
    flex-direction: column;
  }
}
/* END_SECTION:user-addresses */

/* START_SECTION:user-login (INDEX:13) */
.{{ section_class }} {
  padding-top: var(--section-padding-top, 40px);
  padding-bottom: var(--section-padding-bottom, 40px);
}

.user-login {
  max-width: 1000px;
  margin: 0 auto;
}

.user-login__header {
  text-align: center;
  margin-bottom: 3rem;
}

.user-login__title {
  font-size: 2.5rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin: 0 0 1rem 0;
  color: var(--color-foreground);
}

.user-login__subtitle {
  font-size: 1.125rem;
  opacity: 0.8;
  margin: 0;
  color: var(--color-foreground);
}

.user-login__content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 4rem;
  align-items: start;
}

.user-login__forms {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.user-login__form-section {
  background-color: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 2rem;
}

.user-login__form-title {
  font-size: 1.5rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin: 0 0 2rem 0;
  color: var(--color-foreground);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 1rem;
}

.user-login__form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.user-login__errors {
  background-color: rgba(255, 68, 68, 0.1);
  border: 1px solid rgba(255, 68, 68, 0.3);
  padding: 1rem;
  margin-bottom: 1rem;
}

.user-login__error-title {
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin: 0 0 0.5rem 0;
  color: #ff4444;
}

.user-login__error-list {
  margin: 0;
  padding-left: 1rem;
  list-style: none;
}

.user-login__error-item {
  font-size: 0.9rem;
  color: #ff4444;
  margin-bottom: 0.25rem;
}

.user-login__error-item:before {
  content: "•";
  color: #ff4444;
  margin-right: 0.5rem;
}

.user-login__field {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.user-login__label {
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-foreground);
  opacity: 0.8;
}

.user-login__input {
  padding: 1rem;
  background-color: rgba(0, 0, 0, 0.3);
  color: var(--color-foreground);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 0;
  font-size: 1rem;
  font-family: inherit;
  transition: border-color 0.2s ease;
}

.user-login__input:focus {
  outline: none;
  border-color: var(--color-foreground);
}

.user-login__input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.user-login__actions {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1rem;
}

.btn-user-login {
  padding: 1rem 2rem;
  background-color: var(--color-foreground);
  color: var(--color-background);
  border: 1px solid var(--color-foreground);
  border-radius: 0;
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: all 0.2s ease;
  font-family: inherit;
}

.btn-user-login:hover {
  background-color: transparent;
  color: var(--color-foreground);
  border-color: var(--color-foreground);
}

.user-login__forgot-link {
  text-align: center;
  color: var(--color-foreground);
  text-decoration: none;
  font-size: 0.9rem;
  opacity: 0.8;
  transition: opacity 0.2s ease;
}

.user-login__forgot-link:hover {
  opacity: 1;
  text-decoration: underline;
}

.user-login__benefits {
  background-color: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 2rem;
  position: sticky;
  top: 2rem;
}

.user-login__benefits-title {
  font-size: 1.25rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin: 0 0 1.5rem 0;
  color: var(--color-foreground);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 1rem;
}

.user-login__benefits-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.user-login__benefits-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: var(--color-foreground);
  opacity: 0.9;
  line-height: 1.4;
}

.user-login__benefits-item svg {
  flex-shrink: 0;
  color: #00ff00;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .user-login__content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .user-login__title {
    font-size: 2rem;
  }
  
  .user-login__form-section {
    padding: 1.5rem;
  }
  
  .user-login__benefits {
    position: static;
  }
}
/* END_SECTION:user-login */

/* START_SECTION:user-orders (INDEX:14) */
.{{ section_class }} {
  padding-top: var(--section-padding-top, 40px);
  padding-bottom: var(--section-padding-bottom, 40px);
}

.user-orders {
  max-width: 1000px;
  margin: 0 auto;
}

.user-orders__header {
  text-align: center;
  margin-bottom: 3rem;
}

.user-orders__title {
  font-size: 2.5rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin: 0 0 1rem 0;
  color: var(--color-foreground);
}

.user-orders__subtitle {
  font-size: 1.125rem;
  opacity: 0.8;
  margin: 0;
  color: var(--color-foreground);
}

.user-orders__list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.user-orders__order {
  background-color: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 2rem;
}

.user-orders__order-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.user-orders__order-title {
  font-size: 1.5rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin: 0 0 0.5rem 0;
  color: var(--color-foreground);
}

.user-orders__order-meta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  opacity: 0.7;
  color: var(--color-foreground);
}

.user-orders__order-separator {
  opacity: 0.5;
}

.user-orders__order-status-badge {
  padding: 0.5rem 1rem;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: 0;
}

.user-orders__order-status-badge--fulfilled {
  background-color: rgba(0, 255, 0, 0.1);
  color: #00ff00;
  border: 1px solid rgba(0, 255, 0, 0.3);
}

.user-orders__order-status-badge--unfulfilled {
  background-color: rgba(255, 255, 0, 0.1);
  color: #ffff00;
  border: 1px solid rgba(255, 255, 0, 0.3);
}

.user-orders__order-details {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 3rem;
  margin-bottom: 2rem;
}

.user-orders__order-items-title,
.user-orders__order-summary-title {
  font-size: 1.125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin: 0 0 1rem 0;
  color: var(--color-foreground);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 0.5rem;
}

.user-orders__order-items-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.user-orders__order-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background-color: rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.user-orders__order-item-image {
  width: 80px;
  height: 80px;
  flex-shrink: 0;
  overflow: hidden;
  border-radius: 0;
}

.user-orders__order-item-image img,
.user-orders__order-item-placeholder {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.user-orders__order-item-details {
  flex: 1;
  min-width: 0;
}

.user-orders__order-item-title {
  margin: 0 0 0.5rem 0;
}

.user-orders__order-item-link {
  color: var(--color-foreground);
  text-decoration: none;
  font-weight: 500;
  transition: opacity 0.2s ease;
}

.user-orders__order-item-link:hover {
  opacity: 0.8;
  text-decoration: underline;
}

.user-orders__order-item-variant {
  font-size: 0.9rem;
  opacity: 0.7;
  margin: 0 0 0.5rem 0;
  color: var(--color-foreground);
}

.user-orders__order-item-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.9rem;
  color: var(--color-foreground);
}

.user-orders__order-item-quantity {
  opacity: 0.7;
}

.user-orders__order-item-price {
  font-weight: 500;
}

.user-orders__order-summary-details {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.user-orders__order-summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.user-orders__order-summary-row:last-child {
  border-bottom: none;
}

.user-orders__order-summary-row--total {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 0.5rem;
  padding-top: 1rem;
  font-weight: 600;
  font-size: 1.125rem;
}

.user-orders__order-summary-label {
  color: var(--color-foreground);
  opacity: 0.8;
}

.user-orders__order-summary-value {
  color: var(--color-foreground);
  font-weight: 500;
}

.user-orders__order-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.user-orders__order-cancelled {
  color: #ff4444;
  font-size: 0.9rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.user-orders__pagination {
  text-align: center;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.user-orders__pagination-info {
  font-size: 0.9rem;
  opacity: 0.7;
  margin: 0 0 1rem 0;
  color: var(--color-foreground);
}

/* Empty State */
.user-orders__empty {
  text-align: center;
  padding: 4rem 1rem;
}

.user-orders__empty-icon {
  margin-bottom: 2rem;
  opacity: 0.3;
  color: var(--color-foreground);
}

.user-orders__empty-title {
  font-size: 1.5rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin: 0 0 1rem 0;
  color: var(--color-foreground);
}

.user-orders__empty-message {
  font-size: 1rem;
  opacity: 0.7;
  margin: 0 0 2rem 0;
  line-height: 1.5;
  color: var(--color-foreground);
}

/* Buttons */
.btn-user-orders {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background-color: var(--color-foreground);
  color: var(--color-background);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border: 1px solid var(--color-foreground);
  border-radius: 0;
  transition: all 0.2s ease;
  cursor: pointer;
}

.btn-user-orders:hover {
  background-color: transparent;
  color: var(--color-foreground);
  border-color: var(--color-foreground);
}

.btn-user-orders--secondary {
  background-color: transparent;
  color: var(--color-foreground);
  border-color: rgba(255, 255, 255, 0.3);
}

.btn-user-orders--secondary:hover {
  background-color: var(--color-foreground);
  color: var(--color-background);
  border-color: var(--color-foreground);
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .user-orders__title {
    font-size: 2rem;
  }
  
  .user-orders__order {
    padding: 1.5rem;
  }
  
  .user-orders__order-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }
  
  .user-orders__order-details {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .user-orders__order-actions {
    flex-direction: column;
    align-items: stretch;
  }
  
  .btn-user-orders {
    text-align: center;
  }
}
/* END_SECTION:user-orders */

/* CSS from block stylesheet tags */
/* START_BLOCK:group (INDEX:15) */
.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:16) */
.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:17) */
.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100vh;
  z-index: 9999;
  visibility: hidden;
  opacity: 0;
  transition: visibility 0s, opacity 0.3s ease;
}

.cart-drawer.active {
  visibility: visible;
  opacity: 1;
}

.cart-drawer__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.cart-drawer.active .cart-drawer__overlay {
  opacity: 1;
}

.cart-drawer__content {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  max-width: 450px;
  height: 100%;
  background-color: var(--color-background);
  transform: translateX(100%);
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
}

.cart-drawer.active .cart-drawer__content {
  transform: translateX(0);
}

.cart-drawer__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  flex-shrink: 0;
}

.cart-drawer__title {
  margin: 0;
  font-size: 1.25rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.cart-drawer__close {
  background: none;
  border: none;
  color: var(--color-foreground);
  cursor: pointer;
  padding: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.2s ease;
}

.cart-drawer__close:hover {
  opacity: 0.7;
}

.cart-drawer__body {
  flex: 1;
  overflow-y: auto;
  padding: 1rem;
}

.cart-drawer__footer {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1.5rem;
  flex-shrink: 0;
}

.cart-drawer__summary {
  margin-bottom: 1.5rem;
}

.cart-drawer__subtotal,
.cart-drawer__total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 0;
}

.cart-drawer__total {
  font-size: 1.125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 0.5rem;
  padding-top: 1rem;
}

.cart-drawer__actions {
  margin-bottom: 1rem;
}

.btn-cart-checkout {
  width: 100%;
  padding: 1rem 2rem;
  background-color: var(--color-foreground);
  color: var(--color-background);
  border: none;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: 0;
  transition: opacity 0.2s ease;
}

.btn-cart-checkout:hover {
  opacity: 0.9;
}

.cart-drawer__note {
  font-size: 0.8rem;
  opacity: 0.6;
  text-align: center;
  margin: 0;
  line-height: 1.4;
}

/* Cart item styles - Matching cart page design */
.cart-drawer-item {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 1.5rem;
  background-color: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0;
  margin-bottom: 1rem;
}

.cart-drawer-item:last-child {
  margin-bottom: 0;
}

.cart-drawer-item__image {
  width: 80px;
  height: 80px;
  flex-shrink: 0;
  overflow: hidden;
  border-radius: 0;
}

.cart-drawer-item__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cart-drawer-item__details {
  flex: 1;
  min-width: 0;
}

.cart-drawer-item__title {
  font-size: 1.125rem;
  font-weight: 600;
  margin: 0 0 0.5rem 0;
  line-height: 1.3;
}

.cart-drawer-item__title a {
  color: var(--color-foreground);
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.cart-drawer-item__title a:hover {
  opacity: 0.8;
}

.cart-drawer-item__variant {
  font-size: 0.9rem;
  opacity: 0.7;
  margin: 0 0 0.5rem 0;
}

.cart-drawer-item__price {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.cart-drawer-item__price-current {
  font-size: 1rem;
  font-weight: 500;
  color: var(--color-foreground);
}

.cart-drawer-item__price-original {
  font-size: 0.9rem;
  text-decoration: line-through;
  opacity: 0.6;
}

.cart-drawer-item__price-unit {
  font-size: 0.8rem;
  opacity: 0.5;
  font-style: italic;
}

.cart-drawer-item__actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-shrink: 0;
}

.cart-drawer-item__quantity {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.quantity-label {
  font-size: 0.8rem;
  opacity: 0.7;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.25rem;
}

.quantity-controls {
  display: flex;
  align-items: center;
}

.btn-quantity {
  width: 28px;
  height: 28px;
  background-color: transparent;
  color: var(--color-foreground);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0;
  transition: all 0.2s ease;
}

.btn-quantity:hover {
  background-color: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.5);
}

.btn-quantity:active {
  background-color: rgba(255, 255, 255, 0.2);
}

.quantity-input {
  width: 60px;
  padding: 0.5rem;
  background-color: rgba(0, 0, 0, 0.3);
  color: var(--color-foreground);
  font-size: 0.9rem;
  text-align: center;
  border-radius: 0;
}

.quantity-input:focus {
  outline: none;
  border-color: rgba(255, 255, 255, 0.6);
}

.btn-remove-item {
  padding: 0.5rem;
  background: none;
  color: rgba(255, 255, 255, 0.6);
  cursor: pointer;
  border-radius: 0;
  transition: all 0.2s ease;
}

.btn-remove-item:hover {
  border-color: rgba(255, 255, 255, 0.4);
  color: rgba(255, 255, 255, 0.8);
}

.btn-remove-item svg {
  width: 16px;
  height: 16px;
}

/* Empty cart state */
.cart-drawer-empty {
  text-align: center;
  padding: 3rem 1rem;
}

.cart-drawer-empty__icon {
  margin-bottom: 1.5rem;
  opacity: 0.3;
}

.cart-drawer-empty__title {
  font-size: 1.125rem;
  font-weight: 600;
  margin: 0 0 1rem 0;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.cart-drawer-empty__message {
  font-size: 0.9rem;
  opacity: 0.7;
  margin: 0 0 2rem 0;
  line-height: 1.5;
}

.btn-continue-shopping {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background-color: var(--color-foreground);
  color: var(--color-background);
  text-decoration: none;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: 0;
  transition: opacity 0.2s ease;
}

.btn-continue-shopping:hover {
  opacity: 0.9;
}

/* Mobile responsive */
@media (max-width: 768px) {
  .cart-drawer__content {
    max-width: 100%;
  }
  
  .cart-drawer__header {
    padding: 1rem;
  }
  
  .cart-drawer__body {
    padding: 0.75rem;
  }
  
  .cart-drawer__footer {
    padding: 1rem;
  }
}
/* END_SNIPPET:cart-drawer */

/* START_SNIPPET:image (INDEX:22) */
.image {
    display: block;
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 100%;
    object-fit: contain;
  }

  .image > img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }
/* END_SNIPPET:image */