/*!*********************************************************************************************************************************************************************!*\
  !*** css ../node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[2].use[1]!../node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[2].use[2]!./src/style.css ***!
  \*********************************************************************************************************************************************************************/
/* Base button style */
.btn-base {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: inherit;
  font-size: 14px;
  font-weight: 500;
  padding: 0.6em 1.2em;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  width: -moz-fit-content;
  width: fit-content;
  transition:
    background-color 0.2s ease,
    opacity 0.2s ease;
}
/* Hover + active effects for all */
.btn-base:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.btn-base:active {
  transform: translateY(0);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Variants */
.btn-default {
  background: #cec6c6;
  color: #333;
}
.btn-default:hover {
  background: #aaa9a9;
}

.btn-primary {
  background: #ffc401;
  color: #fff;
}
.btn-primary:hover {
  background: #ffc401;
}

.btn-secondary {
  background: #fdbd00;
  color: #fff;
}
.btn-secondary:hover {
  background: #fdbd00;
}

.btn-outline {
  background: transparent;
  border: 2px solid #ffc401;
  color: #ffc401;
}
.btn-outline:hover {
  background: rgba(255, 196, 1, 0.08);
}

.btn-light {
  background: rgba(255, 196, 1, 0.1);
  color: #ffc401;
  border: none;
}
.btn-light:hover {
  background: rgba(255, 196, 1, 0.18);
}

.btn-loading,
.btn-base:disabled {
  cursor: not-allowed;
  opacity: 0.8;
}
.btn-base.btn-loading:hover,
.btn-base.btn-loading:active,
.btn-base:disabled:hover,
.btn-base:disabled:active {
  transform: none;
  box-shadow: none;
}

.modal-overlay {
  position: fixed;
  pointer-events: all;
  top: 0;
  left: 0;
  width: 100dvw;
  height: 100dvh;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000000;
  overflow: hidden;
}

.modal-content {
  background: #ffffff;
  position: relative;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  max-height: 100vh;
  overflow: hidden;
  -webkit-overflow-scrolling: touch;
}

@media (max-width: 768px) {
  .modal-overlay {
    align-items: flex-start;
  }

  .modal-content {
    width: 100dvw;
    height: 100dvh;
    max-height: 100dvh;
  }
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  align-content: center;
  padding: 0;
  height: 44px;
  position: sticky;
  top: 0;
  z-index: 10;
}

.modal-title {
  margin-left: 16px;
  font-size: 16px;
  font-weight: 700;
  color: #343a40;
}

.modal-close {
  position: absolute;
  top: 8px;
  right: 20px;
  border: none;
  background: transparent;
  color: #333333;
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0;
  z-index: 11;
}

.viewer-container {
  height: 500px;
  width: 100%;
}

.modal-content .viewer-container {
  height: 100%;
  max-height: calc(100vh - 44px);
}

.parameters-panel {
  width: 100%;
  height: calc(100vh - 44px);
}

.number-input-container {
  display: inline-flex;
  align-items: stretch;
}

.number-input {
  flex: 1 1 auto;
  width: 50px;
  border: 1px solid #ced4da;
  background: #ffffff;
  color: #343a40;
  height: 34px;
  padding: 0 8px;
  font-size: 14px;
  outline: none;
  border-radius: 6px 0 0 6px;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease;
  -moz-appearance: textfield;
  -webkit-appearance: textfield;
          appearance: textfield;
}

.number-input::-webkit-outer-spin-button,
.number-input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.number-input:focus {
  border-color: #ffd700;
}

.number-controls {
  display: flex;
  flex-direction: column;
  width: 32px;
  border: 1px solid #ced4da;
  border-left: none;
  border-radius: 0 6px 6px 0;
  overflow: hidden;
  background-color: #f0f0f0;
}

.number-control-button {
  flex: 1 1 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  background-color: #f0f0f0;
  color: #333333;
  font-size: 8px;
  cursor: pointer;
  transition:
    background-color 0.15s ease-in-out,
    opacity 0.15s ease-in-out;
}
.number-control-button.up {
  border-bottom: 1px solid #ced4da;
  color: #333333;
}

.number-control-button:hover:not(:disabled) {
  background-color: #e6e6e6;
}

.number-control-button:disabled {
  background-color: #f7f7f7;
  color: #9aa0a6;
  cursor: not-allowed;
}


.beegraphy-spinner {
  display: inline-block;
  vertical-align: middle;
  animation: spin 0.9s linear infinite;
  transform-origin: center;
  color: #ffc401;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

@media (max-width: 768px) {
  .modal-content .viewer-container,
  .parameters-panel {
    height: 100vh;
  }

  .modal-header {
    height: calc(44px + env(safe-area-inset-top, 0));
    padding-top: env(safe-area-inset-top, 0);
    top: 0;
  }

  .modal-close {
    top: calc(8px + env(safe-area-inset-top, 0));
  }

  .modal-title {
    margin-left: 16px;
  }
}

/* -----------------------------------------------
   Standalone configurator page
   ----------------------------------------------- */

.beegraphy-configurator-page {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 100000;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.configurator-page-header {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: start;
  height: 44px;
  flex-shrink: 0;
  z-index: 10;
  padding-left: 16px;
}

.configurator-page-title {
  font-size: 16px;
  font-weight: 700;
  color: #000000;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

@media (max-width: 768px) {
  .configurator-page-header {
    height: calc(44px + env(safe-area-inset-top, 0));
    padding-top: env(safe-area-inset-top, 0);
  }

  .beegraphy-configurator-page .parameters-panel {
    height: calc(100vh - 44px - env(safe-area-inset-top, 0));
  }
}

.theme-admin-panel {
  display: flex;
  flex-direction: column;
  width: 320px;
  flex-shrink: 0;
}

.configurator-wrapper {
    display: flex;
    gap: 24px;
    align-items: stretch;
    height: calc(100vh - 160px);
}

.configurator-preview {
    flex: 1 1 0;
    height: 100%;
}

@media (max-width: 940px) {
    .configurator-wrapper {
        flex-direction: column;
        height: auto;
    }

    .theme-admin-panel {
        width: 100%;
    }

    .configurator-preview {
        height: auto;
        min-height: 420px;
    }
}

.theme-admin-content {
  flex: 1 1 auto;
}

.theme-admin-footer {
  position: sticky;
  bottom: 0;
  padding: 16px;
  display: flex;
  gap: 8px;
  z-index: 10;
}

.theme-field-label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #868E96;
  margin-bottom: 6px;
}

.theme-divider {
  border: none;
  border-top: 1px solid #f0f0f0;
  margin: 14px 0;
}

.color-input-wrapper {
  margin-bottom: 12px;
}

.color-input-row {
  display: flex;
  align-items: center;
  gap: 6px;
}

.color-input-swatch {
  width: 34px;
  height: 34px;
  border-radius: 6px;
  border: 1px solid #e5e7eb;
  flex-shrink: 0;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.08);
  transition: box-shadow 0.15s;
}

.color-input-swatch:hover {
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.12), 0 0 0 2px #ffc401;
}

.color-input-text {
  flex: 1;
  height: 34px;
  padding: 0 10px;
  border: 1px solid #e5e7eb;
  border-radius: 6px;
  font-size: 12px;
  font-family: 'Courier New', Courier, monospace;
  color: #374151;
  background: #fff;
  outline: none;
  transition: border-color 0.15s, box-shadow 0.15s;
  min-width: 0;
}

.color-input-text:focus {
  border-color: #ffc401;
  box-shadow: 0 0 0 2px rgba(255, 196, 1, 0.18);
}

.color-input-text--error {
  border-color: #ef4444 !important;
}

.color-input-format-wrap {
  position: relative;
  flex-shrink: 0;
}

.color-input-format-btn {
  height: 34px;
  padding: 0 8px;
  background: #f3f4f6;
  border: 1px solid #e5e7eb;
  border-radius: 6px;
  font-size: 10px;
  font-weight: 700;
  font-family: 'Courier New', Courier, monospace;
  color: #6b7280;
  cursor: pointer;
  transition: background 0.15s, color 0.15s, border-color 0.15s;
  white-space: nowrap;
  letter-spacing: 0.04em;
  display: flex;
  align-items: center;
  gap: 4px;
}

.color-input-format-btn:hover {
  background: #e5e7eb;
  color: #374151;
}

.color-input-format-btn--open {
  background: #e5e7eb;
  border-color: #ffc401;
  color: #374151;
}

.color-input-format-dropdown {
  position: absolute;
  top: calc(100% + 4px);
  right: 0;
  z-index: 100;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  min-width: 80px;
}

.color-input-format-option {
  display: block;
  width: 100%;
  padding: 7px 14px;
  background: transparent;
  border: none;
  font-size: 11px;
  font-weight: 600;
  font-family: 'Courier New', Courier, monospace;
  color: #374151;
  cursor: pointer;
  text-align: left;
  letter-spacing: 0.04em;
  transition: background 0.12s;
}

.color-input-format-option:hover {
  background: #f3f4f6;
}

.color-input-format-option--active {
  color: #d97706;
  background: #fef3c7;
}

.color-input-format-option--active:hover {
  background: #fde68a;
}

.color-input-eyedrop-btn {
  width: 34px;
  height: 34px;
  flex-shrink: 0;
  background: #f3f4f6;
  border: 1px solid #e5e7eb;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #9ca3af;
  transition: background 0.15s, color 0.15s, border-color 0.15s;
}

.color-input-eyedrop-btn:hover {
  background: #fef3c7;
  color: #d97706;
  border-color: #fcd34d;
}

.size-slider-wrapper {
  margin-bottom: 16px;
}

.size-slider-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}

