/** Shopify CDN: Minification failed

Line 2362:8 Unexpected "}"
Line 3110:8 Unexpected "}"

**/
/* Sticker Customizer - Isolated Styles */
#stc-wrapper {
    --stc-primary-color: #F5D274;
    --stc-primary-dark: #4A776B;
    --stc-primary-light: #dbeafe;
    --stc-secondary-color: #f8fafc;
    --stc-accent-color: #DEF1DD;
    --stc-gold-accent: #f59e0b;
    --stc-border-color: #e2e8f0;
    --stc-text-color: #1e293b;
    --stc-light-text: #64748b;
    --stc-success-color: #10b981;
    --stc-warning-color: #f59e0b;
    --stc-danger-color: #ef4444;
    --stc-shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --stc-shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --stc-shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --stc-shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --stc-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
}

/* Wrapper */
#stc-wrapper {
    position: relative;
}

.withoutbg {
    background-color: transparent !important;
    padding: 0px !important;
}

/* Visual disabled state */
#stc-wrapper.stc-disabled {
    opacity: .5;
    pointer-events: none;
    cursor: not-allowed;
}

/* Click catcher overlay */
.stc-click-blocker {
    position: absolute;
    inset: 0;
    z-index: 5;
    cursor: not-allowed;
    background: transparent;
    display: none;
}

/* Active only when disabled */
#stc-wrapper.stc-disabled .stc-click-blocker {
    display: block;
}

/* Modal */
.size-modal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .55);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: .25s;
    z-index: 9999;
}

.size-modal.active {
    opacity: 1;
    pointer-events: auto;
}

.size-modal-box {
    background: #fff;
    padding: 26px;
    border-radius: 14px;
    max-width: 320px;
    width: 90%;
    text-align: center;
}

/* Indicate dropdown */
.size-dropdown.indicate {
    border: 2px solid #e63946;
    border-radius: 6px;
    animation: shake .35s ease;
}

@keyframes shake {
    25% {
        transform: translateX(-4px)
    }

    50% {
        transform: translateX(4px)
    }

    75% {
        transform: translateX(-4px)
    }
}

div#stc-dimensions-section {
    display: none;
}

#stc-wrapper * {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

#stc-wrapper body {
    background-color: #f1f5f9;
    color: var(--stc-text-color);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

/* Main Button Styling */
#stc-wrapper .stc-main-button {
    padding: 1rem 2rem;
    background: #F4F4F4;
    color: black;
    border: none;
    border-radius: 80px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--stc-transition);
    display: flex;
    align-items: center;
    gap:.85rem;
}

#stc-wrapper .stc-main-button:hover {
    transform: translateY(-2px);
}

/* Modal Overlay */
#stc-wrapper .stc-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

#stc-wrapper .stc-modal-overlay.stc-active {
    opacity: 1;
    visibility: visible;
}

/* Modal Container */
#stc-wrapper .stc-modal-container {
    width: 100%;
    max-width: 1400px;
    height: 100vh;
    background: white;

    overflow: hidden;
    box-shadow: var(--stc-shadow-xl);
    display: flex;
    flex-direction: column;
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

#stc-wrapper .stc-modal-overlay.stc-active .stc-modal-container {
    transform: scale(1);
}

/* Modal Header */
#stc-wrapper .stc-modal-header {
    padding: 1rem;
    background: #F5F5F5;
    color: black;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.Cimage_container {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

#stc-wrapper .stc-modal-title {
    font-size: 1.5rem;
    font-weight: 600;
    max-width: 200px;
    padding-left: 20px;
}

#stc-wrapper .stc-modal-close {
    background: #000;
    border: none;
    color: #fff;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--stc-transition);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    padding: 6px 18px;
}

#stc-wrapper .stc-modal-close:hover {
    background-color: rgba(255, 255, 255, 0.1);
    color: black;
}

/* Modal Body */
#stc-wrapper .stc-modal-body {
    flex: 1;
    overflow: auto;
    padding: 0;
}

/* Main Container */
#stc-wrapper .stc-app-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: .2rem;
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: .2rem;
    background-color: #f5f5f5;
    min-height: calc(100vh - 80px);
}

/* Controls Panel */
#stc-wrapper .stc-controls-panel {
    overflow: hidden;
    display: flex;
    flex-direction: column;
    position: sticky;
    top: 1rem;
    height: calc(100vh - 80px);
}

#stc-wrapper .stc-controls-content {
    padding: 1rem;
    overflow-y: auto;
    flex: 1;
    overflow-x: hidden;
    scrollbar-width: thin;
    scrollbar-color: var(--stc-border-color) transparent;
}

#stc-wrapper .stc-controls-content::-webkit-scrollbar {
    width: 4px;
}

#stc-wrapper .stc-controls-content::-webkit-scrollbar-track {
    background: transparent;
}

#stc-wrapper .stc-controls-content::-webkit-scrollbar-thumb {
    background-color: var(--stc-border-color);
    border-radius: 2px;
}

#stc-wrapper .stc-control-section {
    margin-bottom: 1rem;
    background: white;
    border-radius: 8px;
    padding: 12px 20px;
}

#stc-wrapper .stc-control-section:last-child {
    margin-bottom: 0;
}

#stc-wrapper .stc-control-section-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.95rem;
    color: var(--stc-text-color);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

#stc-wrapper .stc-control-section-title i {
    color: var(--stc-primary-color);
    font-size: 0.9rem;
}

/* Hidden utility class */
#stc-wrapper .stc-hidden {
    display: none !important;
}

/* Tab Navigation */
#stc-wrapper .stc-tab-nav {
    display: flex;
    margin-bottom: 1rem;
    border-radius: 0.5rem;
    overflow: hidden;
}

#stc-wrapper .stc-tab-btn {
    flex: 1;
    padding: 0.75rem;
    background: white;
    border: none;
    cursor: pointer;
    transition: var(--stc-transition);
    font-size: 1.1rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    border-radius:30px;
    justify-content: center;
    gap: 0.5rem;
    color: var(--stc-light-text);
}

#stc-wrapper .stc-tab-btn.active {
    background: black;
    border-radius: 30px;
    color: white;
}

#stc-wrapper .stc-tab-btn:hover:not(.active) {
    background: var(--stc-secondary-color);
    color: var(--stc-text-color);
}

/* Tab Content */
#stc-wrapper .stc-tabs-content {
    position: relative;
}

#stc-wrapper .stc-tab-pane {
    display: none !important;
}

#stc-wrapper .stc-tab-pane.active {
    display: block !important;
}

/* Text Input - Premium Styling */
#stc-wrapper .stc-text-input-container {
    position: relative;
    margin-bottom: 1rem;
}

#stc-wrapper .stc-text-input {
    width: 100%;
    padding: 0.75rem 1rem;
    font-size: 0.9rem;
    font-family: inherit;
    border: 2px solid var(--stc-border-color);
    border-radius: 12px;
    background: white;
    color: var(--stc-text-color);
    transition: var(--stc-transition);
    box-shadow: var(--stc-shadow-sm);
}

#stc-wrapper .stc-text-input::placeholder {
    color: var(--stc-light-text);
    opacity: 1;
    font-weight: 400;
}

#stc-wrapper .stc-text-input:hover {
    border-color: #cbd5e1;
    box-shadow: var(--stc-shadow-md);
}

#stc-wrapper .stc-text-input:focus {
    outline: none;
    border-color: var(--stc-primary-color);
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.15), var(--stc-shadow-md);
}

#stc-wrapper .stc-text-input:disabled {
    background: var(--stc-secondary-color);
    cursor: not-allowed;
    opacity: 0.6;
}

/* Premium input with floating label effect */
#stc-wrapper .stc-text-input-container.has-label {
    padding-top: 1.25rem;
}

#stc-wrapper .stc-text-input-label {
    position: absolute;
    top: 0.5rem;
    left: 1rem;
    font-size: 1rem;
    font-weight: 600;
    color: var(--stc-primary-color);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    pointer-events: none;
    transition: var(--stc-transition);
}

