/* [project]/apps/storefront/src/styles/sourbaker.css [app-client] (css) */
.sb-root {
  --sb-font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;
  --sb-font-heading: "Fraunces", serif;
  --sb-font-button: "Sora", sans-serif;
  font-family: var(--sb-font-body);
  color: #2b2b2b;
  -webkit-text-size-adjust: 100%;
  background: #faf7f2;
  flex-direction: column;
  width: 100%;
  min-height: 100vh;
  line-height: 1.6;
  display: flex;
  overflow-x: hidden;
}

.sb-root *, .sb-root :before, .sb-root :after {
  box-sizing: border-box;
}

.sb-root h1, .sb-root h2, .sb-root h3, .sb-root h4, .sb-root h5, .sb-root h6 {
  font-family: var(--sb-font-heading);
  margin: 0;
}

.sb-root p {
  margin: 0;
}

.sb-root .content-width {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
}

.sb-root main {
  flex: 1;
  width: 100%;
}

.sb-root .site-header {
  text-align: center;
  background: linear-gradient(135deg, #fff9e6 0%, #faf7f2 100%);
  border-bottom: 2px solid #e8e0d0;
  margin-bottom: 60px;
  padding: 40px 20px;
}

.sb-root .header-container {
  flex-direction: column;
  align-items: center;
  max-width: 900px;
  margin: 0 auto;
  display: flex;
}

.sb-root .header-buttons {
  justify-content: space-between;
  align-items: center;
  width: 100%;
  margin-top: 30px;
  padding: 0 20px;
  display: flex;
}

.sb-root .lang-row, .sb-root .social-row {
  justify-content: flex-end;
  gap: 8px;
  display: flex;
}

.sb-root .lang-btn {
  color: #000;
  cursor: pointer;
  font-size: .9rem;
  font-weight: 600;
  font-family: var(--sb-font-button);
  background: #ffde59;
  border: 2px solid #ffde59;
  border-radius: 6px;
  padding: 8px 16px;
  transition: all .3s;
}

.sb-root .lang-btn:hover {
  background: gold;
  border-color: gold;
}

.sb-root .lang-btn.active {
  background: #ffde59;
  border-color: #ffde59;
}

.sb-root .social-btn {
  color: #000;
  cursor: pointer;
  font-size: .9rem;
  font-weight: 600;
  font-family: var(--sb-font-button);
  background: #ffde59;
  border: 2px solid #ffde59;
  border-radius: 6px;
  padding: 8px 16px;
  text-decoration: none;
  transition: all .3s;
  display: inline-block;
}

.sb-root .social-btn:hover {
  background: gold;
  border-color: gold;
}

.sb-root .logo {
  border-radius: 50%;
  width: 250px;
  height: 250px;
  margin: 0 auto;
  display: block;
  box-shadow: 0 4px 12px #0000001a;
}

.sb-root .products-section {
  margin-bottom: 80px;
}

.sb-root .products-section .content-width {
  max-width: 900px;
}

.sb-root .products-section h2, .sb-root .order-section h2 {
  color: #8b6914;
  text-align: center;
  margin-bottom: 30px;
  font-size: 2.5rem;
  font-weight: 600;
}

.sb-root .product-tabs {
  justify-content: center;
  gap: 8px;
  margin-bottom: 40px;
  display: flex;
}

.sb-root .news-intro {
  text-align: center;
  color: #6b5b3d;
  max-width: 720px;
  margin: 0 auto 30px;
  font-size: 1rem;
  line-height: 1.6;
}

.sb-root .tab-btn {
  color: #6b5b3d;
  cursor: pointer;
  font-size: 1.25rem;
  font-weight: 600;
  font-family: var(--sb-font-button);
  text-align: center;
  background: #d4c4a8;
  border: 2px solid #d4c4a8;
  border-radius: 6px;
  flex: 1 1 0;
  min-width: 0;
  padding: 10px 0;
  transition: all .3s;
  box-shadow: 0 4px 12px #00000014;
}

.sb-root .tab-btn:hover {
  background: #c4b498;
  border-color: #c4b498;
}

.sb-root .tab-btn.active {
  color: #000;
  background: #ffde59;
  border-color: #ffde59;
}

.sb-root .tab-content {
  display: none;
}

.sb-root .tab-content.active {
  display: block;
}

.sb-root .products-list {
  flex-direction: column;
  align-items: flex-start;
  gap: 30px;
  display: flex;
}

.sb-root .product-item {
  background: #fff;
  border: 1px solid #e8e0d0;
  border-radius: 12px;
  align-items: center;
  gap: 30px;
  width: 100%;
  padding: 30px;
  transition: transform .3s, box-shadow .3s;
  display: flex;
  box-shadow: 0 4px 12px #00000014;
}

.sb-root .product-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px #0000001f;
}