.size-slider-badge {
  font-size: 11px;
  font-weight: 700;
  font-family: 'Courier New', Courier, monospace;
  color: #374151;
  background: #f3f4f6;
  padding: 2px 7px;
  border-radius: 4px;
  border: 1px solid #e5e7eb;
  letter-spacing: 0.03em;
}

.size-slider-track {
  padding-bottom: 2px;
}

.size-slider-input {
  width: 100%;
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  height: 6px;
  border-radius: 3px;
  cursor: pointer;
  outline: none;
  display: block;
}

.size-slider-input::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #ffc401;
  border: 2px solid #fff;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  -webkit-transition: transform 0.1s;
  transition: transform 0.1s;
}

.size-slider-input::-webkit-slider-thumb:hover {
  transform: scale(1.15);
}

.size-slider-input::-moz-range-thumb {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #ffc401;
  border: 2px solid #fff;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
  cursor: pointer;
}

.size-slider-ticks {
  display: flex;
  justify-content: space-between;
  margin-top: 6px;
}

.size-slider-tick {
  font-size: 10px;
  color: #d1d5db;
  font-weight: 500;
  font-family: 'Courier New', Courier, monospace;
  letter-spacing: 0.02em;
  transition: color 0.15s, font-weight 0.15s;
  width: 28px;
  text-align: center;
}

