#cookie-designer-container {
    max-width: 960px;
    margin: 30px auto;
    padding: 20px;
    border-radius: 12px;
    background: #fffdf8;
    border: 1px solid #f1e0c5;
    box-shadow: 0 4px 18px rgba(0,0,0,0.05);
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.cookie-title {
    text-align: center;
    margin-bottom: 15px;
}

.cookie-wizard-header {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.wizard-step-indicator {
    flex: 1;
    min-width: 100px;
    text-align: center;
    padding: 10px;
    border-radius: 999px;
    background: #f3e3c7;
    color: #8b4a14;
    font-weight: 600;
    font-size: 14px;
}

.wizard-step-indicator.active {
    background: #d35400;
    color: #fff;
}

.wizard-step {
    display: none;
}

.wizard-step.active {
    display: block;
}

.helper-text {
    font-size: 13px;
    color: #666;
    margin-top: 8px;
}

/* Dropzone */
.cookie-dropzone {
    border: 2px dashed #d7b98b;
    border-radius: 12px;
    padding: 30px 20px;
    background: #fff8ec;
    cursor: pointer;
}

.cookie-dropzone .dz-message {
    margin: 0;
}

.cookie-dropzone-inner {
    text-align: center;
}

.dz-main-text {
    font-weight: 600;
    margin-bottom: 5px;
    color: #8b4a14;
}

.dz-sub-text {
    font-size: 13px;
    color: #7a6a55;
}

#cookie-editor {
    margin-top: 15px;
}

#crop-area img {
    max-width: 100%;
    width: 100%;
    max-height: 420px;
    border-radius: 8px;
    border: 1px solid #ddd;
    background: #fff;
}

/* Controls */
.crop-toolbar {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 15px;
}

.btn-primary,
.btn-secondary {
    padding: 8px 14px;
    border-radius: 999px;
    border: none;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
}

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

.btn-primary:hover {
    background: #e67e22;
}

.btn-secondary {
    background: #f7eee1;
    color: #8b4a14;
}

.btn-secondary:hover {
    background: #f0e0c7;
}

.wizard-nav {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    margin-top: 20px;
    flex-wrap: wrap;
}

/* Cookie preview */
#cookie-preview {
    position: relative;
    width: 340px;
    height: 340px;
    margin: 10px auto 20px auto;
}

#cookie-base-img {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0.9;
    z-index: 1;
}

#cookie-canvas {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    border-radius: 50%;
    overflow: hidden;
}

.cookie-border-controls {
    text-align: center;
    margin-bottom: 15px;
}

/* Form */
.cookie-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-width: 420px;
    margin-top: 10px;
}

#cookie-designer-container input[type="text"],
#cookie-designer-container input[type="email"] {
    padding: 8px 10px;
    border-radius: 6px;
    border: 1px solid #d9c9a7;
    font-size: 14px;
}

#cookie-message {
    margin-top: 10px;
    font-weight: 600;
    min-height: 20px;
}

/* Mobile responsive */
@media (max-width: 768px) {
    #cookie-designer-container {
        margin: 15px;
        padding: 15px;
    }

    .cookie-wizard-header {
        flex-direction: column;
    }

    #cookie-preview {
        width: 260px;
        height: 260px;
    }
}