.sb-root .product-content {
  flex: 1;
  min-width: 0;
}

.sb-root .product-item h3 {
  color: #8b6914;
  margin-bottom: 12px;
  font-size: 1.5rem;
  font-weight: 600;
}

.sb-root .product-item p {
  color: #6b5b3d;
  line-height: 1.6;
}

.sb-root .product-meta {
  margin-top: -6px;
  margin-bottom: 12px;
}

.sb-root .sb-cart-btn {
  color: #000;
  cursor: pointer;
  min-width: 180px;
  height: 42px;
  font-size: .9rem;
  font-weight: 600;
  font-family: var(--sb-font-button);
  background: #ffde59;
  border: 2px solid #ffde59;
  border-radius: 6px;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  padding: 0 16px;
  transition: all .25s;
  display: inline-flex;
  box-shadow: 0 2px 6px #00000014;
}

.sb-root .sb-cart-btn:hover:not(:disabled) {
  background: gold;
  border-color: gold;
  transform: translateY(-1px);
  box-shadow: 0 4px 10px #0000001f;
}

.sb-root .sb-cart-btn:disabled {
  opacity: .6;
  cursor: not-allowed;
}

.sb-root .sb-cart-btn.added {
  color: #1f3a0a;
  background: #b6d77a;
  border-color: #b6d77a;
}

.sb-root .sb-cart-btn-icon {
  justify-content: center;
  align-items: center;
  display: inline-flex;
}

.sb-root .sb-qty-stepper {
  font-family: var(--sb-font-button);
  background: #fff;
  border: 2px solid #ffde59;
  border-radius: 6px;
  align-items: stretch;
  gap: 0;
  min-width: 180px;
  height: 42px;
  margin-top: 16px;
  display: inline-flex;
  overflow: hidden;
  box-shadow: 0 2px 6px #00000014;
}

.sb-root .sb-qty-btn {
  color: #000;
  cursor: pointer;
  background: #ffde59;
  border: none;
  flex: 0 0 44px;
  justify-content: center;
  align-items: center;
  padding: 0;
  transition: background .2s, color .2s;
  display: inline-flex;
}

.sb-root .sb-qty-btn:hover:not(:disabled) {
  background: gold;
}

.sb-root .sb-qty-btn:disabled {
  opacity: .5;
  cursor: not-allowed;
}

.sb-root .sb-qty-value {
  color: #2b2b2b;
  background: #fff9e6;
  flex: auto;
  justify-content: center;
  align-items: center;
  font-size: .9rem;
  font-weight: 700;
  display: inline-flex;
}

.sb-root .product-image {
  background: #faf7f2;
  border-radius: 8px;
  flex-shrink: 0;
  width: 200px;
  height: 200px;
  position: relative;
  overflow: hidden;
}

.sb-root .product-image img {
  -o-object-fit: cover;
  object-fit: cover;
  cursor: pointer;
  width: 100%;
  height: 100%;
  transition: transform .3s, opacity .3s;
  display: block;
}

.sb-root .product-image > * {
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
}

.sb-root .product-image > a {
  cursor: pointer;
}

.sb-root .product-image img:hover {
  opacity: .9;
  transform: scale(1.05);
}

.sb-root .product-image > :first-child {
  z-index: 2;
}

.sb-root .product-image > :nth-child(2) {
  z-index: 1;
  opacity: .85;
  transform: translate(10px, 10px)scale(.92);
}

.sb-root .product-image > :nth-child(n+3) {
  display: none;
}