.size-slider-tick--active {
  color: #ffc401;
  font-weight: 700;
}

.btn-variant-wrapper {
  margin-bottom: 4px;
}

.btn-variant-toggle {
  display: flex;
  border: 1px solid #e5e7eb;
  border-radius: 4px;
  overflow: hidden;
  background: #CED4DA;
    padding: 4px;
}

.btn-variant-option {
  flex: 1;
  padding: 8px 0;
  font-size: 13px;
  font-weight: 500;
  border: none;
  background: transparent;
  color: #9ca3af;
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
  letter-spacing: 0.01em;
    height: 30px;
}

.btn-variant-option--active {
  background: #E9ECEF;
  color: black;
    font-size: 12px;
  font-weight: 400;
    border-radius: 4px;
}

.btn-variant-option:hover:not(.btn-variant-option--active) {
  background: #f0f0f0;
  color: #374151;
}

/* -----------------------------------------------
   SweetAlert2 toast overrides
   ----------------------------------------------- */

.beegraphy-toast-container.swal2-container {
  z-index: 1000001 !important; /* above .beegraphy-configurator-page (100000) */
}

.beegraphy-toast-container .swal2-toast {
  border-left: 4px solid #ffc401;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.14);
}

.beegraphy-toast-container .swal2-timer-progress-bar {
  background: #ffc401;
}

.beegraphy-toast-cart-link {
  color: #ffc401;
  font-weight: 600;
  text-decoration: none;
}

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

/* -----------------------------------------------
   Configurator preview sidebar
   ----------------------------------------------- */

.configurator-preview-sidebar {
    width: 280px;
    display: flex;
    flex-direction: column;
    padding: 16px;
    margin: 44px 16px 16px 16px;
    border-radius: 4px;
}

@media (max-width: 1300px) {
    .configurator-preview-sidebar {
        width: 200px;
    }
}

/* -----------------------------------------------
   Cart & mini-cart sale price display
   ----------------------------------------------- */

/* Regular price — muted, struck through */
.widget_shopping_cart del,
.woocommerce-mini-cart del,
.cart_list del,
.woocommerce-cart-form del,
.wc-block-cart del {
  color: #999;
  font-size: 0.82em;
  font-weight: 400;
  text-decoration: line-through;
  opacity: 1;
}

/* Sale price — prominent */
.widget_shopping_cart ins,
.woocommerce-mini-cart ins,
.cart_list ins,
.woocommerce-cart-form ins,
.wc-block-cart ins {
  text-decoration: none;
  font-weight: 700;
  color: #3d2b1f;
}

/* Subtotal row inside the mini-cart widget */
.widget_shopping_cart .woocommerce-mini-cart__total .woocommerce-Price-amount {
  font-weight: 700;
}



/*# sourceMappingURL=style-index.css.map*/