#stc-wrapper .stc-text-input:focus+.stc-text-input-label,
#stc-wrapper .stc-text-input:not(:placeholder-shown)+.stc-text-input-label {
    top: 0;
    font-size: 1rem;
}

/* Input with icon */
#stc-wrapper .stc-text-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

#stc-wrapper .stc-text-input-icon {
    position: absolute;
    left: 1rem;
    color: var(--stc-light-text);
    pointer-events: none;
    transition: var(--stc-transition);
}

#stc-wrapper .stc-text-input-wrapper .stc-text-input {
    padding-left: 2.95rem;
}

#stc-wrapper .stc-text-input-wrapper .stc-text-input:focus+.stc-text-input-label~.stc-text-input-icon,
#stc-wrapper .stc-text-input-wrapper .stc-text-input:not(:placeholder-shown)+.stc-text-input-label~.stc-text-input-icon {
    color: var(--stc-primary-color);
}

#stc-wrapper .stc-text-input-action {
    position: absolute;
    right: 0.95rem;
    background: none;
    border: none;
    color: var(--stc-light-text);
    cursor: pointer;
    padding: 0.25rem;
    border-radius: 4px;
    transition: var(--stc-transition);
    opacity: 0;
    visibility: hidden;
}

#stc-wrapper .stc-text-input:not(:placeholder-shown)~.stc-text-input-action,
#stc-wrapper .stc-text-input:focus~.stc-text-input-action {
    opacity: 1;
    visibility: visible;
}

#stc-wrapper .stc-text-input-action:hover {
    color: var(--stc-text-color);
    background: var(--stc-secondary-color);
}

/* Text Controls */
#stc-wrapper .stc-text-controls {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
    background: var(--stc-secondary-color);
    border-radius: 0.5rem;
}

#stc-wrapper .stc-text-control-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding: 0.75rem;
    background: white;
    border-radius: 0.5rem;
    border: 1px solid var(--stc-border-color);
    transition: var(--stc-transition);
}

#stc-wrapper .stc-text-control-group:hover {
    border-color: var(--stc-primary-color);
    box-shadow: var(--stc-shadow-sm);
}

#stc-wrapper .stc-text-control-label {
    font-size: 1rem;
    font-weight: 600;
    color: var(--stc-text-color);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

#stc-wrapper .stc-text-control-input {
    padding: 0.5rem;
    border: 1px solid var(--stc-border-color);
    border-radius: 0.375rem;
    font-size: 0.875rem;
    background: white;
    transition: var(--stc-transition);
}

#stc-wrapper .stc-text-control-input:focus {
    outline: none;
    border-color: var(--stc-primary-color);
    box-shadow: 0 0 0 2px rgba(37, 99, 235, 0.1);
}

#stc-wrapper .stc-text-control-input[type="color"] {
    height: 2.5rem;
    padding: 0.25rem;
    cursor: pointer;
}

/* Icon Color Picker Styling */
#stc-wrapper #stc-icon-section .stc-text-control-group {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 10px;
}

#stc-wrapper #stc-icon-section .stc-text-control-label {
    font-size: 1rem;
    margin-bottom: 6px;
    color: #64748b;
}

#stc-wrapper #stc-icon-section .stc-color-picker {
    width: 100%;
    height: 40px;
    border: 2px solid #e2e8f0;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s ease;
}

#stc-wrapper #stc-icon-section .stc-color-picker:hover {
    border-color: #E6B54A;
}

/* Combined Text Container - All in One */
#stc-wrapper .stc-text-combined-container {
    display: flex;
    flex-direction: column;
    gap: .75rem;
    border-radius: 8px;
    margin-bottom: 1rem;
}

#stc-wrapper #stc-text-containers-wrapper {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

#stc-wrapper .stc-section-label {
    display: block;
    font-size: 1rem;
    font-weight: 600;
    color: var(--stc-text-color);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.5rem;
}

/* Text Input Section */
#stc-wrapper .stc-text-input-section {
    background: white;
    padding: 1rem;
    border-radius: 0.5rem;
    border: 1px solid var(--stc-border-color);
}

#stc-wrapper .stc-text-input-section .stc-text-input-wrapper {
    position: relative;
}

#stc-wrapper .stc-text-input-section .stc-text-input {
    width: 100%;
    padding: 0.75rem 7rem 0.75rem 2.95rem;
    border: .5px solid var(--stc-border-color);
    border-radius: 0.5rem;
    font-size: 1.2rem;
    background: #f8fafc;
    transition: var(--stc-transition);
}

#stc-wrapper .stc-text-input-section .stc-text-input:focus {
    outline: none;
    border-color: var(--stc-primary-color);
    background: white;
}

#stc-wrapper .stc-text-input-section .stc-text-input-icon {
    position: absolute;
    left: 0.875rem;
    top: 50%;
    transform: translateY(-50%);
    color: #94a3b8;
}

#stc-wrapper .stc-text-input-section .stc-text-input-action {
    position: absolute;
    right: 0.5rem;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: #94a3b8;
    cursor: pointer;
    padding: 0.25rem;
    opacity: 0;
    transition: var(--stc-transition);
}

#stc-wrapper .stc-text-input-section .stc-text-input:not(:placeholder-shown)~.stc-add-text-btn~.stc-text-input-action,
#stc-wrapper .stc-text-input-section .stc-text-input:focus~.stc-add-text-btn~.stc-text-input-action {
    opacity: 1;
}

/* Add Text Button */
#stc-wrapper .stc-add-text-btn {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    background: var(--stc-primary-color);
    color: white;
    border: none;
    border-radius: 0.25rem;
    padding: 0.375rem 0.75rem;
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--stc-transition);
    display: flex;
    align-items: center;
    gap: 0.375rem;
}

#stc-wrapper .stc-add-text-btn:hover {
    background: #1d4ed8;
    box-shadow: 0 2px 8px rgba(37, 99, 235, 0.3);
}

#stc-wrapper .stc-add-text-btn i {
    font-size: 0.7rem;
}

/* Remove Text Button */
#stc-wrapper .stc-remove-text-btn {
    position: absolute;
    right: 0.5rem;
    top: 50%;
    transform: translateY(-50%);
    background: #dc2626;
    color: white;
    border: none;
    border-radius: 0.25rem;
    padding: 0.375rem 0.5rem;
    cursor: pointer;
    transition: var(--stc-transition);
}

#stc-wrapper .stc-remove-text-btn:hover {
    background: #b91c1c;
}

/* Font Family Section */
#stc-wrapper .stc-font-section {
    background: white;
    padding: 1rem;
    border-radius: 0.5rem;
    border: 1px solid var(--stc-border-color);
}

#stc-wrapper .stc-font-section .stc-text-control-input {
    width: 100%;
    padding: 0.5rem;
    border: 1px solid var(--stc-border-color);
    border-radius: 0.375rem;
    font-size: 1.2rem;
    background: white;
    cursor: pointer;
    transition: var(--stc-transition);
}

#stc-wrapper .stc-font-section .stc-text-control-input:focus {
    outline: none;
    border-color: var(--stc-primary-color);
    box-shadow: 0 0 0 2px rgba(37, 99, 235, 0.1);
}

/* Colors Section */
#stc-wrapper .stc-colors-section {
    background: white;
    padding: 1rem;
    border-radius: 0.5rem;
    border: 1px solid var(--stc-border-color);
}

#stc-wrapper .stc-colors-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
}

#stc-wrapper .stc-color-item {
    display: flex;
    flex-direction: column;
    gap: 0.375rem;
}

#stc-wrapper .stc-color-label {
    font-size: 1rem;
    font-weight: 600;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

#stc-wrapper .stc-color-item .stc-color-picker {
    width: 100%;
    height: 31px;
    padding: 0;
    border: 1px solid #e2e8f0;
    border-radius: 0.5rem;
    cursor: pointer;
    transition: all 0.2s ease;
}

