
    * {
        font-family: 'Inter', sans-serif;
    }


    /* Main Card */
    .setup-card {
        background: white;
        border-radius: 2rem;
        box-shadow: 0 25px 45px -12px rgba(0,0,0,0.2);
        overflow: hidden;
        border: 1px solid rgba(255,215,180,0.5);
    }

    .setup-header {
        background: linear-gradient(135deg, #f9e0c7 0%, #ffe6d5 100%);
        padding: 2rem 2rem 1.8rem;
        text-align: center;
        border-bottom: 2px solid #ffd6ae;
    }

    .setup-header h2 {
        font-weight: 800;
        color: #fff;
        letter-spacing: -0.3px;
    }

    .setup-header p {
        color: #fff;
        font-weight: 500;
    }

    /* Step Indicator */
    .step-indicator {
        display: flex;
        justify-content: center;
        gap: 30px;
        margin: 20px 0 30px;
        flex-wrap: wrap;
    }

    .step {
        display: flex;
        align-items: center;
        gap: 12px;
        padding: 8px 20px;
        background: white;
        border-radius: 50px;
        box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    }

    .step-number {
        width: 36px;
        height: 36px;
        background: #e9ecef;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: 700;
        color: #6c757d;
    }

    .step.active .step-number {
        background: linear-gradient(135deg, #b45f2b, #d68b45);
        color: white;
    }

    .step-label {
        font-weight: 600;
        color: #5a3a22;
    }

    .step.active .step-label {
        color: #b45f2b;
    }

    /* Body */
    .setup-body {
        padding: 2rem 2rem 2.5rem;
    }

    /* Form Sections */
    .form-section {
        background: #ffffff;
        border-radius: 1.5rem;
        padding: 1.5rem 1.8rem;
        margin-bottom: 2rem;
        box-shadow: 0 5px 15px rgba(0,0,0,0.02), 0 1px 3px rgba(0,0,0,0.05);
        border: 1px solid #ffefdf;
    }

    .form-section h3 {
        font-size: 1.35rem;
        font-weight: 700;
        color: #8b4e1c;
        margin-bottom: 1.5rem;
        border-left: 5px solid #f3b27a;
        padding-left: 1rem;
    }

    .form-section h3 i {
        color: #e28b3e;
        margin-right: 8px;
    }

    .form-label {
        font-weight: 600;
        color: #5a3a22;
        margin-bottom: 0.5rem;
    }

    .required:after {
        content: " *";
        color: #e25c1c;
        font-weight: bold;
    }

    .form-control, .form-select, .input-group-text {
        border-radius: 1rem;
        border: 1px solid #ffe0c4;
        background: #fffcf8;
        transition: 0.2s;
    }

    .form-control:focus, .form-select:focus {
        border-color: #e6a267;
        box-shadow: 0 0 0 3px rgba(230,162,103,0.2);
        background: white;
    }

    .form-row {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 1.25rem;
        margin-bottom: 1.25rem;
    }

    /* Image Preview - FIXED untuk semua preview */
    .image-preview-full,
    .image-preview {
        display: flex;
        flex-wrap: wrap;
        gap: 15px;
        margin-top: 15px;
        width: 100%;
        align-items: flex-start;
    }

    .image-preview-full > div,
    .image-preview-item {
        position: relative;
        width: 120px;
        height: 120px;
        border-radius: 12px;
        overflow: hidden;
        border: 2px solid #f3b27a;
        background: #ffffff;
        box-shadow: 0 4px 12px rgba(0,0,0,0.1);
        flex-shrink: 0;
        transition: transform 0.2s ease, box-shadow 0.2s ease;
    }

    .image-preview-full > div:hover,
    .image-preview-item:hover {
        transform: scale(1.05);
        box-shadow: 0 6px 16px rgba(0,0,0,0.15);
    }

    .image-preview-full > div img,
    .image-preview-item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

    /* Tombol hapus universal */
    .remove-btn,
    .remove-image {
        position: absolute;
        top: -8px;
        right: -8px;
        width: 26px;
        height: 26px;
        background: #ff4444;
        color: white;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        font-size: 16px;
        font-weight: bold;
        transition: all 0.2s ease;
        box-shadow: 0 2px 6px rgba(0,0,0,0.2);
        z-index: 10;
        border: none;
    }

    .remove-btn:hover,
    .remove-image:hover {
        background: #cc0000;
        transform: scale(1.1);
    }

    /* Gallery Preview */
    .gallery-preview {
        display: flex;
        flex-wrap: wrap;
        gap: 15px;
        margin-top: 15px;
        max-height: 300px;
        overflow-y: auto;
        padding: 15px;
        background: #fef9f0;
        border-radius: 16px;
        border: 1px dashed #f3b27a;
        width: 100%;
    }

    .gallery-preview .gallery-item {
        position: relative;
        width: 100px;
        height: 100px;
        border-radius: 10px;
        overflow: hidden;
        border: 2px solid #e3e6f0;
        flex-shrink: 0;
        background: #f5f5f5;
    }

    .gallery-preview .gallery-item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .gallery-preview .remove-gallery {
        position: absolute;
        top: 5px;
        right: 5px;
        width: 24px;
        height: 24px;
        background: rgba(255, 255, 255, 0.9);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        color: #e74a3b;
        font-size: 12px;
        transition: all 0.2s;
    }

    .gallery-preview .remove-gallery:hover {
        background: #e74a3b;
        color: white;
    }

    /* Scrollbar */
    .gallery-preview::-webkit-scrollbar {
        width: 8px;
    }

    .gallery-preview::-webkit-scrollbar-track {
        background: #f1f1f1;
        border-radius: 10px;
    }

    .gallery-preview::-webkit-scrollbar-thumb {
        background: #f3b27a;
        border-radius: 10px;
    }

    .gallery-preview::-webkit-scrollbar-thumb:hover {
        background: #e28b3e;
    }

    /* File Input */
    input[type="file"] {
        padding: 8px 12px;
        cursor: pointer;
    }

    input[type="file"]:hover {
        background-color: #fff5ea;
    }

    /* Love Story */
    .love-story-item {
        background: #fffaf5;
        border-radius: 1.2rem;
        margin-bottom: 1rem;
        padding: 1rem;
        border: 1px solid #ffe0c4;
        transition: all 0.2s ease;
    }

    .love-story-item:hover {
        border-color: #f3b27a;
        box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    }

    /* Buttons */
    .btn-next {
        background: linear-gradient(105deg, #d68b45 0%, #b45f2b 100%);
        border: none;
        padding: 12px 36px;
        border-radius: 60px;
        font-weight: 700;
        font-size: 1.1rem;
        color: white;
        box-shadow: 0 8px 18px rgba(180, 95, 43, 0.3);
        transition: all 0.2s;
    }

    .btn-next:hover {
        transform: translateY(-2px);
        background: linear-gradient(105deg, #c97a38, #a3511f);
        box-shadow: 0 12px 22px rgba(163, 81, 31, 0.3);
    }

    .btn-outline-primary {
        border-color: #e2a46b;
        color: #b45f2b;
        border-radius: 40px;
        padding: 8px 20px;
        transition: all 0.2s ease;
    }

    .btn-outline-primary:hover {
        background: #f6e2cf;
        border-color: #cd7f41;
        transform: translateY(-1px);
    }

    .btn-danger {
        background: #ff6b6b;
        border: none;
        border-radius: 40px;
        padding: 5px 15px;
        font-size: 0.85rem;
        transition: all 0.2s ease;
    }

    .btn-danger:hover {
        background: #ff4444;
        transform: translateY(-1px);
    }

    /* Alert */
    .alert-premium {
        background: #fff2e5;
        border-left: 5px solid #f3ac6b;
        border-radius: 1.2rem;
        padding: 1.2rem;
    }

    .alert-info {
        background: #d1ecf1;
        border: 1px solid #bee5eb;
        color: #0c5460;
        border-radius: 1rem;
        padding: 15px;
    }

    /* Toast */
    .toast-notification {
        position: fixed;
        bottom: 20px;
        right: 20px;
        z-index: 10001;
        animation: slideIn 0.3s ease;
    }

    @keyframes slideIn {
        from { transform: translateX(100%); opacity: 0; }
        to { transform: translateX(0); opacity: 1; }
    }

    /* Responsive */
    @media (max-width: 768px) {
        .setup-body { padding: 1.5rem; }
        .form-section { padding: 1.2rem; }
        .form-row { grid-template-columns: 1fr; gap: 1rem; }
        .step-indicator { gap: 10px; }
        .step { padding: 5px 12px; }
        .step-label { font-size: 12px; }
        .image-preview-full > div,
        .image-preview-item {
            width: 100px;
            height: 100px;
        }
    }

    @media (max-width: 576px) {
        .image-preview-full > div,
        .image-preview-item {
            width: 80px;
            height: 80px;
        }
        .remove-btn,
        .remove-image {
            width: 22px;
            height: 22px;
            font-size: 14px;
            top: -6px;
            right: -6px;
        }
        .form-section {
            padding: 1rem;
        }
    }