.sb-root .sb-product-link {
  color: inherit;
  text-decoration: none;
  transition: color .2s;
}

.sb-root .sb-product-link:hover {
  color: #6b4f0f;
  text-decoration: underline;
}

.sb-image-modal {
  z-index: 1000;
  opacity: 0;
  width: 100%;
  height: 100%;
  transition: opacity .3s;
  display: none;
  position: fixed;
  top: 0;
  left: 0;
}

.sb-image-modal.active {
  opacity: 1;
  justify-content: center;
  align-items: center;
  display: flex;
}

.sb-image-modal-overlay {
  cursor: pointer;
  background: #000000d9;
  position: absolute;
  inset: 0;
}

.sb-image-modal-content {
  z-index: 1001;
  justify-content: center;
  align-items: center;
  max-width: 90%;
  max-height: 90%;
  display: flex;
  position: relative;
}

.sb-image-modal-img {
  -o-object-fit: contain;
  object-fit: contain;
  cursor: pointer;
  border-radius: 12px;
  width: auto;
  max-width: 600px;
  height: auto;
  max-height: 80vh;
  transition: transform .3s;
  transform: scale(.9);
  box-shadow: 0 8px 32px #00000080;
}

.sb-image-modal.active .sb-image-modal-img {
  transform: scale(1);
}

.sb-image-modal-close {
  cursor: pointer;
  color: #2b2b2b;
  z-index: 1002;
  background: #ffffffe6;
  border: none;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 36px;
  height: 36px;
  font-size: 24px;
  line-height: 1;
  transition: background .3s, transform .3s;
  display: flex;
  position: absolute;
  top: -40px;
  right: 0;
}

.sb-image-modal-close:hover {
  background: #fff;
  transform: rotate(90deg);
}

.sb-root .order-section {
  background: linear-gradient(135deg, #fff9e6 0%, #fff 100%);
  border: 1px solid #e8e0d0;
  border-radius: 16px;
  margin-bottom: 80px;
  padding: 60px 20px;
  box-shadow: 0 4px 16px #00000014;
}

.sb-root .order-section .content-width {
  max-width: 900px;
}

.sb-root .order-intro {
  text-align: center;
  color: #6b5b3d;
  margin-bottom: 40px;
  font-size: 1.1rem;
}

.sb-root .order-options {
  flex-direction: column;
  align-items: center;
  gap: 40px;
  display: flex;
}

.sb-root .qr-codes {
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  display: flex;
}

.sb-root .qr-item {
  text-align: center;
  background: #fff;
  border-radius: 12px;
  margin-left: auto;
  margin-right: auto;
  padding: 20px;
  display: none;
  box-shadow: 0 4px 12px #00000014;
}

.sb-root .qr-item.active {
  display: block;
}

.sb-root .qr-item img {
  border-radius: 8px;
  width: 200px;
  height: 200px;
  margin: 0 auto;
  display: block;
}

.sb-root .qr-link {
  line-height: 0;
  display: inline-block;
}

.sb-root .qr-link:focus-visible {
  outline-offset: 4px;
  border-radius: 10px;
  outline: 3px solid #ffde59;
}

.sb-root .contact-info {
  text-align: center;
  background: #fff;
  border: 1px solid #e8e0d0;
  border-radius: 12px;
  width: 100%;
  padding: 30px;
  transition: transform .3s, box-shadow .3s;
  box-shadow: 0 4px 12px #00000014;
}

.sb-root .contact-info:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px #0000001f;
}

.sb-root .contact-info p {
  color: #6b5b3d;
  margin-bottom: 8px;
}

.sb-root .contact-info p:first-child {
  margin-bottom: 12px;
  font-size: 1.1rem;
}

.sb-root .contact-info strong {
  color: #8b6914;
}

.sb-root .site-footer {
  color: #faf7f2;
  text-align: center;
  background: #2b2b2b;
  margin-top: 60px;
  padding: 30px 20px;
}

.sb-root .site-footer .content-width {
  flex-direction: column;
  align-items: center;
  gap: 20px;
  max-width: 900px;
  display: flex;
}

.sb-root .footer-logo-link {
  cursor: pointer;
  transition: transform .3s, opacity .3s;
  display: inline-block;
}