#stc-wrapper .stc-color-item .stc-color-picker:hover {
    border-color: var(--stc-primary-color);
}

/* Font Size Section */
#stc-wrapper .stc-fontsize-section {
    background: white;
    padding: 1rem;
    border-radius: 0.5rem;
    border: 1px solid var(--stc-border-color);
}

#stc-wrapper .stc-fontsize-section .stc-number-input-container {
    display: flex;
    align-items: center;
    gap: 0;
    border: 1px solid var(--stc-border-color);
    border-radius: 0.375rem;
    overflow: hidden;
}

#stc-wrapper .stc-fontsize-section .stc-number-input-btn {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f1f5f9;
    border: none;
    cursor: pointer;
    font-size: 1.2rem;
    color: var(--stc-text-color);
    transition: var(--stc-transition);
}

#stc-wrapper .stc-fontsize-section .stc-number-input-btn:hover {
    background: var(--stc-primary-color);
    color: white;
}

#stc-wrapper .stc-fontsize-section .stc-number-input {
    flex: 1;
    padding: 0.5rem;
    border: none;
    text-align: center;
    font-size: 0.875rem;
    font-weight: 600;
    background: white;
    -moz-appearance: textfield;
}

#stc-wrapper .stc-fontsize-section .stc-number-input::-webkit-outer-spin-button,
#stc-wrapper .stc-fontsize-section .stc-number-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Logo Upload */
#stc-wrapper .stc-logo-upload-container {
    border: 1px dashed #00000033;
    border-radius: 15px;
    padding: 1rem;
    text-align: center;
    cursor: pointer;
    transition: var(--stc-transition);
    background: #EBEBEB;
    position: relative;
}

#stc-wrapper .stc-logo-upload-container:hover {
    border-color: var(--stc-primary-color);
    background: var(--stc-primary-light);
}

#stc-wrapper .stc-logo-upload-container.stc-dragover {
    border-color: var(--stc-primary-color);
    background: var(--stc-primary-light);
}

#stc-wrapper .stc-logo-upload-icon {
    font-size: 1.5rem;
    color: #19191980;
    margin-bottom: 0.5rem;
}

#stc-wrapper .stc-logo-upload-text {
    font-weight: 500;
    margin-bottom: 0.25rem;
    font-size: 1.2rem;
}

#stc-wrapper .stc-logo-upload-subtext {
    font-size: 1rem;
    color: var(--stc-light-text);
}

#stc-wrapper .stc-logo-preview {
    margin-top: 0.75rem;
    display: none;
}

#stc-wrapper .stc-logo-preview-img {
    max-width: 100%;
    border-radius: 0.5rem;
    border: 2px solid transparent;
    max-height: 100px;
    border-radius: 0.5rem;
    /* box-shadow: var(--stc-shadow-md); */
}

.stc-logo-resize-section {
    display: none;
}

#stc-wrapper .stc-logo-preview-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 0.5rem;
}

#stc-wrapper .stc-logo-preview-name {
    font-size: 1rem;
    color: var(--stc-light-text);
    font-weight: 500;
    word-break: break-all;
    flex: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    padding-right: 0.5rem;
}

#stc-wrapper .stc-logo-preview-controls {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

#stc-wrapper .stc-logo-remove-bg-btn {
    background: var(--stc-success-color);
    color: white;
    border: none;
    border-radius: 0.25rem;
    padding: 0.375rem 0.75rem;
    font-size: 0.8rem;
    cursor: pointer;
    transition: var(--stc-transition);
    display: flex;
    align-items: center;
    gap: 0.25rem;
    font-weight: 500;
}

#stc-wrapper .stc-logo-remove-bg-btn:hover {
    background: #059669;
    transform: translateY(-1px);
}

#stc-wrapper .stc-logo-remove-bg-btn:disabled {
    background: #9ca3af;
    cursor: not-allowed;
    transform: none;
}

#stc-wrapper .stc-logo-remove-bg-btn.stc-processing {
    background: var(--stc-warning-color);
    cursor: wait;
}

#stc-wrapper .stc-logo-remove-btn {
    background: var(--stc-danger-color);
    color: white;
    border: none;
    border-radius: 0.25rem;
    padding: 0.375rem;
    font-size: 0.8rem;
    cursor: pointer;
    transition: var(--stc-transition);
}

#stc-wrapper .stc-logo-remove-btn:hover {
    background: #dc2626;
}

/* Logo Preview Card - Matching Reference Image */
#stc-wrapper .stc-logo-preview-card {
    margin-top: 1rem;
    background: white;
    border-radius: 8px;
    padding: 16px;
}

#stc-wrapper .stc-logo-preview-main {
    display: flex;
    gap: 16px;
    margin-bottom: 20px;
}

#stc-wrapper .stc-logo-preview-box {
    width: 100px;
    height: 100px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px;
    flex-shrink: 0;
}

#stc-wrapper .stc-logo-preview-img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: all 0.3s ease;
}

#stc-wrapper .stc-dpi-status-box {
    flex: 1;
    background: #e9f7ef;
    border: 1px solid #c3e6cb;
    border-radius: 10px;
    padding: 6px;
    display: flex;
    align-items: center;
    gap: 2px;
    transition: all .3s ease;
    flex-direction: column;
    text-align: center;
}

#stc-wrapper .stc-dpi-icon-box {
    font-size: 20px;
    color: #28a745;
    margin-top: 2px;
}

#stc-dpi-status {
    justify-content: center;
}
#stc-wrapper .stc-dpi-text-box {
    display: flex;
    flex-direction: column;
    align-items: center;

}

#stc-wrapper .stc-dpi-title {
    font-size: 1rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 2px;
}

#stc-wrapper .stc-dpi-subtitle {
    font-size: 0.85rem;
    color: #64748b;
    line-height: 1.3;
}

#stc-wrapper .stc-logo-preview-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 12px;
    border-top: 1px solid #f1f5f9;
}

#stc-wrapper .stc-logo-preview-name {
    font-size: 1rem;
    color: #64748b;
    font-weight: 500;
    word-break: break-all;
    max-width: 80%;
}

#stc-wrapper .stc-logo-remove-btn {
    background: #f1f5f9;
    color: #64748b;
    border: none;
    border-radius: 6px;
    padding: 8px;
    cursor: pointer;
    transition: all 0.2s;
}

#stc-wrapper .stc-logo-remove-btn:hover {
    background: #fee2e2;
    color: #ef4444;
}

#stc-wrapper .stc-remove-bg-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    margin-top: 1rem;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

#stc-wrapper .stc-remove-bg-label {
    font-size: 1.2rem;
    font-weight: 500;
    color: #334155;
}

/* Outline Controls */

#stc-wrapper .stc-outline-toggle-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.75rem;
    padding: 0px 3px;
    border-radius: 8px;
}

#stc-wrapper .stc-outline-toggle-label {
    font-weight: 500;
    font-size: 1.2rem;
}

#stc-wrapper .stc-toggle-switch {
    position: relative;
    width: 48px;
    height: 24px;
}

#stc-wrapper .stc-toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

#stc-wrapper .stc-toggle-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #cbd5e1;
    transition: var(--stc-transition);
    border-radius: 24px;
}

#stc-wrapper .stc-toggle-slider:before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: var(--stc-transition);
    border-radius: 50%;
}

#stc-wrapper .stc-toggle-switch input:checked+.stc-toggle-slider {
    background-color: #a1a1a1;
}

#stc-wrapper .stc-toggle-switch input:checked+.stc-toggle-slider:before {
    transform: translateX(24px);
}

#stc-wrapper .stc-outline-controls {
    padding: 0.75rem;
    border-radius: 8px;
    border: 1px solid #f5f5f5;
}

#stc-wrapper .stc-slider-control {
    margin-bottom: 0.75rem;
}

#stc-wrapper .stc-slider-label {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
    font-weight: 500;
    font-size: 1rem;
}

