
        body {
            font-family: 'Inter', sans-serif;
            background: linear-gradient(145deg, #fff0f5 0%, #ffd9e8 100%);
            min-height: 100vh;
            padding: 2rem 0;
        }
        .form-container {
            background: rgba(255, 255, 255, 0.97);
            backdrop-filter: blur(2px);
            border-radius: 2rem;
            padding: 2rem;
            box-shadow: 0 25px 45px -12px rgba(0, 0, 0, 0.25);
            max-width: 900px;
            margin: 0 auto;
        }
        .form-header {
            background: linear-gradient(135deg, #e6397c, #ff8cb0);
            padding: 1.5rem;
            border-radius: 1.5rem 1.5rem 0 0;
            margin: -2rem -2rem 2rem -2rem;
            color: white;
            text-align: center;
        }
        .form-header h2 {
            font-family: 'Playfair Display', serif;
            font-weight: 700;
        }
        .form-header p {
            opacity: 0.9;
            font-size: 0.9rem;
            margin-bottom: 0;
        }
        .product-card {
            background: #f8f9fa;
            border-radius: 1.5rem;
            padding: 1.5rem;
            margin-bottom: 2rem;
            border: 2px dashed #f0d0dd;
            transition: all 0.3s;
        }
        .product-card:hover {
            border-color: #e6397c;
            background: #fff5f8;
        }
        .form-label {
            font-weight: 600;
            color: #4a2e38;
        }
        .form-label .required {
            color: #e6397c;
            margin-left: 2px;
        }
        .form-label .optional {
            color: #6c757d;
            font-weight: 400;
            font-size: 0.8rem;
            margin-left: 4px;
        }
        .form-control, .form-select {
            border-radius: 1rem;
            padding: 0.75rem 1rem;
            border: 1.5px solid #f0d0dd;
            transition: all 0.3s;
        }
        .form-control:focus, .form-select:focus {
            border-color: #e6397c;
            box-shadow: 0 0 0 0.2rem rgba(230, 57, 124, 0.25);
        }
        .input-group-text {
            background: #fce4ec;
            border: 1.5px solid #f0d0dd;
            border-radius: 1rem 0 0 1rem;
            color: #e6397c;
        }
        .input-group .form-control {
            border-radius: 0 1rem 1rem 0;
        }
        .image-upload-wrapper {
            position: relative;
            display: inline-block;
            cursor: pointer;
        }
        .image-preview {
            width: 150px;
            height: 150px;
            border-radius: 1rem;
            object-fit: cover;
            border: 3px solid #ffb8d6;
            background: #fce4ec;
            transition: all 0.3s;
        }
        .image-preview:hover {
            transform: scale(1.02);
            border-color: #e6397c;
        }
        .upload-overlay {
            position: absolute;
            bottom: 5px;
            right: 5px;
            background: #e6397c;
            border-radius: 50%;
            width: 34px;
            height: 34px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 0.9rem;
            border: 2px solid white;
            transition: 0.3s;
        }
        .upload-overlay:hover {
            transform: scale(1.1);
        }
        .btn-pink {
            background: linear-gradient(95deg, #e6397c, #ff8cb0);
            border: none;
            color: white;
            font-weight: 600;
            border-radius: 2rem;
            padding: 12px 30px;
            transition: 0.3s;
        }
        .btn-pink:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 20px rgba(230, 57, 124, 0.3);
            color: white;
        }
        .btn-outline-pink {
            border: 2px solid #e6397c;
            color: #e6397c;
            background: transparent;
            border-radius: 2rem;
            font-weight: 600;
            transition: 0.3s;
            padding: 10px 25px;
        }
        .btn-outline-pink:hover {
            background: #e6397c;
            color: white;
        }
        .filename-display {
            font-size: 0.8rem;
            color: #6c757d;
            margin-top: 0.25rem;
            max-width: 150px;
            overflow: hidden;
            text-overflow: ellipsis;
            white-space: nowrap;
        }
        textarea.form-control {
            resize: vertical;
            min-height: 80px;
        }
        .divider {
            border: 0;
            height: 2px;
            background: linear-gradient(to right, transparent, #ffb8d6, transparent);
            margin: 2rem 0;
        }
        .price-help {
            font-size: 0.8rem;
            color: #6c757d;
            margin-top: 4px;
        }
        @media (max-width: 768px) {
            .form-container { padding: 1.5rem; }
            .form-header { margin: -1.5rem -1.5rem 1.5rem -1.5rem; }
            .image-preview { width: 120px; height: 120px; }
        }