.sb-root .footer-logo-link:hover {
  opacity: .9;
  transform: scale(1.05);
}

.sb-root .footer-logo {
  border-radius: 50%;
  width: 80px;
  height: 80px;
  display: block;
}

.sb-root .site-footer p {
  margin: 0;
  font-size: .95rem;
}

@media (width <= 768px) {
  .sb-root .logo {
    width: 200px;
    height: 200px;
  }

  .sb-root .header-buttons {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }

  .sb-root .lang-row, .sb-root .social-row {
    flex-wrap: wrap;
    justify-content: center;
  }

  .sb-root .lang-btn, .sb-root .social-btn {
    padding: 6px 12px;
    font-size: .85rem;
  }

  .sb-root .product-tabs {
    justify-content: stretch;
    width: 100%;
  }

  .sb-root .tab-btn {
    padding: 10px 0;
    font-size: 1rem;
  }

  .sb-root .products-section h2, .sb-root .order-section h2 {
    font-size: 2rem;
  }

  .sb-root .product-item {
    flex-direction: column;
    align-items: stretch;
  }

  .sb-root .product-content {
    display: contents;
  }

  .sb-root .product-image {
    order: 2;
    width: 100%;
    height: 250px;
  }

  .sb-root .sb-cart-btn, .sb-root .sb-qty-stepper {
    order: 3;
    align-self: stretch;
    width: 100%;
  }

  .sb-root .order-section {
    padding: 40px 20px;
  }

  .sb-root .qr-codes {
    flex-direction: column;
    gap: 30px;
    width: 100%;
  }

  .sb-root .qr-item {
    width: 100%;
    max-width: 300px;
  }

  .sb-root .qr-item img {
    width: 180px;
    height: 180px;
  }
}

@media (width <= 480px) {
  .sb-root .logo {
    width: 180px;
    height: 180px;
  }

  .sb-root .tab-btn {
    padding: 8px 0;
    font-size: .95rem;
  }

  .sb-root .products-section h2, .sb-root .order-section h2 {
    font-size: 1.75rem;
  }

  .sb-root .product-item {
    gap: 20px;
    padding: 20px;
  }

  .sb-root .product-image {
    width: 100%;
    height: 200px;
  }

  .sb-image-modal-img {
    max-width: 90%;
    max-height: 50vh;
  }

  .sb-image-modal-close {
    width: 32px;
    height: 32px;
    font-size: 20px;
    top: -30px;
  }

  .sb-root .order-section {
    padding: 30px 15px;
  }

  .sb-root .footer-logo {
    width: 60px;
    height: 60px;
  }
}

.sb-cart-bar {
  z-index: 1000;
  font-family: var(--sb-font-button);
  background: #fffdf5;
  border: 2px solid #ffde59;
  border-radius: 999px;
  align-items: stretch;
  gap: 0;
  max-width: calc(100vw - 24px);
  animation: .45s cubic-bezier(.22, 1, .36, 1) sb-cart-bar-in;
  display: inline-flex;
  position: fixed;
  bottom: 24px;
  left: 50%;
  overflow: hidden;
  transform: translateX(-50%);
  box-shadow: 0 18px 40px -12px #28190059, 0 6px 14px -4px #2819002e;
}

.sb-cart-bar.pulse {
  animation: .7s cubic-bezier(.22, 1, .36, 1) sb-cart-bar-pulse;
}

@keyframes sb-cart-bar-in {
  from {
    opacity: 0;
    transform: translate(-50%, 24px);
  }

  to {
    opacity: 1;
    transform: translate(-50%);
  }
}

@keyframes sb-cart-bar-pulse {
  0% {
    transform: translate(-50%)scale(1);
  }

  35% {
    transform: translate(-50%, -2px)scale(1.04);
    box-shadow: 0 22px 50px -12px #28190066;
  }

  100% {
    transform: translate(-50%)scale(1);
  }
}

.sb-cart-bar-summary {
  color: #2b2b2b;
  align-items: center;
  gap: 12px;
  padding: 10px 16px 10px 14px;
  text-decoration: none;
  transition: background .2s;
  display: inline-flex;
}

.sb-cart-bar-summary:hover {
  background: #fff7d6;
}