#stc-wrapper .stc-slider-value {
    color: var(--stc-primary-color);
    font-weight: 600;
}

#stc-wrapper .stc-slider {
    width: 100%;
    height: 6px;
    border-radius: 3px;
    background: #e2e8f0;
    outline: none;
    -webkit-appearance: none;
    appearance: none;
}

#stc-wrapper .stc-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--stc-primary-color);
    cursor: pointer;
    box-shadow: var(--stc-shadow-md);
}

#stc-wrapper .stc-slider::-moz-range-thumb {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--stc-primary-color);
    cursor: pointer;
    box-shadow: var(--stc-shadow-md);
}

#stc-wrapper .stc-color-control {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
}

#stc-wrapper .stc-color-picker {
    width: 48px;
    height: 36px;
    border: 2px solid var(--stc-border-color);
    border-radius: 0.5rem;
    cursor: pointer;
    flex-shrink: 0;
    background: none;
    padding: 0;
    transition: var(--stc-transition);
}

#stc-wrapper .stc-color-picker::-webkit-color-swatch-wrapper {
    padding: 0;
    border: none;
    border-radius: 0.25rem;
}

#stc-wrapper .stc-color-picker::-webkit-color-swatch {
    border: none;
    border-radius: 0.25rem;
}

#stc-wrapper .stc-color-input {
    flex: 1;
    padding: 0.5rem;
    border: 1px solid var(--stc-border-color);
    border-radius: 0.5rem;
    font-family: monospace;
    font-size: 0.8rem;
}

#stc-wrapper .stc-checkbox-control {
    display: none;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
    padding: 0.5rem;
    background: white;
    border-radius: 0.5rem;
    border: 1px solid var(--stc-border-color);
}

#stc-wrapper .stc-checkbox-control input {
    margin: 0;
}

#stc-wrapper .stc-checkbox-label {
    font-weight: 500;
    font-size: 0.8rem;
}

/* Size Controls */
#stc-wrapper .stc-size-controls {
    display: flex;
    gap: 0.75rem;
    margin-top: 0.75rem;
}

#stc-wrapper .stc-size-control {
    flex: 1;
    border-radius: 0.5rem;
}

#stc-wrapper .stc-size-control-label {
    font-weight: 500;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.2rem;
}

#stc-wrapper .stc-size-control-input {
    width: 100%;
    padding: .7rem;
    border: 1px solid var(--stc-border-color);
    border-radius: 0.5rem;
    font-size: 1rem;
    background: white;
}

#stc-wrapper .stc-size-control-input:focus {
    outline: none;
    border-color: var(--stc-primary-color);
    box-shadow: 0 0 0 2px rgba(37, 99, 235, 0.1);
}

#stc-wrapper .stc-number-input-container {
    display: flex;
    align-items: center;
}

#stc-wrapper .stc-number-input-btn {
    width: 28px;
    height: 28px;
    border-radius: 0.25rem;
    border: 1px solid var(--stc-border-color);
    background: white;
    color: var(--stc-text-color);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--stc-transition);
    font-size: 0.8rem;
}

#stc-wrapper .stc-number-input-btn:hover {
    background: var(--stc-secondary-color);
}

#stc-wrapper .stc-number-input-btn:disabled {
    background: #f1f5f9;
    color: #cbd5e1;
    cursor: not-allowed;
}

#stc-wrapper .stc-number-input {
    flex: 1;
    padding: 0.5rem;
    border: 1px solid var(--stc-border-color);
    border-radius: 0;
    font-size: 0.8rem;
    text-align: center;
    border-left: none;
    border-right: none;
}

#stc-wrapper .stc-number-input:focus {
    outline: none;
    border-color: var(--stc-primary-color);
}

#stc-wrapper .stc-number-input-container .stc-number-input-btn:first-child {
    border-radius: 0.25rem 0 0 0.25rem;
}

#stc-wrapper .stc-number-input-container .stc-number-input-btn:last-child {
    border-radius: 0 0.25rem 0.25rem 0;
}

/* Preview Panel */
#stc-wrapper .stc-preview-panel {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    min-height: 0;
}

#stc-download-btn {
    display: none !important;
}
#stc-canvas-container {
    background: transparent;
    border-radius: 0.5rem;
    overflow: visible;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--stc-transition);
    position: relative;
    transform-origin: center center; /* Added */
}
#stc-wrapper #stc-sticker-canvas.stc-canvas-white-bg {
    background: white;
}
#stc-wrapper .stc-preview-header {
    padding: 1rem;
    display: flex;
    z-index:1;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap:.85rem;
    background: #fff;
    background-image: radial-gradient(#cbd5e1 .5px, transparent 1px);
    background-size: 10px 10px;
    border-radius:.85rem;
    position: relative;
    overflow: visible;
}

#stc-wrapper .stc-preview-title {
    font-size: 1.2rem;
    font-weight: 600;
}

#stc-wrapper .stc-preview-actions {
    display: flex;
    gap: 0.5rem;
}

#stc-wrapper .stc-preview-action-btn {
    padding:.75rem 1.25rem;
    color: var(--stc-text-color);
    font-weight: 500;
    cursor: pointer;
    transition: var(--stc-transition);
    display: flex;
    align-items: center;
    gap:.75rem;
    font-size:1rem;
    background: #EBEBEB;
    border-radius: 80px;
}

#stc-wrapper .stc-preview-action-btn:hover {
    background: var(--stc-secondary-color);
}

#stc-wrapper .stc-preview-action-btn.stc-primary {
    background: var(--stc-primary-color);
    color: white;
    border-color: var(--stc-primary-color);
}

#stc-wrapper .stc-preview-action-btn.stc-primary:hover {
    background: var(--stc-primary-dark);
}

#stc-wrapper .stc-preview-content {
    display: flex;
    height: 100%; 
    flex-direction: column;
    min-height: 0;
}

#stc-wrapper .stc-preview-board-container {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    /* background: var(--stc-secondary-color); */
    /* border-radius: .95rem; */
    /* padding: 1rem; */
    position: relative;
    overflow: auto;
    min-height: 250px;
}

#stc-wrapper .stc-preview-board {
    background: #fff;
    background-image: radial-gradient(#cbd5e1 .5px, transparent 1px);
    background-size: 10px 10px;
    border-radius:.85rem;
    /* box-shadow: var(--stc-shadow-lg); */
    position: relative;
    display: flex !important;
    align-items: center;
    justify-content: center;
    transition: none;
}

#stc-wrapper .stc-preview-board-label {
    position: absolute;
    top: 0.5rem;
    left: 0.5rem;
    background: rgba(255, 255, 255, 0.9);
    padding: 0.25rem 0.5rem;
    border-radius: 1rem;
    font-size: 1rem;
    font-weight: 500;
    box-shadow: var(--stc-shadow-sm);
    z-index: 10;
}

#stc-wrapper .stc-canvas-container {
    background: transparent;
    border-radius: 0.5rem;
    overflow: visible;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--stc-transition);
    position: relative;
}

#stc-wrapper #stc-sticker-canvas {
    object-fit: contain;
    display: block;
    transition: var(--stc-transition);
    position: relative;
    z-index: 0;
    overflow : auto;
    /* Sticker Background Effect - Applied to canvas */
    filter: drop-shadow(0px 5px 10px rgba(0, 0, 0, .6)) drop-shadow(0 0px 0px rgba(0, 0, 0, 0)) drop-shadow(0 0px 0px rgba(0, 0, 0, 0));
    height: calc(100% - 40px) !important;
}

/* Sticker Glossy Overlay - Disabled to improve visibility */
#stc-wrapper .stc-canvas-container::before {
    display: none;
}

#stc-wrapper .stc-preview-specs {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 0.75rem;
    margin-top: 1rem;
}

#stc-wrapper .stc-preview-spec {
    background: var(--stc-secondary-color);
    padding: 0.75rem;
    border-radius: 0.5rem;
    text-align: center;
}

#stc-wrapper .stc-preview-spec-title {
    font-size: 0.7rem;
    color: var(--stc-light-text);
    margin-bottom: 0.25rem;
}

#stc-wrapper .stc-preview-spec-value {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--stc-primary-color);
}

/* Confirmation Section */
#stc-wrapper .stc-confirmation-section {
    padding: 1.5rem;
    border-top: 1px solid var(--stc-border-color);
    text-align: center;
}

#stc-wrapper .stc-confirmation-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

#stc-wrapper .stc-confirmation-text {
    color: var(--stc-light-text);
    margin-bottom: 0.75rem;
    font-size: 1rem;
}

#stc-wrapper .stc-confirmation-actions {
    display: flex;
    gap: 0.75rem;
}

#stc-wrapper .stc-confirmation-btn {
    flex: 1;
    padding: 0.75rem;
    border-radius: 0.5rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--stc-transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 1rem;
}

#stc-wrapper .stc-confirmation-btn.stc-primary {
    background: var(--stc-gold-accent);
    border-radius: 30px;
    color: white;
    border: none;
}

#stc-wrapper .stc-confirmation-btn.stc-primary:hover {
    background: var(--stc-primary-dark);
}

#stc-wrapper .stc-confirmation-btn.stc-secondary {
    background: #f5f5f5;
    border-radius: 30px;
    color: var(--stc-text-color);
    border: 1px solid var(--stc-border-color);
}

#stc-wrapper .stc-confirmation-btn.stc-secondary:hover {
    background: var(--stc-secondary-color);
}

#stc-wrapper .stc-confirmation-message {
    display: none;
    padding: 0.75rem;
    border-radius: 0.5rem;
    margin-top: 0.75rem;
    text-align: center;
    font-weight: 500;
    font-size: 0.8rem;
}

#stc-wrapper .stc-confirmation-message.stc-success {
    background: rgba(16, 185, 129, 0.1);
    color: var(--stc-success-color);
    border: 1px solid rgba(16, 185, 129, 0.3);
}

#stc-wrapper .stc-confirmation-message.stc-help {
    background: rgba(245, 158, 11, 0.1);
    color: var(--stc-warning-color);
    border: 1px solid rgba(245, 158, 11, 0.3);
}

/* Notification Toast */
#stc-wrapper .stc-notification-toast {
    position: fixed;
    bottom: 1rem;
    right: 1rem;
    background: white;
    border-radius: 0.5rem;
    box-shadow: var(--stc-shadow-lg);
    padding: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    transform: translateX(120%);
    transition: transform 0.3s ease;
    z-index: 1000000;
    max-width: 300px;
}

#stc-wrapper .stc-notification-toast.stc-show {
    transform: translateX(0);
}

#stc-wrapper .stc-notification-toast-icon {
    font-size: 1rem;
}

#stc-wrapper .stc-notification-toast.stc-success .stc-notification-toast-icon {
    color: var(--stc-success-color);
}

#stc-wrapper .stc-notification-toast.stc-error .stc-notification-toast-icon {
    color: var(--stc-danger-color);
}

#stc-wrapper .stc-notification-toast.stc-info .stc-notification-toast-icon {
    color: var(--stc-primary-color);
}

#stc-wrapper .stc-notification-toast-content {
    flex: 1;
}

#stc-wrapper .stc-notification-toast-title {
    font-weight: 600;
    margin-bottom: 0.25rem;
    font-size: 0.8rem;
}

#stc-wrapper .stc-notification-toast-message {
    font-size: 0.7rem;
    color: var(--stc-light-text);
}

#stc-wrapper .stc-notification-toast-close {
    background: none;
    border: none;
    color: var(--stc-light-text);
    cursor: pointer;
    font-size: 0.8rem;
}

/* Mobile Layout - Tablet */
@media (min-width: 768px) and (max-width: 1023px) {
    #stc-wrapper .stc-app-container {
        grid-template-columns: 280px 1fr;
        padding: 0.5rem;
        gap: 0.75rem;
    }

    #stc-wrapper .stc-controls-panel {
        width: 280px;
        height: calc(100vh - 60px);
        top: 0.5rem;
    }

    #stc-wrapper .stc-preview-specs {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.5rem;
    }

    #stc-wrapper .stc-size-controls {
        flex-direction: column;
        gap: 0.5rem;
    }
}

/* Mobile Layout - up to 767px */
@media (max-width: 767px) {
    #stc-wrapper .stc-modal-header {
        padding: 1rem;
    }

    #stc-wrapper .stc-modal-title {
        font-size: 1.2rem;
        font-weight: 600;
        max-width: 200px;
        padding-left: 20px;
    }

    #stc-wrapper .stc-app-container {
        grid-template-columns: 1fr;
        grid-template-rows: auto auto;
        gap: 0.75rem;
        padding: 0.75rem;
        min-height: auto;
    }

    #stc-wrapper .stc-controls-panel {
        position: relative;
        top: auto;
        left: auto;
        width: auto;
        height: auto;
        max-height: 500px;
        order: 1;
        margin-bottom: 0;
        border-radius: 1rem;
        box-shadow: var(--stc-shadow-md);
    }

    #stc-wrapper .stc-preview-panel {
        order: 2;
        margin-top: 0;
    }

    #stc-wrapper .stc-controls-content {
        overflow-y: auto;
        padding: 0.75rem;
    }

    #stc-wrapper .stc-control-section {
        margin-bottom: 0.75rem;
        background: white;
        border-radius: 8px;
    }

    #stc-wrapper .stc-preview-board-container {
        min-height: 320px;
        padding: 0.75rem;
        overflow: visible;
    }

    #stc-wrapper .stc-preview-board {
        overflow: visible;
    }

    #stc-wrapper .stc-canvas-container {
        overflow: visible;
    }
}

/* Enhanced Mobile - up to 575px */
@media (max-width: 575px) {
    #stc-wrapper .stc-app-container {
        padding: 0.5rem;
        gap: 0.5rem;
    }

    #stc-wrapper .stc-controls-panel {
        max-height: 400px;
    }

    #stc-wrapper .stc-controls-content {
        padding: 0.5rem;
    }

    #stc-wrapper .stc-control-section {
        margin-bottom: 0.5rem;
    }

    #stc-wrapper .stc-control-section-title {
        font-size: 0.8rem;
    }

    #stc-wrapper .stc-logo-upload-container {
        padding: 0.75rem 0.5rem;
    }

    #stc-wrapper .stc-logo-upload-text {
        font-size: 0.75rem;
    }

    #stc-wrapper .stc-logo-upload-subtext {
        font-size: 0.65rem;
    }

    #stc-wrapper .stc-size-controls {
        flex-direction: column;
        gap: 0.5rem;
    }

    #stc-wrapper .stc-size-control {
        padding: 0.75rem;
    }

    #stc-wrapper .stc-preview-board-container {
        min-height: 280px;
        padding: 0.5rem;
        overflow: visible;
    }

    #stc-wrapper .stc-preview-specs {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.5rem;
        margin-top: 0.5rem;
    }

    #stc-wrapper .stc-preview-spec {
        padding: 0.5rem;
    }

    #stc-wrapper .stc-confirmation-actions {
        flex-direction: column;
        gap: 0.5rem;
    }

    #stc-wrapper .stc-confirmation-btn {
        padding: 0.625rem;
    }
}

/* Small Mobile - up to 375px */
@media (max-width: 375px) {
    #stc-wrapper .stc-app-container {
        padding: 0.25rem;
        gap: 0.25rem;
    }

    #stc-wrapper .stc-controls-panel {
        max-height: 380px;
    }

    #stc-wrapper .stc-controls-content {
        padding: 0.25rem;
    }

    #stc-wrapper .stc-preview-board-container {
        min-height: 250px;
        padding: 0.25rem;
        overflow: visible;
    }

    #stc-wrapper .stc-preview-specs {
        grid-template-columns: 1fr;
        gap: 0.25rem;
    }

    #stc-wrapper .stc-control-section-title {
        font-size: 0.75rem;
    }

    #stc-wrapper .stc-logo-upload-container {
        padding: 0.5rem 0.25rem;
    }
}