.sb-cart-bar-icon {
  color: #1a1a1a;
  background: #ffde59;
  border-radius: 50%;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  display: inline-flex;
  position: relative;
}

.sb-cart-bar-badge {
  color: #fff;
  background: #b6533d;
  border: 2px solid #fffdf5;
  border-radius: 999px;
  justify-content: center;
  align-items: center;
  min-width: 20px;
  height: 20px;
  padding: 0 5px;
  font-size: .72rem;
  font-weight: 700;
  line-height: 1;
  display: inline-flex;
  position: absolute;
  top: -4px;
  right: -4px;
}

.sb-cart-bar-text {
  flex-direction: column;
  line-height: 1.15;
  display: inline-flex;
}

.sb-cart-bar-title {
  color: #6b5b3d;
  letter-spacing: .02em;
  font-size: .78rem;
  font-weight: 600;
}

.sb-cart-bar-sub {
  color: #2b2b2b;
  font-size: .95rem;
  font-weight: 700;
}

.sb-cart-bar-cta {
  color: #ffde59;
  letter-spacing: .01em;
  background: #1a1a1a;
  align-items: center;
  gap: 8px;
  padding: 0 22px;
  font-size: .95rem;
  font-weight: 700;
  text-decoration: none;
  transition: background .2s, color .2s, padding .2s;
  display: inline-flex;
}

.sb-cart-bar-cta:hover {
  color: #fff;
  background: #2b2b2b;
  padding-right: 26px;
}

.sb-cart-bar-cta svg {
  transition: transform .2s;
}

.sb-cart-bar-cta:hover svg {
  transform: translateX(3px);
}

.sb-toast {
  z-index: 1100;
  font-family: var(--sb-font-button);
  background: #fffdf5;
  border: 1px solid #ffde59;
  border-left: 4px solid #b6d77a;
  border-radius: 12px;
  align-items: center;
  gap: 12px;
  max-width: calc(100vw - 48px);
  padding: 12px 14px;
  animation: .35s cubic-bezier(.22, 1, .36, 1) sb-toast-in;
  display: inline-flex;
  position: fixed;
  top: 24px;
  right: 24px;
  box-shadow: 0 12px 28px -10px #2819004d;
}

@keyframes sb-toast-in {
  from {
    opacity: 0;
    transform: translateY(-12px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.sb-toast-check {
  color: #1f3a0a;
  background: #b6d77a;
  border-radius: 50%;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  width: 32px;
  height: 32px;
  display: inline-flex;
}

.sb-toast-text {
  flex-direction: column;
  min-width: 0;
  line-height: 1.2;
  display: inline-flex;
}

.sb-toast-title {
  color: #2b2b2b;
  font-size: .85rem;
  font-weight: 700;
}

.sb-toast-sub {
  color: #6b5b3d;
  white-space: nowrap;
  text-overflow: ellipsis;
  max-width: 220px;
  font-size: .8rem;
  overflow: hidden;
}

.sb-toast-cta {
  color: #1a1a1a;
  background: #ffde59;
  border-radius: 999px;
  flex-shrink: 0;
  align-items: center;
  padding: 8px 14px;
  font-size: .85rem;
  font-weight: 700;
  text-decoration: none;
  transition: background .2s, transform .2s;
  display: inline-flex;
}

.sb-toast-cta:hover {
  background: gold;
  transform: translateY(-1px);
}

@media (width <= 540px) {
  .sb-cart-bar {
    border-radius: 16px;
    width: calc(100vw - 24px);
    bottom: 16px;
  }

  .sb-cart-bar-summary {
    flex: auto;
    padding: 10px 12px;
  }

  .sb-cart-bar-cta {
    padding: 0 16px;
  }

  .sb-toast {
    padding: 10px 12px;
    top: 12px;
    left: 12px;
    right: 12px;
  }

  .sb-toast-sub {
    max-width: 140px;
  }
}

.sb-root:has( + .sb-cart-bar) .site-footer, body:has(.sb-cart-bar) .sb-root .site-footer {
  padding-bottom: 100px;
}


/*# sourceMappingURL=apps_storefront_src_styles_sourbaker_229a6993.css.map*/