/* Touch device optimizations */
@media (hover: none) and (pointer: coarse) {
    #stc-wrapper .stc-preview-action-btn,
    #stc-wrapper .stc-confirmation-btn {
        min-height: 44px;
        touch-action: manipulation;
    }

    #stc-wrapper .stc-number-input-btn {
        min-width: 44px;
        min-height: 44px;
    }

    #stc-wrapper .stc-slider {
        height: 8px;
    }

    #stc-wrapper .stc-slider::-webkit-slider-thumb {
        width: 24px;
        height: 24px;
    }

    #stc-wrapper .stc-controls-content {
        -webkit-overflow-scrolling: touch;
        overscroll-behavior: contain;
    }

    #stc-wrapper .stc-control-section {
        margin-bottom: 1rem;
    }
}

/* Text Effect Controls */
#stc-wrapper .stc-text-effect-group {
    grid-column: span 2;
}

#stc-wrapper .stc-effect-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}

#stc-wrapper .stc-toggle-switch.small {
    width: 36px;
    height: 18px;
}

#stc-wrapper .stc-toggle-switch.small .stc-toggle-slider:before {
    height: 14px;
    width: 14px;
    left: 2px;
    bottom: 2px;
}

#stc-wrapper .stc-toggle-switch.small input:checked+.stc-toggle-slider:before {
    transform: translateX(18px);
}

#stc-wrapper .stc-stroke-controls {
    margin-top: 0.5rem;
}

#stc-wrapper .stc-inline-controls {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

#stc-wrapper .stc-color-picker.small {
    width: 32px;
    height: 28px;
    border-radius: 4px;
}

#stc-wrapper .stc-range-slider {
    flex: 1;
    height: 4px;
    border-radius: 2px;
    background: #e2e8f0;
    outline: none;
    -webkit-appearance: none;
    appearance: none;
}

#stc-wrapper .stc-range-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--stc-primary-color);
    cursor: pointer;
}

#stc-wrapper .stc-range-slider::-moz-range-thumb {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--stc-primary-color);
    cursor: pointer;
}

#stc-wrapper .stc-range-value {
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--stc-primary-color);
    min-width: 30px;
    text-align: right;
}

/* Upload Tab - Custom Card Style Inputs */
#stc-wrapper .stc-upload-color-controls {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    margin-top: 16px;
    margin-bottom: 24px;
}

#stc-wrapper .stc-color-card {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    /* Rounded card */
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
    /* Slight shadow */
    transition: all 0.2s ease;
    cursor: pointer;
    /* Suggest interaction */
}

#stc-wrapper .stc-color-card:hover {
    border-color: #cbd5e1;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

#stc-wrapper .stc-color-card-label {
    font-size: 1rem;
    font-weight: 700;
    color: #475569;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin: 0;
    user-select: none;
}

#stc-wrapper .stc-color-wrapper {
    position: relative;
    width: 32px;
    height: 32px;
    border-radius: 6px;
    overflow: hidden;
    border: 1px solid #e2e8f0;
}

#stc-wrapper .stc-color-card-input {
    width: 150%;
    height: 150%;
    padding: 0;
    border: none;
    background: none;
    cursor: pointer;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

#stc-wrapper .stc-color-card-input::-webkit-color-swatch-wrapper {
    padding: 0;
}

#stc-wrapper .stc-color-card-input::-webkit-color-swatch {
    border: none;
    border-radius: 0;
    /* Wrapper handles radius */
}

.stc-zoom-controls {
    display: inline-flex;
    gap: 8px;
    margin-left: 12px;
}

.stc-zoom-btn {
    background: #f1f5f9;
    padding: 6px 10px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 12px;
    font-weight: 500;
    transition: all 0.2s ease;
}

.stc-zoom-btn:hover {
    background: #e2e8f0;
}

  .tc-color-picker-simple {
    padding: 0px;
    margin: 0px;
    border: navajowhite;
    background: white;
    height: 35px;
  }
  /* Hidden class for conditional elements */
  #stc-wrapper .stc-hidden {
    display: none !important;
  }
  @media (max-width: 767px) {
    #stc-wrapper .stc-modal-overlay {
      padding-bottom:5vh;
      background:#f5f5f5; 
    }
    #stc-wrapper .stc-modal-container {
    box-shadow:none;
    height: 95vh;
    }
}

        /* Launcher Wrapper */
        .stc-launcher-wrapper {
            display: flex;
            align-items: center;
            gap: 16px;
            margin-bottom: 20px;
            flex-wrap: wrap;
            position: relative;
            z-index: 100;
        }

        /* Position Variants */
        .stc-launcher-wrapper.stc-pos-left {
            flex-direction: row-reverse;
            justify-content: flex-end;
        }
        
        .stc-launcher-wrapper.stc-pos-top {
            flex-direction: column-reverse;
            align-items: flex-start;
        }
        
        .stc-launcher-wrapper.stc-pos-bottom {
            flex-direction: column;
        }

        /* Result Preview Style */
        .stc-result-preview {
            display: flex;
            align-items: center;
            gap: 12px;
            background: #ffffff;
            border: 1px solid #e2e8f0;
            padding: 8px 16px 8px 10px;
            border-radius: 12px;
            box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
            animation: stc-fade-in 0.5s cubic-bezier(0.4, 0, 0.2, 1);
            transition: all 0.3s ease;
            cursor: pointer;
            border-left: 4px solid #10b981;
        }

        .stc-result-preview:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
        }

        /* Upload Color Controls */
        .stc-upload-color-controls {
            display: flex;
            gap: 12px;
            margin: 16px 0;
            flex-wrap: wrap;
        }

        .stc-color-control-group {
            display: flex;
            flex-direction: column;
            gap: 4px;
        }

        .stc-color-control-label {
            font-size: 12px;
            font-weight: 600;
            color: #64748b;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            margin-bottom: 0;
        }

        .stc-color-picker {
            height: 36px;
            width: 48px;
            padding: 0;
            border: 1px solid #e2e8f0;
            border-radius: 4px;
            overflow: hidden;
            cursor: pointer;
            background: #ffffff;
        }

        .stc-color-picker:hover {
            border-color: #3b82f6;
            box-shadow: 0 0 0 2px rgba(59, 130, 246, 0.1);
        }

        .stc-result-image-container {
            width: 42px;
            height: 42px;
            border-radius: 8px;
            overflow: hidden;
            background-color: #f8fafc;
            border: 1px solid #f1f5f9;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .stc-result-image-container img {
            width: 100%;
            height: 100%;
            object-fit: contain;
        }

        .stc-result-info {
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .stc-result-label {
            font-size: 14px;
            font-weight: 700;
            color: #1e293b;
            line-height: 1.2;
        }

  #stc-upload-spinner {
    display: none;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px;
    background: rgba(255,255,255,0.9);
    border-radius: 8px;
    margin-bottom: 12px;
    font-weight: 500;
}
  .tc-color-picker-simple {
    padding: 0px;
    margin: 0px;
    border: navajowhite;
    background: white;
    height: 35px;
  }
  /* Hidden class for conditional elements */
  #stc-wrapper .stc-hidden {
    display: none !important;
  }
  @media (max-width: 767px) {
    #stc-wrapper .stc-modal-overlay {
      padding-bottom:5vh;
      background:#f5f5f5; 
    }
    #stc-wrapper .stc-modal-container {
    box-shadow:none;
    height: 95vh;
    }
}




      /* Launcher Wrapper */
        .stc-launcher-wrapper {
            display: flex;
            align-items: center;
            gap: 16px;
            margin-bottom: 20px;
            flex-wrap: wrap;
            position: relative;
            z-index: 100;
        }

        /* Position Variants */
        .stc-launcher-wrapper.stc-pos-left {
            flex-direction: row-reverse;
            justify-content: flex-end;
        }
        
        .stc-launcher-wrapper.stc-pos-top {
            flex-direction: column-reverse;
            align-items: flex-start;
        }
        
        .stc-launcher-wrapper.stc-pos-bottom {
            flex-direction: column;
        }

        /* Result Preview Style */
        .stc-result-preview {
            display: flex;
            align-items: center;
            gap: 12px;
            background: #ffffff;
            border: 1px solid #e2e8f0;
            padding: 8px 16px 8px 10px;
            border-radius: 12px;
            box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
            animation: stc-fade-in 0.5s cubic-bezier(0.4, 0, 0.2, 1);
            transition: all 0.3s ease;
            cursor: pointer;
            border-left: 4px solid #10b981;
        }

        .stc-result-preview:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
        }

        /* Upload Color Controls */
        .stc-upload-color-controls {
            display: flex;
            gap: 12px;
            margin: 16px 0;
            flex-wrap: wrap;
        }

        .stc-color-control-group {
            display: flex;
            flex-direction: column;
            gap: 4px;
        }

        .stc-color-control-label {
            font-size: 12px;
            font-weight: 600;
            color: #64748b;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            margin-bottom: 0;
        }

        .stc-color-picker {
            height: 36px;
            width: 48px;
            padding: 0;
            border: 1px solid #e2e8f0;
            border-radius: 4px;
            overflow: hidden;
            cursor: pointer;
            background: #ffffff;
        }

        .stc-color-picker:hover {
            border-color: #3b82f6;
            box-shadow: 0 0 0 2px rgba(59, 130, 246, 0.1);
        }

        .stc-result-image-container {
            width: 42px;
            height: 42px;
            border-radius: 8px;
            overflow: hidden;
            background-color: #f8fafc;
            border: 1px solid #f1f5f9;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .stc-result-image-container img {
            width: 100%;
            height: 100%;
            object-fit: contain;
        }

        .stc-result-info {
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .stc-result-label {
            font-size: 14px;
            font-weight: 700;
            color: #1e293b;
            line-height: 1.2;
        }

        .stc-result-edit {
            font-size: 11px;
            color: #64748b;
            font-weight: 500;
            margin-top: 2px;
            display: flex;
            align-items: center;
            gap: 4px;
        }
        
        @keyframes stc-fade-in {
            from { opacity: 0; transform: translateY(10px); }
            to { opacity: 1; transform: translateY(0); }
        }

        #stc-logo-upload-container {
                display: flex;
    flex-direction: column;
}
        }
        
  /* Icons & Shapes Section - Desktop Optimized */
  .custom-ui-icons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(48px, 1fr));
    gap: 8px;
    margin-bottom: 20px;
  }
  
  .icon-btn {
    width: 100%;
    aspect-ratio: 1;
    height: auto;
    background-color: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    cursor: pointer;
    color: #64748b;
    box-shadow: 0 1px 2px rgba(0,0,0,0.05);
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  }
  
  .icon-btn:hover {
    background-color: #ffffff;
    border-color: #E6B54A;
    color: #E6B54A;
    transform: translateY(-2px);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  }
  
  .icon-btn.active {
    border-color: #E6B54A;
    background-color: #FFFBEB;
    color: #E6B54A;
    box-shadow: 0 0 0 1px #E6B54A, 0 1px 2px rgba(0,0,0,0.05);
  }
  
  .icon-clear-btn {
    width: 100%;
    padding: 12px;
    background-color: #f5f5f5;
    border: none;
    border-radius: 8px;
    color: #666;
    cursor: pointer;
    margin-top: 12px;
    transition: all 0.2s ease;
    font-size: 1.2rem;
    font-weight: 500;
  }
  
  .icon-clear-btn:hover {
    background-color: #ef4444;
    color: white;
  }

  #stc-canvas-container {
    overflow: auto;
    max-width: 100%;
    max-height: 100%;
    position: relative;
    transition: transform 0.2s ease-out;
  }

  #stc-canvas-container {
    transform-origin: center center;
  }

  .stc-icon-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 12px !important;
    padding-top: 16px !important;
  }

  .stc-icon-color-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    min-width: 70px;
  }

  .stc-icon-color-label {
    font-size: 0.7rem;
    font-weight: 700;
    color: #64748b;
    text-transform: uppercase;
  }

  .stc-icon-actions .icon-clear-btn {
    margin-top: 0;
    flex: 1;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
  }

  .stc-icon-actions .stc-color-picker {
    width: 48px;
    height: 36px;
    border-radius: 6px;
  }
  
  .custom-ui-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
    gap: 10px;
    padding: 0 0.5rem;
    border-bottom: 1px solid #f1f5f9;
    padding-bottom: 16px;
  }

  .stc-header-bg-picker {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 4px 8px;
    border-radius: 6px;
  }

  .stc-header-bg-label {
    font-size: 0.75rem;
    font-weight: 700;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.3px;
  }

  .stc-color-picker-simple {
    width: 60px;
    height: 32px;
    padding: 0;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    background: none;
  }

  .custom-ui-icon-box {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .custom-ui-title {
    font-size: 1.2rem;
    font-weight: 700;
    margin: 0;
    color: #1a1a1a;
    letter-spacing: -0.3px;
  }

  /* Labels match main UI */
  .custom-ui-label {
    font-size: 1rem;
    font-weight: 600;
    color: #334155;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.5rem;
  }

  /* Group styling matches control sections */
  .custom-ui-group {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    padding: 1rem !important;
    background: white;
    transition: all 0.2s ease;
    margin-top: 1rem !important;
    border-radius: 6px;
  }
  
  /* Text Drag Instruction */
  .stc-drag-instruction {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 8px;
    padding: 8px 12px !important;
    background: linear-gradient(135deg, #FFFBEB 0%, #FEF3C7 100%);
    border-radius: 8px;
    font-size: 1rem;
    color: #64748b;
    line-height: normal;
  }
  
  .stc-drag-instruction i {
    color: #F59E0B;
    font-size: 14px;
  }

  .stc-reset-position-btn {
    margin-left: auto;
    padding: 4px 12px;
    background: transparent;
    border: 1px solid #F59E0B;
    border-radius: 6px;
    color: #F59E0B;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 4px;
  }
  
  .stc-reset-position-btn:hover {
    background: #F59E0B;
    color: #ffffff;
    transform: translateY(-1px);
  }
  
  .stc-typography-row {
    display: flex;
    gap: 12px;
    margin-bottom: 20px;
  }
  
  .stc-typography-row > div {
    flex: 1;
    margin: 0 !important;
  }

  .stc-typography-row .stc-section-label {
    font-size: 1.2rem;
    font-weight: 700;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    margin-bottom: 8px;
  }
  
  .stc-font-section {
    padding: 12px;
  }
  
  .stc-fontsize-section {
    padding: 12px;
    min-width: 140px;
  }
  
  .stc-fontsize-section .stc-number-input-container {
    height: 36px;
  }
  
  .stc-fontsize-section .stc-number-input-btn {
    width: 36px;
    height: 100%;
  }
  
  .stc-font-section .stc-text-control-input {
    height: 36px;
  }

  /* Responsive adjustments for smaller screens */
  @media (max-width: 767px) {
    .custom-ui-icons-grid {
      gap: 6px;
      grid-template-columns: repeat(auto-fill, minmax(44px, 1fr));
    }
    
    .icon-btn {
      font-size: 18px;
    }
    
    .custom-ui-title {
      font-size: 1rem;
    }
    
    .custom-ui-label {
      font-size: 0.75rem;
    }
    
    .stc-icon-actions {
      flex-direction: column;
    }
    
    .stc-icon-color-wrap {
      flex-direction: row;
      justify-content: space-between;
      width: 100%;
    }
    
    .stc-icon-actions .icon-clear-btn {
      width: 100%;
    }
  }

  /* Make preview board container take full width/height of its parent */
.stc-preview-board-container {
    width: 100% !important;
    height: 100% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    overflow: auto !important;
}

/* Ensure the board itself can expand beyond container if needed */
.stc-preview-board {
    display: inline-block !important;
    min-width: 100%;
    min-height: 100%;
    position: relative;
}

/* Canvas container should also fill and allow scrolling */
.stc-canvas-container {
    width: 100% !important;
    height: 100% !important;
    overflow: auto !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    background: #f8fafc;
    border-radius: 12px;
}

#stc-sticker-canvas {
    display: block;
    margin: 0 auto;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    /* Do NOT set width/height here – it's controlled by JS */
}


        .stc-result-edit {
            font-size: 11px;
            color: #64748b;
            font-weight: 500;
            margin-top: 2px;
            display: flex;
            align-items: center;
            gap: 4px;
        }
              
.upload-box {
    padding: 1rem 2rem;
    background: #f4f4f4;
    color: #000;
    border: none;
    border-radius: 80px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--stc-transition);
    display: flex;
    justify-content: center;
    gap: .85rem;
}
.upload-box:hover {
  border-color: #000;
}
.upload-box__icon {
  width: 40px;
}
.upload-preview {
      position: relative;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.upload-preview__img {
  width: 100%;
  max-width: 145px;
  border-radius: 10px;
  object-fit: cover;
  margin-bottom: 10px;
}
.reupload-btn {
  display: inline-block;
  padding: 8px 14px;
  background: #000;
  color: #fff;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-size: 13px;
}
.reupload-btn:hover {
  background: #333;
}

.hidden {
  display: none;
}

/* Icons & Shapes Section - Desktop Optimized */
  .custom-ui-icons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(48px, 1fr));
    gap: 8px;
    margin-bottom: 20px;
  }
  
  .icon-btn {
    width: 100%;
    aspect-ratio: 1;
    height: auto;
    background-color: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    cursor: pointer;
    color: #64748b;
    box-shadow: 0 1px 2px rgba(0,0,0,0.05);
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  }
  
  .icon-btn:hover {
    background-color: #ffffff;
    border-color: #E6B54A;
    color: #E6B54A;
    transform: translateY(-2px);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  }
  
  .icon-btn.active {
    border-color: #E6B54A;
    background-color: #FFFBEB;
    color: #E6B54A;
    box-shadow: 0 0 0 1px #E6B54A, 0 1px 2px rgba(0,0,0,0.05);
  }
  
  .icon-clear-btn {
    width: 100%;
    padding: 12px;
    background-color: #f5f5f5;
    border: none;
    border-radius: 8px;
    color: #666;
    cursor: pointer;
    margin-top: 12px;
    transition: all 0.2s ease;
    font-size: 1.2rem;
    font-weight: 500;
  }
  
  .icon-clear-btn:hover {
    background-color: #ef4444;
    color: white;
  }

  #stc-canvas-container {
    overflow: auto;
    max-width: 100%;
    max-height: 100%;
    position: relative;
    transition: transform 0.2s ease-out;
  }

  #stc-canvas-container {
    transform-origin: center center;
  }

  .stc-icon-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 12px !important;
    padding-top: 16px !important;
  }

  .stc-icon-color-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    min-width: 70px;
  }

  .stc-icon-color-label {
    font-size: 0.7rem;
    font-weight: 700;
    color: #64748b;
    text-transform: uppercase;
  }

  .stc-icon-actions .icon-clear-btn {
    margin-top: 0;
    flex: 1;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
  }

  .stc-icon-actions .stc-color-picker {
    width: 48px;
    height: 36px;
    border-radius: 6px;
  }
  
  .custom-ui-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
    gap: 10px;
    padding: 0 0.5rem;
    border-bottom: 1px solid #f1f5f9;
    padding-bottom: 16px;
  }

  .stc-header-bg-picker {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 4px 8px;
    border-radius: 6px;
  }

  .stc-header-bg-label {
    font-size: 0.75rem;
    font-weight: 700;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.3px;
  }

  .stc-color-picker-simple {
    width: 60px;
    height: 32px;
    padding: 0;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    background: none;
  }

  .custom-ui-icon-box {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .custom-ui-title {
    font-size: 1.2rem;
    font-weight: 700;
    margin: 0;
    color: #1a1a1a;
    letter-spacing: -0.3px;
  }

  /* Labels match main UI */
  .custom-ui-label {
    font-size: 1rem;
    font-weight: 600;
    color: #334155;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.5rem;
  }

  /* Group styling matches control sections */
  .custom-ui-group {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    padding: 1rem !important;
    background: white;
    transition: all 0.2s ease;
    margin-top: 1rem !important;
    border-radius: 6px;
  }
  
  /* Text Drag Instruction */
  .stc-drag-instruction {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 8px;
    padding: 8px 12px !important;
    background: linear-gradient(135deg, #FFFBEB 0%, #FEF3C7 100%);
    border-radius: 8px;
    font-size: 1rem;
    color: #64748b;
    line-height: normal;
  }
  
  .stc-drag-instruction i {
    color: #F59E0B;
    font-size: 14px;
  }

  .stc-reset-position-btn {
    margin-left: auto;
    padding: 4px 12px;
    background: transparent;
    border: 1px solid #F59E0B;
    border-radius: 6px;
    color: #F59E0B;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 4px;
  }
  
  .stc-reset-position-btn:hover {
    background: #F59E0B;
    color: #ffffff;
    transform: translateY(-1px);
  }
  
  .stc-typography-row {
    display: flex;
    gap: 12px;
    margin-bottom: 20px;
  }
  
  .stc-typography-row > div {
    flex: 1;
    margin: 0 !important;
  }

  .stc-typography-row .stc-section-label {
    font-size: 1.2rem;
    font-weight: 700;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    margin-bottom: 8px;
  }
  
  .stc-font-section {
    padding: 12px;
  }
  
  .stc-fontsize-section {
    padding: 12px;
    min-width: 140px;
  }
  
  .stc-fontsize-section .stc-number-input-container {
    height: 36px;
  }
  
  .stc-fontsize-section .stc-number-input-btn {
    width: 36px;
    height: 100%;
  }
  
  .stc-font-section .stc-text-control-input {
    height: 36px;
  }

  /* Responsive adjustments for smaller screens */
  @media (max-width: 767px) {
    .custom-ui-icons-grid {
      gap: 6px;
      grid-template-columns: repeat(auto-fill, minmax(44px, 1fr));
    }
    
    .icon-btn {
      font-size: 18px;
    }
    
    .custom-ui-title {
      font-size: 1rem;
    }
    
    .custom-ui-label {
      font-size: 0.75rem;
    }
    
    .stc-icon-actions {
      flex-direction: column;
    }
    
    .stc-icon-color-wrap {
      flex-direction: row;
      justify-content: space-between;
      width: 100%;
    }
    
    .stc-icon-actions .icon-clear-btn {
      width: 100%;
    }
  }

  /* Make preview board container take full width/height of its parent */
.stc-preview-board-container {
    width: 100% !important;
    height: 100% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    overflow: auto !important;
}

/* Ensure the board itself can expand beyond container if needed */
.stc-preview-board {
    display: inline-block !important;
    min-width: 100%;
    min-height: 100%;
    position: relative;
}

/* Canvas container should also fill and allow scrolling */
.stc-canvas-container {
    width: 100% !important;
    height: 100% !important;
    overflow: auto !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    background: #f8fafc;
    border-radius: 12px;
}

#stc-sticker-canvas {
    display: block;
    margin: 0 auto;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    /* Do NOT set width/height here – it's controlled by JS */
}

        @keyframes stc-fade-in {
            from { opacity: 0; transform: translateY(10px); }
            to { opacity: 1; transform: translateY(0); }
        }

        #stc-logo-upload-container {
                display: flex;
    flex-direction: column;
}
        }
    
